/* =============================================== */
/* STYLE.CSS - COMPLETE MARKED SECTIONS
/* =============================================== */

/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESET AND BASE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2e7d32;
    --dark-green: #1b5e20;
    --black: #111111;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --theme-color: #2e7d32;
    --main-container: 1200px;
    --container-gutters: 30px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--black);
    line-height: 1.6;
    background-color: var(--light-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESET AND BASE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.vs-header {
    position: relative;
    z-index: 41;
}

.header-top {
    background-color: var(--theme-color);
    padding: 11px 0;
}

.container {
    width: 100%;
    max-width: calc(var(--main-container) + var(--container-gutters));
    margin: 0 auto;
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    align-items: center;
    justify-content: space-between;
}

.col-md-auto {
    flex: 0 0 auto;
    width: auto;
    padding: 0 15px;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.text-md-start {
    text-align: left;
}

.d-none {
    display: none !important;
}

.d-md-block {
    display: block !important;
}

.d-md-inline-block {
    display: inline-block !important;
}

.header-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.header-links li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
}

.header-links i {
    font-size: 14px;
    opacity: 0.9;
}

.header-links a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.header-links a:hover {
    opacity: 0.8;
}

.social-style2 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-title {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.social-style2 a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.social-style2 a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.header-middle {
    background-color: transparent;
    position: relative;
}

.menu-area {
    position: relative;
    margin-bottom: -20px;
}

.menu-area:before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    right: -20px;
    bottom: 0;
    background-color: #fff;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px));
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.align-items-center {
    align-items: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo img {
    max-height: 55px;
    width: auto;
    display: block;
}

.text-end {
    text-align: right !important;
}

.text-xl-center {
    text-align: center !important;
}

@media (min-width: 1200px) {
    .text-xl-center {
        text-align: center !important;
    }
}

.main-menu {
    display: none;
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }
    .main-menu {
        display: block;
    }
}

.main-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-menu > ul > li {
    position: relative;
}

.main-menu > ul > li > a {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    padding: 30px 0;
    display: block;
    position: relative;
    transition: color 0.3s;
}

.main-menu > ul > li > a:hover {
    color: var(--primary-green);
}

.main-menu > ul > li:first-child > a {
    color: var(--primary-green);
    position: relative;
}

.main-menu > ul > li:first-child > a::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-green);
}

