<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-green: #00A878;
    --secondary-green: #40916C;
    --light-green: #95D5B2;
    --dark-green: #1B4332;
    --accent-green: #2D6A4F;
    --white: #ffffff;
    --light-gray: #F8F9FA;
    --dark-gray: #212529;
    --gradient-green: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0.5rem 1rem;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: 600;
    padding: 1rem 1.5rem;
    position: relative;
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* KMJ Group Navbar Title */
.kmj-navbar-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--dark-green);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../images/fish_green.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 76px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 168, 120, 0.3), rgba(27, 67, 50, 0.3));
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-buttons {
    margin-top: 30px;
}

.hero-buttons .btn {
    margin: 0 10px;
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-green) !important;
    border: none !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 120, 0.4);
}

.btn-secondary {
    background-color: transparent !important;
    border: 2px solid var(--white) !important;
    color: var(--white) !important;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-card h3 {
    color: var(--primary-green);
    margin: 15px 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-info {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-control {
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: none;
}

/* Footer */
footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
}

footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--light-green);
}

/* Custom Footer Styles */
.footer-custom {
    background: linear-gradient(135deg, var(--dark-green), var(--accent-green));
    color: var(--white);
    position: relative;
    font-size: 0.9rem;
}

.footer-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-green);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--light-green);
    position: relative;
    padding-bottom: 5px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-green);
}

.footer-links li {
    margin-bottom: 4px;
    font-size: 0.85rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: var(--light-green);
    transform: translateX(5px);
}

.footer-contact li {
    margin-bottom: 4px;
    font-size: 0.85rem;
}

.footer-tagline {
    font-size: 0.85rem;
    opacity: 0.9;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-green);
    color: var(--white);
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px) rotate(8deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-social-icons .social-icon {
    margin-left: 0;
    margin-right: 10px;
}

/* Map */
.map-container {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
}

/* Subsidiaries Section */
.subsidiaries-section {
    padding-top: 100px;
    background-color: var(--light-gray);
}

.company-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.company-card:hover {
    transform: translateY(-10px);
}

.company-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    position: relative;
    overflow: hidden;
}

.company-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, var(--white), transparent);
}

.company-content {
    padding: 2rem;
}

.company-content h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.company-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.feature h5 {
    color: var(--dark-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--primary-green);
    font-weight: 500;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons .btn {
        margin: 10px;
        display: block;
        width: 100%;
    }

    .company-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Hero Section Small */
.hero-section-small {
    height: 240px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../images/hero-bgd.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 90px;
    position: relative;
    overflow: hidden;
}

.hero-section-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 168, 120, 0.3), rgba(27, 67, 50, 0.3));
}

.hero-section-small .container {
    position: relative;
    z-index: 1;
}

.hero-section-small h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    background-color: #f8f9fa;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
    position: relative;
}

.product-image-placeholder {
    background-color: var(--light-green);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-placeholder {
    transform: scale(1.1);
}

.product-image-placeholder i {
    font-size: 2.5rem;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dark-green);
}

.product-scientific {
    font-style: italic;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background-color: var(--medium-green);
    color: white;
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    display: inline-block;
}

.product-description {
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 0;
}

.quality-image-placeholder {
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px dashed #dee2e6;
    padding: 3rem 1rem;
    height: 100%;
}

.placeholder-content {
    color: #6c757d;
}

.placeholder-content i {
    color: var(--medium-green);
}

.feature-list {
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.75rem;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    color: var(--medium-green);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

/* Responsive adjustments for products page */
@media (max-width: 991.98px) {
    .quality-image-placeholder {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section-small h1 {
        font-size: 2.5rem;
    }
    
    .product-card {
        margin-bottom: 1.5rem;
    }
}

/* About Page Styles */
.about-content h2 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.about-logo-container {
    padding: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.about-page-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast; /* Improves sharpness on webkit browsers */
    image-rendering: crisp-edges; /* Improves sharpness on other browsers */
}

.vision-card {
    background: var(--gradient-green);
    color: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
}

.vision-card h3 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.leader-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.leader-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid var(--primary-green);
    padding: 5px;
}

.leader-card h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.leader-card .position {
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Contact Page Updates */
.contact-info a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--dark-green);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-green);
    border-top: 3px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-loaded {
    opacity: 0;
    pointer-events: none;
}

/* Services Page Styles */
.service-block {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.service-content {
    padding: 2rem;
}

.service-image {
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.02);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

/* Contact Page Updates */
.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.contact-link {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--dark-green);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Footer Adjustments */
@media (max-width: 767px) {
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-heading {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: translateY(-3px);
    }
    
    .footer-contact {
        text-align: center;
    }
}

/* Company Showcase Carousel */
.company-showcase {
    padding: 80px 0;
}

.carousel-content {
    padding: 40px 0;
}

.company-title {
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.company-subtitle {
    color: var(--secondary-green);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.company-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.company-features-list li {
    padding: 8px 0;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.company-features-list li i {
    color: var(--primary-green);
}

/* Company Image Styling */
.company-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px 0;
}

.company-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.company-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 168, 120, 0.3);
}

.fishing-operations {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
}

.cold-storage {
    background: linear-gradient(135deg, #50C9C3, #96CEB4);
}

.placeholder-text {
    text-align: center;
}

.placeholder-text i {
    margin-bottom: 15px;
    opacity: 0.8;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-green);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--primary-green);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .carousel-content {
        padding: 20px 0;
    }
    
    .company-title {
        font-size: 2rem;
    }
    
    .company-image {
        margin-top: 30px;
        padding: 10px 0;
    }
    
    .company-image img {
        max-height: 300px;
    }
}

