/* Base Styles */
:root {
    --primary-color: #4CAF50; /* Leaf green */
    --primary-dark: #3d8b40;
    --primary-light: #81c784;
    --secondary-color: #2196F3;
    --secondary-dark: #1976D2;
    --secondary-light: #64B5F6;
    --dark-color: #212121;
    --light-color: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --gray: #757575;
    --light-gray: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}
.logo img {
    margin-top: 10px !important;
    height: 65px !important;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    font-size: 14px !important;
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    font-size: 14px !important;
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
}

/* Header Styles */
.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 40px;
}

.navbar .menu {
    display: flex;
}

.navbar .menu-item {
    margin-left: 30px;
    position: relative;
}

.navbar .menu-item a {
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

.navbar .menu-item a:hover,
.navbar .menu-item a.active {
    color: var(--primary-color);
}

.dropdown .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
}

.submenu li {
    padding: 8px 20px;
}

.submenu li a {
    color: var(--dark-color);
    font-size: 14px;
}

.submenu li a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin-left: 20px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-shape .shape-1 {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: auto;
    opacity: 0.1;
}

.hero-shape .shape-2 {
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: auto;
    opacity: 0.1;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-text {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.hero-image img {
    padding-bottom: 50px;
    border-radius: 100px;
    position: relative ;
    top: 50px;
    right: 100px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-image-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background-color: rgba(76, 175, 80, 0.1);
    z-index: 1;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Intro Section */
.intro {
    background-color: #f9f9f9;
}

.intro-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.intro-content {
    flex: 1;
}

.intro-image {
    flex: 1;
    position: relative;
}

.intro-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 20px;
    z-index: -1;
    transform: rotate(5deg);
}

.checklist li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.checklist i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 18px;
}

/* Products Section */
.products-tabs {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid var(--light-gray);
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.tab-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.product-details {
    display: flex;
    gap: 40px;
}

.product-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-height: 399px;
    object-fit: contain;
}

.product-info {
    flex: 1;
}

.product-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.product-features i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 3px;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.process-step {
    position: relative;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    border-radius: 50%;
}

/* Research Section */
.research-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.research-content {
    flex: 1;
}

.research-image {
    flex: 1;
    position: relative;
}

.research-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 20px;
    z-index: -1;
    transform: rotate(-5deg);
}

.research-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.research-list i {
    margin-right: 10px;
    color: var(--primary-color);
}

.research-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Testimonials Section */
.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    padding: 0 15px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--gray);
}

.testimonial-author h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 14px;
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: var(--white);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-inner,
    .intro-inner,
    .research-inner {
        flex-direction: column;
    }
    
    .hero-content,
    .intro-content,
    .research-content {
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .hero-image,
    .intro-image,
    .research-image {
        max-width: 100%;
    }
    
    .product-details {
        flex-direction: column;
    }
}

@media (max-width: 768px) {



    a.btn.btn-secondary {
        display: none;
    }
    .navbar {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    
    .navbar.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .navbar .menu {
        flex-direction: column;
    }
    
    .navbar .menu-item {
        margin: 0 0 15px 0;
    }
    
    .dropdown .submenu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-left: 20px;
    }
    
    .dropdown:hover .submenu {
        display: block;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-text {
        font-size: 18px;
    }
    
    .hero-actions,
    .research-actions,
    .cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        padding: 10px;
        text-align: center;
    }
    
    .tab-btn.active:after {
        width: 50%;
        left: 25%;
    }
}






/* Page Hero */
.page-hero

 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/hero-bg.jpg);
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 162px 0 80px;
    min-height: 414px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

/* About Mission */
.about-mission {
    padding: 100px 0;
}

.about-mission-inner {
    display: flex;
    align-items: start;
    gap: 50px;
}

.about-mission-content {
    flex: 1;
}

.about-mission-content p {
    margin-bottom: 20px;
}