.menu-item-has-children {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
    border-radius: 5px;
    padding: 10px 0;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sub-menu li:last-child {
    border-bottom: none;
}

.sub-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.sub-menu a:hover {
    background-color: rgba(46, 125, 50, 0.05);
    color: var(--primary-green);
    padding-left: 25px;
}

.vs-menu-toggle {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
}

.header-btn {
    padding-left: 15px;
}

@media (min-width: 1200px) {
    .d-xl-block {
        display: block !important;
    }
}

.vs-btn {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.vs-btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.vs-btn:hover i {
    transform: translateX(5px);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SLIDER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.simple-slider-section {
    position: relative;
    margin-top: -20px;
    z-index: 1;
}

.simple-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: var(--black);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide.active {
    opacity: 1;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 15%;
    padding-right: 15%;
    color: var(--white);
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
}

.slider-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-line {
    height: 12px;
    width: auto;
}

.slider-title {
    font-family: 'Raleway', sans-serif;
    font-size: 59px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

.slider-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slider-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    color: var(--primary-green);
    padding: 12px 30px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.slider-button:hover {
    background-color: #16171A;
    color: var(--white);
    transform: translateY(-2px);
}

.slider-button:hover i {
    transform: translateX(5px);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.slider-dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

.slider-arrow {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-arrow:hover {
    background-color: var(--primary-green);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SLIDER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.about-us-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-us-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
}

.about-subtitle {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black);
}

.about-text {
    color: var(--gray-medium);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.about-features {
    list-style: none;
    margin-bottom: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--gray-dark);
}

.about-features i {
    color: var(--primary-green);
    margin-right: 12px;
    font-size: 14px;
    width: 20px;
}

.about-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 15px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.about-button:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCTS SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.products-single-column-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.products-single-column-section .sec-subtitle2 {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.products-single-column-section .sec-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--black);
}

.products-single-container {
    max-width: 1000px;
    margin: 0 auto;
}

.product-main-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.product-card-content {
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 40px;
}

.product-image-container {
    flex: 0 0 350px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    border: 8px solid #f5f5f5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-text-content {
    flex: 1;
}

.product-main-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.product-main-description {
    color: var(--gray-medium);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-main-features {
    list-style: none;
    margin-bottom: 25px;
}

.product-main-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--gray-dark);
}

.product-main-features i {
    color: var(--primary-green);
    margin-right: 10px;
}

.product-main-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-main-price {
    display: flex;
    flex-direction: column;
}

.product-price-current {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
}

.product-price-label {
    font-size: 12px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-main-btn {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.product-thumbnails-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.product-thumb-item {
    flex: 1;
    max-width: 250px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.product-thumb-item.active,
.product-thumb-item:hover {
    background: #fff;
    border-color: var(--primary-green);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.1);
}

.product-thumb-image {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-thumb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCTS SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.gallery-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.gallery-section .sec-subtitle2 {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.gallery-section .sec-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 18px;
    text-decoration: none;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTACT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.contact-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact-section .sec-subtitle2 {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.contact-section .sec-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--black);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--black);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
}

.submit-btn {
    width: 100%;
    padding: 17px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTACT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.footer-section {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-widget h3 {
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-widget p, .footer-widget a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
@media (max-width: 991px) {
    .main-menu { 
        display: block; 
        position: fixed; 
        top: 0; 
        left: 0; 
        right: 0; 
        bottom: 0; 
        background: var(--primary-green) !important;
        z-index: 1000; 
        padding: 80px 20px 20px; 
        transform: translateX(-100%); 
        transition: transform 0.3s ease;
    }
    .main-menu.active { transform: translateX(0); }
    .main-menu ul { flex-direction: column; gap: 0; }
    .main-menu > ul > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .main-menu > ul > li > a { color: white !important; padding: 15px 0; }
    .sub-menu { position: static; opacity: 1; visibility: visible; background: #1b5e20; display: none; margin-top: 10px; }
    .sub-menu.active { display: block; }
    .sub-menu a { color: rgba(255,255,255,0.9) !important; }
    .menu-close-btn { position: absolute; top: 20px; right: 20px; background: white; color: var(--primary-green); border: none; width: 40px; height: 40px; border-radius: 5px; font-size: 20px; cursor: pointer; }
    .about-us-container, .product-card-content, .contact-container { flex-direction: column; grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .simple-slider { height: 400px; }
    .slider-title { font-size: 32px; }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/


/* SINGLE BANNER CSS - STYLE.CSS MEIN ADD KAREIN */

.single-banner-section {
    width: 100%;
    position: relative;
}

.single-banner {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.banner-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, #0a3b1a 0%, #1e6b3a 50%, #0a3b1a 100%);
    z-index: 0;
}

.banner-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-heading {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #f5b042;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.main-heading {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.desc-text {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 32px;
    }
    .desc-text {
        font-size: 16px;
    }
}




/* =============================================== */
/* START - PRODUCT SPECIFICATIONS SECTION STYLES */
/* =============================================== */

.product-specs-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.specs-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

/* Left Column - Image */
.specs-image {
    flex: 1;
    min-width: 280px;
}

.specs-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.specs-image img:hover {
    transform: scale(1.02);
}

/* Right Column - Content */
.specs-content {
    flex: 1;
    min-width: 280px;
}

/* Small Description */
.product-description {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 5px solid #ff7b00;
    border-radius: 12px;
}

.product-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

/* Specifications Heading */
.specs-heading {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 12px;
}

.specs-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ff7b00;
    border-radius: 2px;
}

/* Specifications Table */
.specs-table-wrapper {
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.specs-table tbody tr {
    border-bottom: 1px solid #eef2f6;
    transition: background 0.2s ease;
}

.specs-table tbody tr:hover {
    background: #fef9f0;
}

.specs-table tbody tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 14px 20px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
}

.specs-table td:first-child {
    font-weight: 700;
    color: #1a1a2e;
    width: 40%;
    background-color: #fafbfc;
}

.specs-table td:last-child {
    color: #555;
    font-weight: 500;
}

/* =============================================== */
/* RESPONSIVE DESIGN (Mobile Friendly) */
/* =============================================== */

@media screen and (max-width: 992px) {
    .specs-container {
        gap: 40px;
    }
    
    .specs-table td {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .product-specs-section {
        padding: 50px 0;
    }
    
    .specs-container {
        flex-direction: column;
        gap: 35px;
    }
    
    .specs-image,
    .specs-content {
        flex: auto;
        width: 100%;
    }
    
    .specs-heading {
        font-size: 22px;
    }
    
    .specs-heading::after {
        width: 50px;
    }
    
    .product-description {
        padding: 15px;
    }
    
    .product-description p {
        font-size: 15px;
    }
    
    .specs-table td {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .specs-table td:first-child {
        width: 45%;
    }
}

@media screen and (max-width: 480px) {
    .product-specs-section {
        padding: 40px 0;
    }
    
    .specs-table td {
        display: block;
        width: 100% !important;
        padding: 10px 14px;
    }
    
    .specs-table td:first-child {
        background-color: #f0f2f5;
        border-bottom: none;
        padding-bottom: 5px;
    }
    
    .specs-table td:last-child {
        padding-top: 5px;
        border-bottom: 1px solid #eef2f6;
    }
    
    .specs-table tbody tr:last-child td:last-child {
        border-bottom: none;
    }
}

/* =============================================== */
/* END - PRODUCT SPECIFICATIONS SECTION STYLES */
/* =============================================== */



.header-logo img {
    max-height: 90px;  /* pehle 40-50px hoga */
    width: auto;
}