@media (max-width: 767px) {
    .company-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .company-subtitle {
        text-align: center;
    }
    
    .company-features-list {
        text-align: center;
    }
    
    .company-image {
        margin-top: 20px;
    }
    
    .company-image img {
        max-height: 250px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-bg.png');
    opacity: 0.03;
    z-index: 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    height: 100%;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-green);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 2rem;
    color: var(--light-green);
    margin-bottom: 1rem;
    display: block;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-info {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.2rem;
}

.testimonial-name {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.testimonial-position {
    color: var(--secondary-green);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 767px) {
    .testimonial-card {
        margin-bottom: 2rem;
    }
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, #2d5a3d 0%, #1a4d2e 50%, #0f3d23 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"&gt;&lt;defs&gt;&lt;pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"&gt;&lt;circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/&gt;&lt;circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/&gt;&lt;circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/&gt;&lt;circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/&gt;&lt;circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/&gt;&lt;/pattern&gt;&lt;/defs&gt;&lt;rect width="100" height="100" fill="url(%23grain)"/&gt;&lt;/svg&gt;');
    opacity: 0.4;
    z-index: 0;
}

.statistics-section h2 {
    color: var(--white);
    position: relative;
    z-index: 1;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.stat-card {
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 1;
    color: var(--white);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
    color: var(--white);
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
    color: var(--white);
}

@media (max-width: 767px) {
    .statistics-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-card {
        padding: 2rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stat-icon {
        font-size: 3rem;
    }
}

/* Compact Footer Styles */
.footer-custom {
    background: linear-gradient(135deg, var(--dark-green), var(--accent-green));
    color: var(--white);
    position: relative;
    font-size: 0.9rem;
}

.footer-brand {
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-links-compact .list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
    position: relative;
}

.footer-links-compact .list-inline-item:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -0.5rem;
    color: var(--light-green);
    opacity: 0.7;
}

.footer-links-compact a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.85rem;
}

.footer-links-compact a:hover {
    color: var(--light-green);
}

.footer-contact-compact {
    font-size: 0.85rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.social-icon-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-green);
    color: var(--white);
    margin-left: 8px;
    transition: all 0.2s ease;
}

.social-icon-small:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .footer-contact-compact {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .social-icon-small {
        margin: 0 4px;
    }
}

/* Contact Option Styles */
.contact-option {
    background-color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-option .btn {
    transition: all 0.3s ease;
}

.contact-option:hover .btn-primary {
    background: var(--dark-green) !important;
}

.contact-option:hover .btn-success {
    background: #128c7e !important;
}

.contact-option i.fa-envelope {
    color: var(--primary-green);
}



.nowrap { white-space: nowrap; }

/* Image Fade Animation */
.image-fade-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
}

.fade-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    padding: 20px;
}

.fade-image.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .image-fade-container {
        height: 300px;
    }
}

/* Cold Storage Carousel */
#coldStorageCarousel {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#coldStorageCarousel .carousel-item {
    height: 500px;
    background-color: #f8f9fa;
}

#coldStorageCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

#coldStorageCarousel .carousel-control-prev,
#coldStorageCarousel .carousel-control-next {
    width: 10%;
    background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    #coldStorageCarousel .carousel-item {
        height: 300px;
    }
}

/* Language Switcher */
.language-form {
    margin: 0;
}

.language-form button.dropdown-item {
    width: 100%;
    text-align: left;
    padding: 0.5rem 1rem;
    border: none;
    background: none;
    cursor: pointer;
}

.language-form button.dropdown-item:hover {
    background-color: #f8f9fa;
}

.language-form button.dropdown-item.active {
    background-color: #e9ecef;
    color: #000;
}

#languageDropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#languageDropdown i {
    font-size: 1.1rem;
}

.dropdown-menu-end {
    right: 0;
    left: auto;
}

/* Email Modal Styles */
#emailModal .modal-dialog {
    max-width: 600px;
}

#emailModal .modal-content {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#emailModal .modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem 1.5rem 1rem;
}

#emailModal .modal-body {
    padding: 1.5rem;
}

#emailModal .modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.5rem 1.5rem;
}

#selectedEmail {
    word-wrap: break-word;
    word-break: break-all;
    max-width: 100%;
    overflow-wrap: break-word;
    hyphens: auto;
    background-color: #f8f9fa;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    font-size: 0.9rem;
    line-height: 1.4;
}

.email-info h6 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

#emailModal .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#emailModal .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    #emailModal .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    #emailModal .modal-body {
        padding: 1rem;
    }
    
    #emailModal .modal-header,
    #emailModal .modal-footer {
        padding: 1rem;
    }
    
    #selectedEmail {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
}

/* Email Dropdown Styles */
.contact-option .dropdown {
    position: relative;
}

.contact-option .dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
    z-index: 1050;
    margin-top: 0.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.contact-option .dropdown-menu.show {
    display: block;
    animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-option .dropdown-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.2s ease;
}

.contact-option .dropdown-item:last-child {
    border-bottom: none;
}

.contact-option .dropdown-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.contact-option .dropdown-divider {
    margin: 0.5rem 0;
    border-color: #e9ecef;
}

/* Ensure dropdown doesn't overlap with footer */
.contact-option .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform-origin: top;
}

/* Mobile adjustments for dropdown */
@media (max-width: 768px) {
    .contact-option .dropdown-menu {
        max-height: 250px;
        font-size: 0.9rem;
    }
    
    .contact-option .dropdown-item {
        padding: 0.6rem 0.8rem;
    }
} </pre></body></html>