.about-mission-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Founder Section */
.founder {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.founder-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.founder-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.founder-image img {
    object-fit: cover;
    width: 100%;
    height: 500px;
    display: block;
}

.founder-content {
    flex: 1;
}

.founder-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.founder-content blockquote {
    font-size: 24px;
    font-style: italic;
    color: var(--primary-color);
    margin: 20px 0;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

/* Vision Section */
.vision {
    padding: 80px 0;
}

.vision-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.vision-content {
    flex: 1;
}

.vision-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: var(--shadow); */
}

.vision-image img {
    width: 100%;
    height: auto;
    display: block;
}

.vision-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.vision-list i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Mission Statement */
.mission-statement {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.mission-statement h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.mission-statement p {
    margin-bottom: 40px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.mission-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.mission-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--white);
}

.mission-card h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.mission-conclusion {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Impact Section */
.impact {
    padding: 80px 0;
    text-align: center;
}

.impact h2 {
    margin-bottom: 20px;
}

.impact-subtitle {
    max-width: 800px;
    margin: 0 auto 40px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.impact-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.impact-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.impact-card h3 {
    margin-bottom: 15px;
}

.impact-conclusion {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Values Section */
.values {
    background-color: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.values h2 {
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.value-card h3 {
    margin-bottom: 15px;
}

/* Future Section */
.future {
    padding: 80px 0;
}

.future-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.future-content {
    flex: 1;
}

.future-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.future-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* About CTA */
.about-cta {
    background: linear-gradient(rgba(76, 175, 80, 0.9), rgba(76, 175, 80, 0.9)), url('../images/about/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.about-cta h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.about-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-mission-inner,
    .founder-inner,
    .vision-inner,
    .future-inner {
        flex-direction: column;
    }
    
    .about-mission-content,
    .founder-content,
    .vision-content,
    .future-content {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .about-cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
}
/* Products Hero */
.products-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* Products Intro */
.products-intro {
    padding: 60px 0;
    text-align: center;
}

.products-intro-inner {
    max-width: 800px;
    margin: 0 auto;
}

.products-intro-inner p {
    margin-bottom: 20px;
    font-size: 18px;
}

/* Product Line */
.product-line {
    padding: 60px 0;
}

.product-line h2 {
    text-align: center;
    margin-bottom: 50px;
}

.product-category {
    margin-bottom: 80px;
}

.product-category-inner {
    display: flex;
    gap: 50px;
    align-items: start;
}

.product-category-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: var(--shadow); */
}

.product-category-image img {
    object-fit: cover;
    width: 100%;
    height: 531px;
    display: block;
}

.product-category-content {
    flex: 1;
}

.product-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 20px;
    font-style: italic;
}

.product-features {
    margin: 30px 0;
}

.product-features h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-features ul {
    margin-left: 20px;
}

.product-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.product-features i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.product-how-it-works {
    margin: 30px 0;
}

.product-how-it-works h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Product Benefits */
.product-benefits {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.product-benefits h2 {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    font-size: 30px;
    color: var(--primary-color);
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* Product CTA */
.product-cta {
    background: linear-gradient(rgba(76, 175, 80, 0.9), rgba(76, 175, 80, 0.9)), url('../images/products/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.product-cta h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.product-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .product-category-inner {
        flex-direction: column;
    }
    
    .product-category-image {
        margin-bottom: 30px;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .product-cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
}
/* Solutions Hero */
.solutions-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center; 
    min-height: 414px;
}


/* Solutions Intro */
.solutions-intro {
    padding: 60px 0;
    text-align: center;
}

.solutions-intro-inner {
    max-width: 800px;
    margin: 0 auto;
}

.solutions-intro-inner p {
    margin-bottom: 20px;
    font-size: 18px;
}

/* Key Solutions */
.key-solutions {
    padding: 60px 0;
}

.key-solutions h2 {
    text-align: center;
    margin-bottom: 50px;
}

.solution-card {
    margin-bottom: 80px;
}

.solution-card-inner {
    display: flex;
    gap: 50px;
    align-items: center;
}

.solution-card-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.solution-card-image img {
    width: 100%;
    height: 575px;
    display: block;
    object-fit: cover;
}

.solution-card-content {
    flex: 1;
}

.solution-details {
    margin: 30px 0;
}

.solution-how-it-helps h4,
.solution-applications h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.solution-how-it-helps ul,
.solution-applications ul {
    margin-left: 20px;
}

.solution-how-it-helps li,
.solution-applications li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.solution-how-it-helps i,
.solution-applications i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

/* Tailored Solutions */
.tailored-solutions {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.tailored-solutions h2 {
    text-align: center;
    margin-bottom: 20px;
}

.tailored-subtitle {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 18px;
}

.tailored-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.tailored-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.tailored-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tailored-card-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tailored-card-header i {
    font-size: 24px;
}

.tailored-card-header h3 {
    margin-bottom: 0;
}

.tailored-card-body {
    padding: 20px;
}

.tailored-card-body ul {
    margin-left: 20px;
}

.tailored-card-body li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.tailored-card-body i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

/* Environmental Impact */
.environmental-impact {
    padding: 80px 0;
}

.environmental-impact-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.environmental-impact-content {
    flex: 1;
}

.environmental-impact-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.environmental-impact-image img {
    width: 100%;
    height: auto;
    display: block;
}

.environmental-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
}

.environmental-stat {
    text-align: center;
    flex: 1;
}

.environmental-stat h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Why Ecopap */
/* Why Choose Section */
.why-choose {
    padding: 0px 0 !important;
 
}

.why-choose-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-choose-image {
    position: relative;
    flex: 1;
}

.why-choose-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#4CAF50 2px, transparent 2px);
    background-size: 15px 15px;
    bottom: -20px;
    right: -20px;
    z-index: -1;
}

.why-choose-content {
    flex: 1;
}

.why-choose-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.why-choose-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.why-icon {
    width: 40px;
    height: 40px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.why-text h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.why-text p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .why-choose-inner {
        flex-direction: column;
        gap: 40px;
    }
    
    .why-choose-image,
    .why-choose-content {
        width: 100%;
    }
}
/* Solutions CTA */
.solutions-cta {
    background: linear-gradient(rgba(76, 175, 80, 0.9), rgba(76, 175, 80, 0.9)), url('../images/solutions/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.solutions-cta h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.solutions-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .solution-card-inner,
    .environmental-impact-inner {
        flex-direction: column;
    }
    
    .solution-card-image,
    .environmental-impact-image {
        margin-bottom: 30px;
        max-width: 500px;
    }
    
    .tailored-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .solutions-cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .environmental-stats {
        flex-direction: column;
        gap: 15px;
    }
}
/* Contact Page Specific Styles */
.contact-page {
    background-color: #f8fafc;
    overflow-x: hidden;
    position: relative;
}

/* Particle Background */
.particle-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.1);
    filter: blur(30px);
    z-index: -1;
    opacity: 0.6;
}

.floating-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: floatShape 15s ease-in-out infinite alternate;
}

.floating-shape.shape-2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: 5%;
    animation: floatShape 20s ease-in-out 2s infinite alternate;
}

.floating-shape.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 15%;
    animation: floatShape 12s ease-in-out 1s infinite alternate;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(var(--x-movement, 50px), var(--y-movement, 50px));
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Contact Hero */
.contact-hero {
    padding: 120px 0 80px;
    position: relative;
}

.contact-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.contact-hero-content {
    flex: 1;
    max-width: 600px;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-family: 'Montserrat', sans-serif;
}

.contact-hero .subtitle {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.contact-hero p {
    margin-bottom: 30px;
    font-size: 18px;
    color: var(--gray);
}

.contact-hero-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.contact-hero-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-hero-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 15px 15px;
    top: -30px;
    right: -30px;
    z-index: 1;
    opacity: 0.3;
}

/* Contact Methods */
.contact-methods {
    padding: 80px 0;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-card:hover:before {
    height: 10px;
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-card p {
    margin-bottom: 20px;
    color: var(--gray);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 500;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 18px;
}

.contact-info a {
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--gray);
}

.contact-hours i {
    color: var(--primary-color);
    font-size: 18px;
}

.email-subjects {
    margin-top: 25px;
}

.email-subjects p {
    font-weight: 500;
    margin-bottom: 10px;
}

.email-subjects ul {
    margin-left: 20px;
}

.email-subjects li {
    margin-bottom: 5px;
    color: var(--gray);
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Demo Request */
.demo-request {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.demo-request:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 18px;
}

.demo-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Inquiry Form */
.inquiry-form {
    padding: 80px 0;
    background: linear-gradient(to right, #f8fafc, #ffffff);
}

.inquiry-form-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.inquiry-form-content {
    flex: 1;
    max-width: 500px;
}

.inquiry-form-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-family: 'Montserrat', sans-serif;
}

.inquiry-form-content p {
    margin-bottom: 30px;
    color: var(--gray);
    font-size: 18px;
}

.inquiry-features {
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.feature i {
    color: var(--primary-color);
    font-size: 20px;
}

.feature span {
    font-weight: 500;
    color: var(--dark-color);
}

.inquiry-form-fields {
    flex: 1;
    max-width: 500px;
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Social Media Section */
.social-media {
    padding: 50px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.social-media .section-header {
    margin-bottom: 30px;
}

.social-media .section-header h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.social-media .section-header p {
    color: #666;
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.social-card {
    width: 120px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card i {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.social-card span {
    font-size: 0.85rem;
    font-weight: 500;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Social brand colors */
.facebook { background-color: #3b5998; }
.instagram { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
.linkedin { background-color: #0077b5; }
.twitter { background-color: #1da1f2; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-grid {
        gap: 10px;
    }
    
    .social-card {
        width: calc(50% - 20px);
        height: 80px;
    }
}

/* Why Choose */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(to right, #ffffff, #f8fafc);
}

.why-choose-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-choose-image {
    flex: 1;
    position: relative;
}

.why-choose-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 15px 15px;
    bottom: -30px;
    left: -30px;
    z-index: -1;
    opacity: 0.3;
}

.why-choose-content {
    flex: 1;
    max-width: 500px;
}

.why-choose h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-family: 'Montserrat', sans-serif;
}

.why-choose p {
    margin-bottom: 30px;
    color: var(--gray);
    font-size: 18px;
}

.why-list {
    list-style: none;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.why-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.why-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.why-text p {
    margin-bottom: 0;
    font-size: 16px;
    color: var(--gray);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .contact-hero h1,
    .section-header h2,
    .why-choose h2 {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .contact-hero-inner,
    .inquiry-form-inner,
    .why-choose-inner {
        flex-direction: column;
    }
    
    .contact-hero-content,
    .inquiry-form-content,
    .why-choose-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .contact-hero-image,
    .why-choose-image {
        max-width: 100%;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero h1,
    .section-header h2,
    .why-choose h2 {
        font-size: 36px;
    }
    
    .demo-form,
    .inquiry-form-fields {
        padding: 30px;
    }
    
    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 576px) {
    .contact-hero h1,
    .section-header h2,
    .why-choose h2 {
        font-size: 30px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .why-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
/* Blog Page Specific Styles */
/* Blog Page Specific Styles */
.blog-page {
    background-color: #ffffff;
}

/* Blog Hero */
.blog-hero {
    position: relative;
    padding: 100px 0 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-bottom: 80px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-category {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-hero h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.blog-excerpt {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info span {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 2px;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 2px;
    color: var(--dark-color);
}

.author-info p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 0;
}

.blog-hero-image {
    position: relative;
    height: 500px;
    margin-top: -100px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.blog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%);
}

/* Blog Content */
.blog-content {
    padding: 80px 0;
    position: relative;
    background-color: #ffffff;
}

.blog-content-inner {
    display: flex;
    gap: 60px;
}

.blog-article {
    flex: 2;
}

.blog-sidebar {
    flex: 1;
    position: relative;
}

.blog-article h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--dark-color);
    font-family: 'Montserrat', sans-serif;
}

.blog-article p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 25px;
}

.featured-image {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    font-size: 14px;
    color: var(--gray);
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

.info-card {
    display: flex;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    gap: 20px;
    border-left: 4px solid var(--primary-color);
}

.info-card-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.info-card-content h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.pull-quote {
    margin: 40px 0;
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    background-color: #f8fafc;
    font-size: 22px;
    line-height: 1.6;
    color: var(--dark-color);
    font-style: italic;
    border-radius: 0 10px 10px 0;
}

.pull-quote footer {
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: var(--gray);
}

.blog-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 15px;
    padding: 40px;
    margin: 60px 0 40px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.blog-cta h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
}

.blog-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid white;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Sidebar */
.sidebar-widget {
    margin-bottom: 40px;
    background-color: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.widget-title {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.author-bio {
    text-align: center;
}

.author-bio img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid var(--primary-color);
}

.author-bio h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author-title {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.author-bio p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.author-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.author-social a:hover {
    background-color: var(--primary-color);
    color: white;
}

.related-posts {
    display: grid;
    gap: 20px;
}

.related-post {
    display: flex;
    gap: 15px;
    align-items: center;
    transition: all 0.3s ease;
}

.related-post:hover {
    transform: translateX(5px);
}

.related-post img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-post-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.post-date {
    font-size: 13px;
    color: var(--gray);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.category-list span {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background-color: #f8fafc;
}

.newsletter-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.newsletter-content {
    flex: 1;
}

.newsletter h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.newsletter p {
    color: var(--gray);
    margin-bottom: 0;
}

.newsletter-form {
    flex: 1;
}

.newsletter-form .form-group {
    position: relative;
    margin-bottom: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding-right: 150px;
}

.newsletter-form button {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    padding: 0 25px;
    border: none;
}

.form-agreement {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-agreement input {
    width: auto;
}

.form-agreement label {
    font-size: 12px;
    color: var(--gray);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .blog-hero h1 {
        font-size: 42px;
    }
    
    .blog-article h2 {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .blog-content-inner {
        flex-direction: column;
    }
    
    .blog-sidebar {
        margin-top: 60px;
    }
    
    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding-top: 80px;
    }
    
    .blog-hero h1 {
        font-size: 36px;
    }
    
    .blog-excerpt {
        font-size: 18px;
    }
    
    .blog-hero-image {
        height: 400px;
        margin-top: -80px;
    }
    
    .blog-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .blog-hero h1 {
        font-size: 30px;
    }
    
    .blog-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .blog-hero-image {
        height: 300px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pull-quote {
        font-size: 18px;
        padding: 20px;
    }
}

/* =============================================
   BLOG COMMON STYLES 
   ============================================= */
   .blog-page {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.blog-hero {
    position: relative;
    padding: 180px 0px 080px 0px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    overflow: hidden;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.blog-hero-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45%;
    overflow: hidden;
}

.blog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(76,175,80,0.8) 0%, rgba(76,175,80,0.5) 50%, transparent 100%);
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.blog-category, .blog-date, .blog-reading-time {
    padding: 5px 10px;
    border-radius: 4px;
    background-color: rgb(255 255 255);
}
.blog-author {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.blog-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    color: white;
}

.author-info h4 {
    margin: 5px 0 0 0;
    font-size: 1.1rem;
}

.author-info p {
    margin: 2px 0 0 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* =============================================
   BLOG CONTENT STYLES
   ============================================= */
.blog-content {
    padding: 60px 0;
}

.blog-content-inner {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-article {
    flex: 2;
}

.blog-sidebar {
    flex: 1;
    max-width: 350px;
}

.blog-article h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-article p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.featured-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.featured-image img {
    width: 100%;
    display: block;
}

.image-caption {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
    padding: 0 10px;
}

/* Info Cards */
.info-card {
    background-color: #f0f7f0;
    border-left: 4px solid #4CAF50;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    display: flex;
    gap: 15px;
}

.info-card-icon {
    color: #4CAF50;
    font-size: 1.5rem;
}

.info-card-content h4 {
    margin-top: 0;
    color: #2c3e50;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    margin-top: 0;
    color: #2c3e50;
}

/* Pull Quotes */
.pull-quote {
    border-left: 4px solid #4CAF50;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

.pull-quote footer {
    font-style: normal;
    font-weight: bold;
    margin-top: 10px;
    color: #2c3e50;
}

/* Case Study Highlight */
.case-study-highlight {
    margin: 30px 0;
}

.case-study-item {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #4CAF50;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.case-study-item h4 {
    margin-top: 0;
    color: #4CAF50;
}

/* Trends Timeline */
.trends-timeline {
    margin: 30px 0;
    position: relative;
    padding-left: 30px;
}

.trends-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #4CAF50;
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-year {
    position: absolute;
    left: -30px;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.timeline-content {
    background: white;
    padding: 15px;
    margin-left: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.timeline-content h4 {
    margin-top: 0;
    color: #2c3e50;
}

.timeline-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.stat-card {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Clinical Table */
.clinical-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.clinical-table th, .clinical-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.clinical-table th {
    background-color: #4CAF50;
    color: white;
}

.clinical-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Icon List */
.icon-list {
    margin: 30px 0;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* =============================================
   SIDEBAR STYLES
   ============================================= */
.sidebar-widget {
    background: white;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.widget-title {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #4CAF50;
}

/* Author Bio */
.author-bio {
    text-align: center;
}

.author-bio img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    display: block;
}

.author-bio h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    display: block;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.author-social a {
    color: #4CAF50;
    font-size: 1.1rem;
}

/* Related Posts */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-post {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.related-post img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
}

.related-post-content h4 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    color: #2c3e50;
    transition: color 0.3s;
}

.related-post:hover h4 {
    color: #4CAF50;
}

.post-date, .read-time {
    display: block;
    font-size: 0.8rem;
    color: #888;
}

/* Case Studies Widget */
.case-studies {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.case-study {
    display: block;
    text-decoration: none;
    color: inherit;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.case-study:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.case-study-badge {
    display: inline-block;
    background: #f0f7f0;
    color: #4CAF50;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-weight: 600;
}

.case-study h4 {
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    color: #2c3e50;
    transition: color 0.3s;
}

.case-study p {
    margin: 0 0 10px 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.case-study:hover h4 {
    color: #4CAF50;
}

/* Resource List */
.resource-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.resource-item:hover {
    background-color: #f0f7f0;
}

.resource-icon {
    width: 40px;
    height: 40px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.resource-item h4 {
    margin: 0;
    font-size: 0.95rem;
    color: #2c3e50;
}

/* CTA Widget */
.sidebar-cta {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 25px;
}

.sidebar-cta .widget-title {
    color: white;
}

.sidebar-cta .widget-title::after {
    background: rgba(255,255,255,0.5);
}

.cta-box {
    text-align: center;
}

.cta-icon {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.cta-box h3 {
    margin: 0 0 15px 0;
    color: white;
    font-size: 1.2rem;
}

.cta-box p {
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.cta-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.cta-form button {
    width: 100%;
    padding: 12px;
    background: white;
    color: #4CAF50;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-form button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 992px) {
    .blog-content-inner {
        flex-direction: column;
    }
    
    .blog-sidebar {
        max-width: 100%;
    }
    
    .blog-hero-image {
        position: relative;
        width: 100%;
        height: 300px;
    }
    
    .image-overlay {
        background: linear-gradient(0deg, rgba(76,175,80,0.8) 0%, transparent 50%);
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 60px 0 300px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .clinical-table {
        display: block;
        overflow-x: auto;
    }
}
/* =============================================
   CASE STUDIES PAGE STYLES
   ============================================= */

   .case-studies-page {
    background-color: #f9f9f9;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.case-studies-hero {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.case-studies-hero h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.case-studies-hero .subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00668B 0%, rgba(0,102,139,0.7) 40%, transparent 100%);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* Case Studies Grid */
.case-studies-grid {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.filter-btn {
    background: none;
    border: 1px solid #4CAF50;
    color: #4CAF50;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.filter-btn.active, .filter-btn:hover {
    background: #4CAF50;
    color: white;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.case-study-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.case-study-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4CAF50;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-study-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-study-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
}

.case-study-card h3 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 1.4rem;
}

.case-excerpt {
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    padding: 40px;
    border-radius: 10px;
    color: white;
    text-align: center;
    margin-top: 50px;
}

.cta-section h3 {
    margin-top: 0;
    font-size: 1.8rem;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f0f7f0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-content {
    position: relative;
    margin-bottom: 25px;
}

.quote-icon {
    color: #4CAF50;
    font-size: 2rem;
    opacity: 0.2;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
}

.author-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    font-style: normal;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-image {
        width: 50%;
    }
    
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .case-studies-hero {
        padding: 80px 0 60px;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .gradient-overlay {
        background: linear-gradient(0deg, #00668B 0%, transparent 60%);
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .case-studies-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .filter-tabs {
        flex-wrap: wrap;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .case-study-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid #4aaa4e;
    color: #49a84d;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-secondary {
    background-color: #ffffff;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid;
}

.blog-hero p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: slideUp 0.8s ease-out 0.2s forwards;
    opacity: 1 !important;
}
.subscribe-form {
    display: flex
;
    max-width: 500px;
    margin: 2rem auto 0;
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 1 !important;
}
.blog-hero {
    position: relative;
    padding: 100px 0px 080px 0px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    overflow: hidden;

}
.blog-hero h1 {
    color: white !important;
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}
/* Why Ecopap Section */
.why-ecopap {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.why-ecopap .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.why-ecopap .section-subtitle {
    display: inline-block;
    color: #4CAF50;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-ecopap h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.why-ecopap .section-intro {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    perspective: 1000px;
    height: 300px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.why-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-front {
    background-color: white;
    color: #2c3e50;
}

.card-back {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    transform: rotateY(180deg);
    justify-content: flex-start;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.card-front p {
    color: #666;
    line-height: 1.6;
}

.card-back p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.benefit-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.benefit-list i {
    position: absolute;
    left: 0;
    top: 3px;
    color: rgba(255,255,255,0.8);
}

.why-cta {
    text-align: center;
    margin-top: 60px;
}

.why-cta p {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-ecopap {
        padding: 60px 0;
    }
    
    .why-ecopap h2 {
        font-size: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .why-card {
        height: auto;
    }
    
    .card-inner {
        transform: none !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        height: auto;
    }
    
    .card-front, .card-back {
        position: relative;
        transform: none;
        backface-visibility: visible;
        padding: 25px;
    }
    
    .card-back {
        background: #f0f7f0;
        color: #2c3e50;
        border-top: 3px solid #4CAF50;
    }
    
    .benefit-list i {
        color: #4CAF50;
    }
}

.why-choose-image img {
    width: 100%;
    height: 600px;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.comment-author img {
    display: none !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}
.related-post img {
    display: none !important;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
}

.blog-author img {
    display: none !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.author-bio img {
    display: none !important;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    display: block;
}
.cta-content {
    width: 72% !important;
}
.timeline-year {
    padding: 24px !important;
 
}
.icon-circle {
    width: 30px;
    height: 30px;
}