/* Global Styles */
:root {
    --primary-color: #2e7d32;
    --secondary-color: #ffc107;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --dark-green: #1b5e20;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

p {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    margin: 15px auto 0;
}

/* Header Styles */
/* .header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
} */

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}



.main-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav ul li {
    margin: 0 18px;
}

/* .main-nav ul li a {
    color: #1f1f1f;
    font-weight: 500;
    font-size: 0.96rem;
    letter-spacing: 0.02em;
    padding: 4px 0;
    position: relative;
} */

.main-nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.main-nav ul li a:hover:after,
.main-nav ul li a.active:after {
    width: 100%;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: right;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #43b54a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #43b54a;
    font-size: 0.9rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-info .phone {
    font-weight: 600;
    color: #2f8f3a;
    font-size: 0.98rem;
}

.contact-info .email {
    font-size: 0.82rem;
    color: #999;
}

/* Hero Carousel */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    min-height: 600px; /* Adjust height as needed */
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 180px 0 100px;
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.carousel-control:hover {
    background: var(--primary-color);
    color: white;
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Hero Content */

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}



.hero-content {
    flex: 1;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 600px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    margin-right: 50px;
}

.hero h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    position: relative;
    animation: float 3s ease-in-out infinite;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.secondary-slide {
    padding: 120px 0;
    background: #f9f9f9;
}

.slide-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.slide-text-panel {
    background: #555;
    border-radius: 12px;
    padding: 40px 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    max-width: 55%;
    color: #fff;
}

.slide-text-panel h1 {
    font-size: 2.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.slide-text-panel p {
    font-size: 1.1rem;
    color: #f3f3f3;
    margin-bottom: 25px;
    line-height: 1.6;
}

.slide-preview-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 35px;
    padding: 30px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slide-preview-card img {
    width: 300px;
    display: block;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Products Section */
.products {
    padding: 100px 0;
    background-color: var(--white);
}

/* Highlight Section Below Carousel */
.highlight {
    padding: 120px 0;
    background: linear-gradient(180deg, #fdf0c6 0%, #fbe09c 100%);
    color: #1b1d1f;
}

/* Product Range Section */
.product-range {
    padding: 80px 0;
    background: #f2f3ec;
    display: block !important;
    visibility: visible !important;
    line-height:32px;
}

.product-range-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    visibility: visible !important;
}

.product-column {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-column:hover {
    transform: translateY(-5px);
    
}

.product-column h3 {
    font-size: 1.3rem;
    color: #2f6c2f;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.product-column:hover h3 {
    color: #2e7d32;
}

.product-column ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.product-column li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 10px;
    color: #1b2f14;
    font-weight: 500;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.product-column li:hover {
    transform: translateX(8px);
    color: #2e7d32;
}

.product-column li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2f6c2f;
    transition: transform 0.3s ease, color 0.3s ease;
}

.product-column li:hover:before {
    transform: translateX(3px) scale(1.2);
    color: #2e7d32;
}

.product-link {
    color: #1b2f14;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.product-link:hover {
    color: #2e7d32;
    transform: translateX(5px);
    display: inline-block;
}

@media (max-width: 1200px) {
    .product-range-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .product-range-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .product-range-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.highlight-text h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.highlight-text p {
    color: #222;
    line-height: 1.8;
    margin-bottom: 15px;
}

.highlight-image {
    text-align: right;
}

.highlight-image img {
    max-width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.leading-packaging {
    padding: 120px 0;
    background: #fff;
}

.leading-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
}

.leading-image-photo {
    width: 100%;
    border-radius: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.leading-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #333;
}

.leading-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    padding: 20px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    margin: 0;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f6f0 0%, #f4e9d2 55%, #f7c77e 100%),
        url("images/solutions-bg.jpg") center/cover no-repeat;
}

.solutions h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.3rem;
    color: #4a3a34;
}

.solutions-layout {
    display: grid;
    grid-template-columns: minmax(360px, 1.2fr) minmax(360px, 0.8fr);
    gap: 40px;
    align-items: flex-start;
}

.solutions-intro {
    background: var(--white);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
    line-height: 1.7;
    border-left: 5px solid #237a24;
}

.solutions-intro h3 {
    font-size: 2.2rem;
    color: #237a24;
    margin-bottom: 25px;
}

.solutions-intro p {
    color: #464646;
    font-size: 1rem;
}

.solutions-cards {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 25px;
}

.solution-card {
    background: #fff3d2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    display: grid;
    grid-template-rows: auto 1fr;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.solution-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.solution-card-body {
    padding: 25px 25px 20px;
    background-color: transparent;
    text-align: left;
}

.solution-card-body h3 {
    margin: 0 0 12px;
    color: #1d5c34;
    font-size: 1.6rem;
}

.solution-card-body p {
    margin: 0;
    color: #4b3e33;
    line-height: 1.7;
    font-size: 0.98rem;
}

.solution-card img {
    object-fit: cover;
    height: 230px;
}

@media (max-width: 1100px) {
    .solutions-cards {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .solutions-cards {
        grid-template-columns: repeat(1, minmax(220px, 1fr));
    }
}

/* Customization Section */
.customization {
    padding: 120px 0;
    background-color: #0b7a31;
    color: #fff;
}

.customization .container {
    max-width: 1200px;
    margin-top:-73px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #fff;
    letter-spacing: 0.04em;
}

.section-divider {
    display: block;
    width: 100px;
    height: 3px;
    background: #fff;
    margin: 10px auto 0;
}

.customization-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 60px;
    align-items: center;
}

.customization-visual {
    display: flex;
    justify-content: center;
}

.customization-video-ring {
    width: 420px;
    height: 420px;
    background: #fbd14f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.customization-video-ring img {
    max-width: 90%;
    border-radius: 25px;
}

.customization-copy p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--dark-green);
}

/* We Are Experienced Section */
.we-are-experienced {
    padding: 80px 0 100px;
    background: #fff;
}
.we-are-experienced .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.we-are-experienced .exp-top-images {
    position: relative;
    min-height: 320px;
}
.we-are-experienced .exp-top-images img {
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.we-are-experienced .exp-left-img {
    width: 100%;
    height: auto;
    display: block;
}
.we-are-experienced .exp-right-img {
    position: absolute;
    left: 10%;
    bottom: -10px;
    width: 65%;
    transform: translateX(-5%);
    border: 6px solid #fff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.we-are-experienced .exp-content h2 {
    font-size: 2.2rem;
    color: #4b4b4b;
    margin-bottom: 20px;
}
.we-are-experienced .exp-bars {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.exp-bar-item .exp-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    color: #2f2f2f;
}
.exp-bar-track {
    height: 8px;
    background: #e9ecef;
    border-radius: 999px;
    position: relative;
    overflow: visible;
}
.exp-bar-fill {
    height: 100%;
    width: 0% !important;
    background: linear-gradient(90deg, #2e7d32, #2db34a);
    border-radius: 999px;
    position: relative;
    animation: progressBarFill 1.6s cubic-bezier(.2,.9,.2,1) forwards;
}

.exp-bar-fill::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(50%,-50%);
    right: 0;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    border: 3px solid #0b3b2a;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    transition: right 1.6s cubic-bezier(.2,.9,.2,1);
}
.exp-bar-item .exp-percent {
    font-weight: 600;
    color: #111;
}

/* When animated, set width to data-percent via inline style from JS */

@media (max-width: 900px) {
    .we-are-experienced .container {
        grid-template-columns: 1fr;
    }
    .we-are-experienced .exp-top-images {
        order: 2;
        margin-top: 30px;
    }
    .we-are-experienced .exp-right-img {
        position: absolute;
        left: 10%;
        bottom: -6px;
        width: 60%;
    }
}

/* Footer */
.footer {
    background-color: #f2f3ec;
    color: #1b2f14;
    padding: 60px 0 40px;
    border-top: 1px solid #cfcfcf;
}

.footer-top,
.footer-middle,
.footer-bottom {
    border-bottom: 1px solid rgba(27, 47, 20, 0.1);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-top > div {
    flex: 1;
    padding: 0 20px;
    border-left: 1px solid rgba(27, 47, 20, 0.2);
}

.footer-top > div:first-child {
    border-left: none;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.footer-middle > div {
    flex: 1;
    border-left: 1px solid rgba(27, 47, 20, 0.2);
    padding: 0 15px;
}

.footer-middle > div:first-child {
    border-left: none;
}

.footer-logo img {
    max-height: 60px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.8rem;
}

.footer-logo h3 span {
    color: var(--secondary-color);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #e0e0e0;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-section p {
    color: #e0e0e0;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.footer-section i {
    margin-right: 10px;
    color: var(--secondary-color);
    margin-top: 5px;
}

.social-links-footer {
    display: flex;
    margin-top: 20px;
}

.social-links-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links-footer a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    border-bottom: none;
    margin-bottom: 0;
}

.footer-phone span,
.footer-email span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1b2f14;
}

.footer-head-office h4 {
    color: #1f591e;
    margin-bottom: 10px;
}


.legal-links a {
    margin: 0 5px;
    color: #1b2f14;
}

.footer-credit a {
    color: #1b2f14;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .customization .container {
        flex-direction: column;
    }
    
    .customization-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .header .container {
        text-align: center;
    }
    
    .main-nav {
        margin: 20px 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 10px 0;
    }
    
    .contact-info {
        justify-content: center;
        text-align: center;
        margin-top: 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .product-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .footer-section:last-child {
        margin-bottom: 0;
    }
}

/* ABOUT US BANNER */
.about-banner {
    background: linear-gradient(90deg, rgba(223, 255, 200, 0.85) 0%, rgba(242, 251, 220, 0.85) 50%, rgba(223, 255, 200, 0.85) 100%), url('../images/banner-about.jpg') center/cover no-repeat;
    padding: 80px 0 60px;
    text-align: center;
    margin-top: 90px; /* space below fixed header */
    background-attachment: fixed;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 0;
    color: #2e7d32;
}

/* MAIN ABOUT SECTION */
.about-section {
    padding: 70px 0;
    position: relative;
    background-color: #ffffff;
    width: 100%;
}

.about-section::before {
    content: '';
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 70px;
    align-items: center;
    padding: 0 30px;
}

/* LEFT CONTENT */
.about-text {
    flex: 0 0 45%;
}

.about-text h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #1b5e20;
    width: 125%;
    margin-top:-240px;
}

.about-text p {
    margin-top: 18px;
    line-height: 1.8;
    font-size: 16px;
    color: #555;
    width:119%;
}

.about-intro-paragraph {
    width: 123%;
    max-width: 123%;
    display: block;
}

.about-text ul {
    margin-top: 20px;
    padding-left: 0px !important;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    list-style: disc;
    width:113%;
}

.about-text ul li {
    margin-bottom: 8px;
}

/* Bullet list with check icons */
.about-bullet-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.about-bullet-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

.about-bullet-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #2e7d32;
    font-size: 18px;
}

