/* Custom Pages Professional Styles */
:root {
    --primary-color: #2c5530;
    --secondary-color: #d4a574;
    --accent-color: #8b4513;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Breadcrumb Styles */
.breadcrumb {
    background: var(--background-light);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item.active {
    color: var(--text-light);
    font-weight: 600;
}

/* Page Header Styles */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a6b3a 100%);
    color: white;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 100,0 100,100"/></svg>');
    background-size: cover;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header .lead {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

/* News Article Styles */
.news-article {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 40px;
}

.article-header {
    padding: 40px 40px 20px;
    border-bottom: 1px solid var(--border-color);
}

.article-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

.article-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.article-image {
    padding: 0;
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-content {
    padding: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-content p {
    margin-bottom: 20px;
}

.article-footer {
    padding: 30px 40px;
    background: var(--background-light);
    border-top: 1px solid var(--border-color);
}

.article-actions .sppb-btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-actions .sppb-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* News Grid Styles */
.news-grid {
    margin-top: 30px;
}

.news-card {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-card .news-image {
    height: 200px;
    overflow: hidden;
}

.news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-card .card-body {
    padding: 25px;
}

.news-card .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card .card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card .card-title a:hover {
    color: var(--primary-color);
}

.news-meta {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.news-card .card-text {
    color: var(--text-light);
    line-height: 1.6;
}

.news-card .card-footer {
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 20px 25px;
}

/* About Page Styles */
.about-feature {
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.about-feature i {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-feature h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.about-feature p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-feature .sppb-btn {
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-feature .sppb-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Mission Statement Styles */
.mission-section {
    background: linear-gradient(135deg, var(--background-light) 0%, #ffffff 100%);
    padding: 50px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    margin: 40px 0;
}

.mission-section h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.mission-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
}

/* Company History Styles */
.history-section {
    margin: 50px 0;
}

.history-content h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.history-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* News Preview Styles */
.news-preview {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

.news-preview:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.news-preview .card-img-top {
    height: 200px;
    object-fit: cover;
}

.news-preview .card-body {
    padding: 25px;
}

.news-preview .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-preview .card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-preview .card-title a:hover {
    color: var(--primary-color);
}

.news-preview .card-footer {
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 20px 25px;
}

/* No Content States */
.no-news {
    text-align: center;
    padding: 60px 20px;
    background: var(--background-light);
    border-radius: 12px;
    border: 2px dashed var(--border-color);
}

.no-news p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 0;
}

/* Button Enhancements */
.sppb-btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a6b3a 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.sppb-btn-primary:hover {
    background: linear-gradient(135deg, #3a6b3a 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Section Spacing */
.sppb-section {
    margin: 30px 0;
}

.sppb-addon-wrapper {
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-header,
    .article-content,
    .article-footer {
        padding: 25px 20px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .about-feature {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .mission-section {
        padding: 30px 20px;
    }
    
    .mission-section p {
        font-size: 1.1rem;
    }
    
    .breadcrumb {
        padding: 12px 15px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 30px 20px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .news-card .card-body,
    .news-preview .card-body {
        padding: 20px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Social Share Styles */
.social-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-weight: 600;
    color: var(--text-light);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    color: white;
}

/* Read Time Styles */
.read-time {
    background: var(--secondary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}








<style type="text/css">
.sp-page-builder .page-content #section-id-1668114200295{padding-top:50px;padding-right:0px;padding-bottom:50px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;background-image:url(../images/2023/01/13/header-history.jpg);background-repeat:no-repeat;background-size:contain;background-attachment:fixed;}@media (min-width:768px) and (max-width:991px) { .sp-page-builder .page-content #section-id-1668114200295{padding-top:100px;padding-right:0px;padding-bottom:90px;padding-left:0px;} }@media (max-width:767px) { .sp-page-builder .page-content #section-id-1668114200295{padding-top:50px;padding-right:0px;padding-bottom:40px;padding-left:0px;} }.sp-page-builder .page-content #section-id-1668114200295 > .sppb-row-overlay {background-color:rgba(0, 0, 0, 0.5)}#column-id-1668114200313{box-shadow:0 0 0 0 #fff;}#sppb-addon-wrapper-1668114200318 {margin:125px 0px 5px 0px;}#sppb-addon-1668114200318 {color:#fff;}#sppb-addon-1668114200318 .sppb-addon-title {font-size:45px;line-height:38px;font-weight:400;}@media (max-width:767px) {#sppb-addon-1668114200318 .sppb-addon-title {font-size:30px;line-height:30px;line-height:42px;}}#sppb-addon-1668114200318 .sppb-addon-title { font-family:"Tahoma"; }#sppb-addon-1668114200318 h1.sppb-addon-title {margin:0px 0px 15px 0px; text-transform:uppercase; padding:0px 0px 0px 0px; }.sp-page-builder .page-content #section-id-1695841469846{padding-top:50px;padding-right:0px;padding-bottom:25px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}@media (min-width:768px) and (max-width:991px) { .sp-page-builder .page-content #section-id-1695841469846{padding-top:100px;padding-right:0px;padding-bottom:100px;padding-left:0px;} }@media (max-width:767px) { .sp-page-builder .page-content #section-id-1695841469846{padding-top:60px;padding-right:0px;padding-bottom:30px;padding-left:0px;} }#column-id-1695841469845{box-shadow:0 0 0 0 #fff;}#sppb-addon-wrapper-1695841469851 {margin:0px 0px 30px 0px;}#sppb-addon-1695841469851 {box-shadow:0 0 0 0 #ffffff;}@media (min-width:768px) and (max-width:991px) {#sppb-addon-wrapper-1695841469851 {margin-top:0px;margin-right:0px;margin-bottom:20px;margin-left:0px;}}@media (max-width:767px) {#sppb-addon-wrapper-1695841469851 {margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;}}#column-id-1695841469850{box-shadow:0 0 0 0 #fff;}#sppb-addon-wrapper-1695841469846 {margin:0px 0px 0px 0px;}#sppb-addon-1695841469846 {box-shadow:0pxpx 20pxpx 14pxpx 0pxpx rgba(0, 0, 0, 0);}@media (min-width:768px) and (max-width:991px) {#sppb-addon-wrapper-1695841469846 {margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}}@media (max-width:767px) {#sppb-addon-wrapper-1695841469846 {margin-right:0px;}}#sppb-addon-1695841469846 img{border-radius:7px;}#sppb-addon-wrapper-1695841469876 {margin:0px 0px 30px 0px;}#sppb-addon-1695841469876 {box-shadow:0 0 0 0 #ffffff;}#sppb-addon-1695841469876 .sppb-empty-space {height:15px;}@media (min-width:768px) and (max-width:991px) {#sppb-addon-1695841469876 .sppb-empty-space {height:30px;}}@media (max-width:767px) {#sppb-addon-1695841469876 .sppb-empty-space {height:20px;}}#sppb-addon-wrapper-1695841469861 {margin:0px 0px 0px 0px;}#sppb-addon-1695841469861 {box-shadow:0pxpx 20pxpx 14pxpx 0pxpx rgba(0, 0, 0, 0);}@media (min-width:768px) and (max-width:991px) {#sppb-addon-wrapper-1695841469861 {margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}}@media (max-width:767px) {#sppb-addon-wrapper-1695841469861 {margin-right:0px;}}#sppb-addon-1695841469861 img{border-radius:7px;}.sp-page-builder .page-content #section-id-1668114200294{padding-top:50px;padding-right:0px;padding-bottom:25px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}@media (min-width:768px) and (max-width:991px) { .sp-page-builder .page-content #section-id-1668114200294{padding-top:100px;padding-right:0px;padding-bottom:100px;padding-left:0px;} }@media (max-width:767px) { .sp-page-builder .page-content #section-id-1668114200294{padding-top:60px;padding-right:0px;padding-bottom:30px;padding-left:0px;} }#column-id-1668114200300{box-shadow:0 0 0 0 #fff;}#sppb-addon-wrapper-1668114200322 {margin:0px 0px 30px 0px;}#sppb-addon-1668114200322 {box-shadow:0 0 0 0 #ffffff;}@media (min-width:768px) and (max-width:991px) {#sppb-addon-wrapper-1668114200322 {margin-top:0px;margin-right:0px;margin-bottom:20px;margin-left:0px;}}@media (max-width:767px) {#sppb-addon-wrapper-1668114200322 {margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;}}#column-id-1668114200302{box-shadow:0 0 0 0 #fff;}#sppb-addon-wrapper-1668114200301 {margin:0px 0px 0px 0px;}#sppb-addon-1668114200301 {box-shadow:0pxpx 20pxpx 14pxpx 0pxpx rgba(0, 0, 0, 0);}@media (min-width:768px) and (max-width:991px) {#sppb-addon-wrapper-1668114200301 {margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}}@media (max-width:767px) {#sppb-addon-wrapper-1668114200301 {margin-right:0px;}}#sppb-addon-1668114200301 img{border-radius:7px;}#sppb-addon-wrapper-1668114200334 {margin:0px 0px 30px 0px;}#sppb-addon-1668114200334 {box-shadow:0 0 0 0 #ffffff;padding:10px 10px 10px 10px;}@media (min-width:768px) and (max-width:991px) {#sppb-addon-wrapper-1668114200334 {margin-top:0px;margin-right:0px;margin-bottom:20px;margin-left:0px;}}@media (max-width:767px) {#sppb-addon-wrapper-1668114200334 {margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;}}#sppb-addon-1668114200334{ font-size:11px; }.sp-page-builder .page-content #section-id-1695841469886{padding-top:50px;padding-right:0px;padding-bottom:50px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}@media (min-width:768px) and (max-width:991px) { .sp-page-builder .page-content #section-id-1695841469886{padding-top:100px;padding-right:0px;padding-bottom:100px;padding-left:0px;} }@media (max-width:767px) { .sp-page-builder .page-content #section-id-1695841469886{padding-top:60px;padding-right:0px;padding-bottom:30px;padding-left:0px;} }#column-id-1695841469854{box-shadow:0 0 0 0 #fff;}#sppb-addon-wrapper-1695841469856 {margin:0px 0px 30px 0px;}#sppb-addon-1695841469856 {box-shadow:0 0 0 0 #ffffff;}@media (min-width:768px) and (max-width:991px) {#sppb-addon-wrapper-1695841469856 {margin-top:0px;margin-right:0px;margin-bottom:20px;margin-left:0px;}}@media (max-width:767px) {#sppb-addon-wrapper-1695841469856 {margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;}}#column-id-1695841469857{box-shadow:0 0 0 0 #fff;}#sppb-addon-wrapper-1695841469860 {margin:0px 0px 0px 0px;}#sppb-addon-1695841469860 {box-shadow:0pxpx 20pxpx 14pxpx 0pxpx rgba(0, 0, 0, 0);}@media (min-width:768px) and (max-width:991px) {#sppb-addon-wrapper-1695841469860 {margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}}@media (max-width:767px) {#sppb-addon-wrapper-1695841469860 {margin-right:0px;}}#sppb-addon-1695841469860 img{border-radius:7px;}#sppb-addon-wrapper-1695841469861 {margin:0px 0px 30px 0px;}#sppb-addon-1695841469861 {box-shadow:0 0 0 0 #ffffff;padding:10px 10px 10px 10px;}@media (min-width:768px) and (max-width:991px) {#sppb-addon-wrapper-1695841469861 {margin-top:0px;margin-right:0px;margin-bottom:20px;margin-left:0px;}}@media (max-width:767px) {#sppb-addon-wrapper-1695841469861 {margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;}}#sppb-addon-1695841469861{ font-size:11px; }
body{font-family:Abel, sans-serif; font-size:16px; font-weight:normal; }
h1{font-family:Alike, sans-serif; font-size:60px; font-weight:normal; }
h2{font-family:Alegreya Sans, sans-serif; font-size:50px; font-weight:500; }
h3{font-family:Source Sans Pro, sans-serif; font-size:20px; font-weight:600; }
h4{font-family:Source Sans Pro, sans-serif; font-size:34px; font-weight:normal; }
h5{font-family:Source Sans Pro, sans-serif; font-size:24px; font-weight:normal; }
h6{font-family:Source Sans Pro, sans-serif; font-size:18px; font-weight:normal; }
#sp-header .logo h1 > img {
  float: left;
  max-width: 150px;
}
#sp-header.menu-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  height: 85px;
  z-index: 9999;
  padding: 0;
  background-color: #ffffff;
  -webkit-animation: fadeInDown .5s;
  animation: fadeInDown .5s;
  -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.sp-megamenu-parent > li > a {
  display: inline-block;
  padding: 0;
  line-height: 80px;
  font-size: 16px;
  text-transform: uppercase;
  color: #4f5362;
  font-family: Alegreya Sans, sans-serif;
}
.sp-megamenu-parent > li > a:hover {
  display: inline-block;
  padding: 0;
  line-height: 80px;
  font-size: 16px;
  text-transform: uppercase;
  color: #d48b2c;
  font-family: Alegreya Sans, sans-serif;
}
#eb .eb-mod-title, #eb .eb-mod-body, #eb .eb-mod-hold, #eb .eb-mod-action, #eb .eb-mod-foot {
  padding-top: 10px;
  word-wrap: break-word;
  color: #fff;
}
h2 {
  font-family: Alegreya Sans, sans-serif;
  font-size: 50px;
  font-weight: 500;
  color: #f68a43;
}
@media (max-width: 780px) {
#sp-logo {max-width: 45%; float: left;}
#sp-menu {padding-right: 0px; margin-right: 40px; max-width: 45%; float: right; }
    }
.page-header {
  padding-bottom: 9px;
  margin: -60px 0 20px;
    margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.sp-page-title {
  padding: 160px 0 25px 0;
  background-attachment: fixed;
  background-size: contain !important;
}
@media (min-width: 1400px) {
.container {
max-width: 1140px;
}
}
#sp-footer{ background-color:#2e3133;color:#ffffff; }