/* Bold list with green plus bullets */
.about-points-list {
    list-style: none;
    padding-left: 0;
}

.about-points-list li {
    font-weight: 700;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
    list-style: none;
}

.about-points-list li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%232e7d32'/%3E%3Cpath fill='%23ffffff' d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 2px;
}

/* RIGHT IMAGE */
.about-image {
    flex: 0 0 50%;
    text-align: center;
    padding-left: 0;
}

.about-image img {
    width: 700px;
    max-width: 900px;
    border-radius: 30px;
   
    object-fit: contain;
   
    max-height:1000px;
   
}

/* FOOTER SECTION BELOW ABOUT */
.about-footer {
    position: relative;
    padding: 80px 0;
    min-height: 320px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    z-index: 0;
    margin-top:-273px;
}

.about-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("../images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.about-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: -1;
}

.about-footer h2 {
    font-size: 26px;
    font-weight: 700;
}

.about-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

/* Contact Form Layout Styles */
.contact-green-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-form-section {
    flex: 0 0 45%;
}

.contact-content-section {
    flex: 0 0 50%;
}

/* Thermal Contact Form Styles */
.thermal-contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.thermal-contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.contact-content-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.thermal-contact-form input,
.thermal-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    transition: all 0.3s ease;
}

.thermal-contact-form input:focus,
.thermal-contact-form textarea:focus {
    outline: none;
    border-color: #2e7d32;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.thermal-contact-form .btn-primary {
    width: 50%;
    padding: 15px;
    background: #ffc107;
    color: #1b5e20;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left:23%;
}

.thermal-contact-form .btn-primary:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animation for sliding in from left */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animation for sliding in from right */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Specific animations for sustainability section */
.sustainability-content-animate {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 1s ease-out;
}

.sustainability-image-animate {
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s ease-out;
}

.sustainability-content-animate.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.sustainability-image-animate.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 50px;
    position: relative;
}

.faq-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ffc107;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #2e7d32;
}

.faq-question i {
    color: #2e7d32;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-green-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-form-section,
    .contact-content-section {
        flex: 1 1 100%;
    }
}

.about-doing-grid {
    margin-top: 40px;
    display: inline-flex;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    color: #fff;
}

.about-doing-item {
    background: rgba(0, 0, 0, 0.45);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
}

.about-doing-item::after {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    right: -15px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.about-doing-item:last-child::after {
    display: none;
}

.about-doing-icon {
    font-size: 32px;
    margin-bottom: 18px;
    color: #2e7d32;
}

.about-doing-item h3 {
    color: #56e063;
    font-size: 20px;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.about-doing-item p {
    font-size: 15px;
    color: #f4f4f4;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .about-doing-item::after {
        display: none;
    }
}

/* Animation: Left to Right */
@keyframes slideLeftToRight {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-left-to-right {
    opacity: 0;
    transform: translateX(-100px);
    will-change: opacity, transform;
}

.animate-left-to-right.in-view {
    opacity: 1;
    transform: translateX(0);
    animation: slideLeftToRight 0.8s ease-out forwards;
}

/* Animation: Right to Left */
@keyframes slideRightToLeft {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-right-to-left {
    opacity: 0;
    transform: translateX(100px);
    will-change: opacity, transform;
}

.animate-right-to-left.in-view {
    opacity: 1;
    transform: translateX(0);
    animation: slideRightToLeft 0.8s ease-out forwards;
}

/* Animation: Bottom to Top */

.animate-right-to-left {
    animation: slideRightToLeft 0.8s ease-out forwards;
}

/* Animation: Bottom to Top */
@keyframes slideBottomToTop {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-bottom-up {
    opacity: 0;
    transform: translateY(100px);
    will-change: opacity, transform;
}

.animate-bottom-up.in-view {
    opacity: 1;
    transform: translateY(0);
    animation: slideBottomToTop 0.8s ease-out forwards;
}

.exp-bar-track {
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}



@media (max-width: 768px) {
    .exp-top-images {
        flex-direction: column;
        gap: 20px;
    }
    .exp-left-img,
    .exp-right-img {
        max-width: 140px;
    }
    .exp-content h2 {
        font-size: 2.2rem;
    }
    .exp-bars {
        gap: 24px;
    }
}

/* SCROLL ANIMATIONS */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUpFromBottom {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ABOUT PAGE RESPONSIVE */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        text-align: left;
    }

    .about-image img {
        max-width: 700px;
    }
}

/* Progress Bar Animation */
@keyframes progressBarFill {
    from {
        width: 0%;
    }
    to {
        width: var(--target-width, 100%);
    }
}

.exp-bar-fill {
    height: 100%;
    width: 0% !important;
    background: linear-gradient(90deg, #2e7d32, #2db34a);
    border-radius: 999px;
    position: relative;
    animation: progressBarFill 1.6s cubic-bezier(.2,.9,.2,1) forwards;
}

/* Image Animations */
@keyframes slideLeftToRight {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRightToLeft {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text.animate-left-to-right {
    animation: slideLeftToRight 0.8s ease-out forwards;
}

.about-image.animate-right-to-left {
    animation: slideRightToLeft 0.8s ease-out forwards;
}

/* Stylish bullet points for About section */
.about-bullet-list {
    margin: 1.5em 0 1.5em 0;
    padding-left: 0;
    list-style: none;
}
.about-bullet-list li {
    font-size: 1.08em;
    color: #333;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.stylish-bullet {
    color: #2e7d32;
    font-size: 1.2em;
    margin-top: 2px;
    padding-top: 9px;
}

/* Specific tweak for Font Awesome circle-check icons used as stylish bullets */
.fa.fa-circle-check.stylish-bullet {
    padding-top: 9px;
}

/* Thermal Paper Roll Page Specific Styles */
.thermal-page .about-doing-icon {
    font-size: 32px;
    margin-bottom: 0;
    color: #2e7d32;
    width: 40px;
    height: 40px;
    background-color: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.thermal-page .about-doing-icon i {
    color: #2e7d32;
    font-size: 20px;
}

.thermal-page .about-doing-item h3 {
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.02em;
    margin-bottom: 0;
    line-height: 1.4;
    text-align: left;
}

.thermal-page .about-doing-item {
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    backdrop-filter: none;
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.thermal-page .about-doing-item::after {
    display: none;
}

.thermal-page .about-doing-grid {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    color: #fff;
    max-width: 1000px;
    margin-left: 11%;
    margin-right: auto;
    align-items: flex-start;
}

.thermal-page .about-footer-inner p {
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Thermal Page: Advantages list layout (scoped) */
.thermal-page .we-are-experienced .container {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 0px;
    align-items: center;
}

.thermal-page .we-are-experienced .exp-content {
    grid-column: 1;
}

.thermal-page .we-are-experienced .exp-top-images {
    grid-column: 2;
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wide Range Section: Reverse layout (image on left, content on right) */
.thermal-page .we-are-experienced.wide-range-section .exp-content {
    grid-column: 2;
}

.thermal-page .we-are-experienced.wide-range-section .exp-top-images {
    grid-column: 1;
}

.thermal-page .we-are-experienced .exp-top-images img {
    position: static !important;
    width: 100%;
    max-width: 520px;
    max-height: 360px;
    object-fit: contain;
    border: none;
    box-shadow: none;
    transform: none;
}

.thermal-page .we-are-experienced .exp-right-img {
    position: static !important;
    left: auto;
    bottom: auto;
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    transform: none;
    border: none;
    box-shadow: none;
}

.thermal-page .we-are-experienced .exp-content h2 {
    color: #2f2f2f;
    font-size: 2rem;
    margin-bottom: 14px;
}

.thermal-page .thermal-advantages .adv-intro {
    color: #666;
    margin-bottom: 18px;
    line-height: 1.7;
}

.thermal-page .thermal-advantages .adv-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.thermal-page .thermal-advantages .adv-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}


.thermal-page .thermal-advantages .adv-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #2e7d32;
    background: #eaf6ec;
    color: #2e7d32;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    flex-shrink: 0;
}

.thermal-page .thermal-advantages .adv-icon i {
    font-size: 18px;
}

.thermal-page .thermal-advantages .adv-text h4 {
    margin: 0 0 4px;
    font-size: 1.06rem;
    color: #1f1f1f;
    font-weight: 700;
}

.thermal-page .thermal-advantages .adv-text p {
    margin: 0;
    color: #606060;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .thermal-page .we-are-experienced .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .thermal-page .we-are-experienced .exp-content,
    .thermal-page .we-are-experienced .exp-top-images {
        grid-column: 1;
    }
}

/* Raffia String Page Specific Styles */

/* Fix about section layout */
.raffia-page .about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
}

.raffia-page .about-text {
    flex: 0 0 50%;
    order: 2;
}

.raffia-page .about-image {
    flex: 0 0 50%;
    order: 1;
    text-align: center;
}

.raffia-page .about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    object-fit: contain;
}

/* Specific style for raffia product image */
.raffia-page .about-image img[alt="Raffia String Product"] {
    margin-top: 20px;
}

/* Fix banner spacing for raffia page */
.raffia-page .about-banner {
    margin-top: 90px;
    padding: 60px 0 40px;
    min-height: 200px;
}

/* Fix section spacing */
.raffia-page .about-section {
    padding: 40px 0;
}

.raffia-page .we-are-experienced {
    padding: 60px 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .raffia-page .about-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .raffia-page .about-text,
    .raffia-page .about-image {
        flex: 1 1 100%;
        order: unset;
    }
    
    .raffia-page .about-image {
        order: 1;
    }
    
    .raffia-page .about-text {
        order: 2;
    }
}

/* Raffia String Advantages Section */
.thermal-advantages-section {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Fix for raffia page sustainability section visibility */
.raffia-page .sustainability-content-animate {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.raffia-page .sustainability-image-animate {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.thermal-advantages-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.thermal-advantages-content h2 {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
}

.thermal-advantages-content > p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
    flex: 0 0 50px;
    height: 50px;
    background: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    margin-top: 5px;
}

.advantage-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.advantage-text {
    flex: 1;
}

.advantage-text h4 {
    font-size: 1.2rem;
    color: #2e7d32;
    margin-bottom: 8px;
    font-weight: 600;
}

.advantage-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.advantages-cta {
    background: #2e7d32;
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.advantages-cta p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive for advantages section */
@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-item {
        padding: 20px;
    }
    
    .thermal-advantages-content h2 {
        font-size: 2rem;
    }
}

/* Applications Card Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.application-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.15);
    border-color: #2e7d32;
}

.application-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.application-icon i {
    color: #fff;
    font-size: 1.8rem;
}

.application-card h3 {
    font-size: 1.3rem;
    color: #2e7d32;
    margin-bottom: 12px;
    font-weight: 600;
}

.application-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Ensure proper grid layout for different screen sizes */
@media (min-width: 1200px) {
    .applications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .application-card {
        padding: 30px 20px;
        min-height: 240px;
    }
    
    .application-icon {
        width: 60px;
        height: 60px;
    }
    
    .application-icon i {
        font-size: 1.5rem;
    }
}

/* Choose Quality Section */
.choose-quality-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.choose-quality-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.choose-quality-image {
    flex: 0 0 45%;
}

.choose-quality-content {
    flex: 0 0 55%;
    padding-left: 20px;
}

.choose-quality-content h2 {
    font-size: 2.2rem;
    color: #2e7d32;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.choose-quality-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.choose-quality-content .btn-primary {
    background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.choose-quality-content .btn-primary:hover {
    background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

/* Responsive for choose quality section */
@media (max-width: 768px) {
    .choose-quality-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .choose-quality-image,
    .choose-quality-content {
        flex: 1 1 100%;
    }
    
    .choose-quality-content {
        padding-left: 0;
        text-align: center;
    }
    
    .choose-quality-content h2 {
        font-size: 1.8rem;
    }
    
    .choose-quality-content .btn-primary {
        display: block;
        margin: 20px auto 0;
        text-align: center;
    }
}

/* Burger Paper Intro Section */
.burger-intro-section {
    padding: 80px 0;
    background: #fff;
    margin-bottom: 60px;
}

.burger-intro-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.burger-intro-image {
    flex: 0 0 45%;
}

.burger-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.burger-intro-content {
    flex: 0 0 55%;
    padding-right: 20px;
}

.burger-intro-content h2 {
    font-size: 2.2rem;
    color: #2e7d32;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.burger-intro-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Responsive for burger intro section */
@media (max-width: 768px) {
    .burger-intro-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .burger-intro-image,
    .burger-intro-content {
        flex: 1 1 100%;
    }
    
    .burger-intro-content {
        padding-right: 0;
        text-align: center;
    }
    
    .burger-intro-content h2 {
        font-size: 1.8rem;
    }
}

/* Burger Footer Grid Layout */
.about-footer-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-footer-image {
    flex: 0 0 45%;
}

.about-footer-content {
    flex: 0 0 55%;
    padding-left: 20px;
}

.about-footer-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.about-footer-content .about-doing-grid {
    display: block;
    margin-top: 20px;
}

.about-footer-content .about-doing-item {
    background: transparent;
    padding: 15px 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-footer-content .about-doing-item:last-child {
    border-bottom: none;
}

.about-footer-content .about-doing-item:hover {
    background: transparent;
    transform: none;
}

.about-footer-content .about-doing-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
}

.about-footer-content .about-doing-icon i {
    color: #fff;
    font-size: 1rem;
}

.about-footer-content .about-doing-item h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.about-footer-content .about-doing-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive for burger footer section */
@media (max-width: 768px) {
    .about-footer-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-footer-image,
    .about-footer-content {
        flex: 1 1 100%;
    }
    
    .about-footer-content {
        padding-left: 0;
        text-align: center;
    }
    
    .about-footer-content h2 {
        font-size: 1.6rem;
    }
    
    .about-footer-content .about-doing-grid {
        display: block;
    }
    
    .about-footer-content .about-doing-item {
        padding: 12px 0;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .about-footer-content .about-doing-icon {
        margin: 0 auto;
    }
}

/* Stylish Bullet Points for Cup Carriers Page */
.stylish-bullet-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stylish-bullet-points li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.stylish-bullet-points li i {
    color: #2e7d32;
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.stylish-bullet-points li:hover {
    color: #2e7d32;
    transition: color 0.3s ease;
}

.stylish-bullet-points li:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}


/* contact*/
ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--primary-color);
}


/* ======================
   BLOG STYLES
   ====================== */

/* Blog Layout */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Blog Meta */
.blog-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Read More Button */
.bdpp-rdmr-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.bdpp-rdmr-btn:hover {
    background-color: var(--dark-green);
}

/* Blog Hero */
.blog-hero {
    background-color: var(--light-bg);
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.blog-hero h1 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
}

