:root {
    --primary-color: #1a4314; 
    
    --secondary-color: #ffc90e;
    
    --hero-color: #d11e1e;
    
    --text-color: #333333; 
    
    --white: #ffffff;
    --shadow-light: rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
    
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; 
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}









/* ------------------------------------------------------------------ */
/* 🚀 PROFESSIONAL NAVIGATION BAR STYLES */
/* ------------------------------------------------------------------ */

.navbar {
            background-color: var(--white);
            box-shadow: 0 4px 10px var(--shadow-light);
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            transition: background-color 0.3s ease;
        }
        .navbar-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2px 20px;
            position: relative;
        }
        .logo {
            display: flex;
            align-items: center;
            cursor: pointer;
            margin-top: 15px;
            text-decoration: none;
        }
        .logo img {
            width: 120px;
            height: 60px;
            object-fit: contain;
            flex-shrink: 0;
        }
        /* Navigation links */
        .nav-links {
            list-style: none;
            display: flex;
            gap: 30px;
            margin: 0;
            padding: 0;
            align-items: center;
        }
        .nav-links li {
            display: block;
        }
        .nav-links a {
            color: var(--text-color);
            font-weight: 500;
            text-decoration: none;
            padding: 5px 0;
            position: relative;
            transition: color 0.3s ease;
        }
        .nav-links a:hover,
        .nav-links a:focus {
            color: var(--primary-color);
            outline: none;
        }
        /* CTA Button */
        .btn-nav-cta {
            background-color: var(--secondary-color);
            color: var(--text-color);
            border: none;
            padding: 10px 20px;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease, box-shadow 0.3s ease,
                transform 0.3s ease;
        }
        .btn-nav-cta:hover {
            background-color: var(--hero-color);
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(255, 0, 0, 0.15);
            color: #fff;
        }
        .btn-nav-cta:focus {
            background-color: var(--primary-color);
            outline: 2px solid var(--hero-color);
            outline-offset: 2px;
        }
        /* Mobile menu toggle (hamburger) - hidden on desktop */
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: var(--text-color);
        }

        /* Responsive styles */
       @media (max-width: 768px) {
    .navbar-content {
        position: relative;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--white);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out, padding 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 9999; 
        padding: 0;
    }
    .nav-links.active {
        max-height: 1000px;
        padding: 20px 0;
    }
    .nav-links li {
        text-align: center;
        padding: 10px 0;
    }
    .btn-nav-cta {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}







/* ------------------------------------------------------------------ */
/* 🚀 Hero Section STYLES */
/* ------------------------------------------------------------------ */

.hero-section {
    background: url('./hero-oil-droplets.jpg')center bottom/cover no-repeat;
    position: relative;
     min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

/* Droplet Styling */
.oil-droplet-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem; 
}
/* --- Keyframe Animation Definition --- */
@keyframes floatDrop {
    0%, 100% {
        /* Start and End position (default) */
        transform: translateY(0);
    }
    50% {
        /* Middle position (moves up 10 pixels) */
        transform: translateY(-10px); 
    }
}

/* --- Container Styling (Existing) --- */
.oil-droplet-container {
    display: flex;
    justify-content: center;
    animation: floatDrop 2s ease-in-out infinite; 
}


/* --- Icon Styling (Assuming you have one, just for completeness) --- */
.oil-drop-icon {
    font-size: 2.5rem;
    color: #ffc90e; 
}

.oil-drop-icon {
    font-size: 4em; 
    color: var(--secondary-color);
    filter: drop-shadow(0 4px 5px rgba(255, 215, 0, 0.4));
}

.hero-title {
    font-size: 4.5em;
    font-weight: 800;
    color: var(--hero-color);
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 5px; 
}

.hero-title .yellow-text {
    color: var(--secondary-color);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2em;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

/* Feature Bubbles (Middle of Hero) */
.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.feature-bubble {
    padding: 8px 15px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
    color: var(--text-color);
    background-color: rgba(76, 175, 80, 0.05);
}

/* CTA Buttons (Bottom of Hero) */
.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-hero-primary {
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: 2px solid var(--secondary-color);
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 700;
    border-radius: 30px;
}

.btn-hero-primary:hover {
    background-color: #e6c200;
}

.btn-hero-secondary {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 700;
    border-radius: 30px;
}

.btn-hero-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

@media (max-width: 992px) {
    .hero-section {
        height: 520px;
    }
    .hero-title {
        font-size: 3.8em;
        letter-spacing: normal;
    }
    .hero-subtitle {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px; 
        align-items: center; 
        width: 100%;
        padding: 0 20px; 
    }

    .btn-hero-primary, 
    .btn-hero-secondary {
        width: 90%; 
        max-width: 500px; 
        text-align: center;
        padding: 14px 25px; 
        font-size: 1em;
    }

}

@media (max-width: 480px) {
    .hero-section {
        height: 420px;
    }
    .hero-title {
        font-size: 2.2em;
    }
    .hero-subtitle {
        font-size: 0.9em;
        margin-bottom: 20px;
    }
    .hero-cta-buttons {
        gap: 10px;
    }
}







/* ------------------------------------------------------------------ */
/* 🚀 Product Section Styling */
/* ------------------------------------------------------------------ */


.product-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: left;
    color: #fff; 
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7); 
}

.available-sizes-text {
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.2;
}

.cooking-text {
    font-size: 1.1em;
    font-weight: 400;
    margin-bottom: 0;
}



.empty-card {
    visibility: hidden; 
    border: none;
    box-shadow: none;
    padding: 0;
}

.products-footnote {
    font-size: 0.9em;
    color: var(--dark-gray);
    margin-bottom: 30px;
    padding-top: 20px;
}

.btn-primary-cta {
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: none;
    padding: 15px 35px;
    font-weight: 700;
    font-size: 1em;
    border-radius: 8px; 
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary-cta:hover {
    background-color: #e6c200;
}

@media (max-width: 1100px) {
    .product-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .empty-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .product-range-section {
        padding: 50px 0;
    }
    .product-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px;
    }
    .product-image-card {
        margin-bottom: 30px;
    }
    .available-sizes-text {
        font-size: 1.4em;
    }
    .btn-primary-cta {
        width: 80%;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2em; 
    }
    .section-subtitle {
        font-size: 0.9em; 
        margin-bottom: 30px; 
    }
    
    /* --- PRODUCT GRID (Assuming there's a product section) --- */
    .product-cards-grid {
        grid-template-columns: 1fr; 
    }
    .available-sizes-text {
        font-size: 1.2em; 
    }

    /* --- CTA BUTTON (The Final Fix) --- */
    .center-button-wrapper {
        display: flex;
        justify-content: center; 
        word-break: break-word;
        margin-bottom: 50px; 
        padding: 0 15px; 
    }
    
    .btn-primary-cta {
        white-space: nowrap; 
        text-decoration: none;
        width: auto;
        max-width: 100%; 
        font-size: 0.80em;
        padding: 10px 15px;
        
        text-align: center; 
    }
}

/* --- Global Button Styling Assumption (for context, if missing) --- */
.btn-primary-cta {
    display: inline-block; 
    padding: 15px 30px; 
    white-space: nowrap; 
    text-decoration: none;
}




.product-image-card:hover .main-product-image {
    transform: scale(1.01); 
}

.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
    max-width: 1200px;
    margin: 0 auto 60px auto;
    align-items: flex-start;
    position: relative; 
    z-index: 5;      
}



/* --- Typography (Titles) --- */
.section-title {
    font-size: 3em;
    font-weight: 800;
    color: var(--hero-color);
    margin-bottom: 15px;
}
.section-title .yellow-text {
    color: var(--secondary-color);
}
.section-subtitle {
    font-size: 1.15em;
    color: var(--dark-gray);
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}


/* --- Product Cards Grid (Staggered Layout Container) --- */
.product-range-section {
    background-color: #f7faf5;
    padding-top: 80px;
    text-align: center;
    overflow-x: hidden;
    position: relative;

}
.product-cards-flow {
    display: flex;
    flex-direction: column;
    max-width: 900px; 
    margin: 0 auto 100px auto;
    position: relative;
    z-index: 99;
    padding: 0 20px;
}
.product-card {
    background-color: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease-out; 
    height: 100%;
    overflow: visible;
    position: relative;
    z-index: 10;
    width: 45%; 
    max-width: 400px;
    margin-bottom: 60px;
    border-radius: 20px; 
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(246, 255, 124, 0.15);
}

/* Zigzag alignment (Kept) */
.product-cards-flow .product-card:nth-child(odd) {
    align-self: flex-start;
}
.product-cards-flow .product-card:nth-child(even) {
    align-self: flex-end;
}

/* Image Wrapper (Container for the product image) */
.product-image-wrapper {
    height: 400px;
    width: 100%;
    background-color: #fcfcfc; /* A very light off-white background */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px; /* Increased inner padding */
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

/* Image: Fit with subtle shadow and neat corners */
.product-image {
    display: block;
    max-width: 95%; 
    max-height: 95%; 
    width: auto; 
    height: auto;
    object-fit: contain; 
    background: #ffffff; 
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
    margin: auto;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.card-details {
    padding: 10px;
    flex-grow: 1;
    width: 100%;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; 
}

.card-title {
    font-size: 2em;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.card-type {
    font-size: 0.9em;
    color: var(--secondary-color); 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px; 
}

.card-description {
    font-size: 1.05em;
    color: #444;
    line-height: 1.6; 
    margin-bottom: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .product-cards-flow {
        max-width: 100%;
    }
    .product-card {
        width: 95%;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        align-self: center !important;
    }
    .product-image-wrapper {
        height: 320px;
    }
    .card-title {
        font-size: 1.8em;
    }
}


.js-animate-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.js-animate-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.section-title, .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    
}



/* --- Responsive Adjustments for Flow --- */
@media (max-width: 768px) {
    .product-card {
        width: 60%;
    }
}

@media (max-width: 550px) {
    .product-card {
        width: 90%;
        align-self: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* --- SVG Zig-Zag Connector Line Styles (UPDATED) --- */
.connector-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1; 
    overflow: visible; 
}

.connector-path {
    stroke: var(--secondary-color);
    stroke-width: 3px;
    stroke-dasharray: 8 8;
    fill: none;
    opacity: 0.8;
    animation: dash-flow 2s linear infinite;
}

/* 🌟 Keyframes for the Moving Dotted Line 🌟 */
@keyframes dash-flow {
    to {
          stroke-dashoffset: -16; 
    }
}











/* ------------------------------------------------------------------ */
/* 🚀 Quality Feature Block Container  */
/* ------------------------------------------------------------------ */

.quality-feature-block {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
    align-items: center;
    gap: 40px;
}

/* --- Features List Container (Left Side) --- */
.features-list {
    flex: 1; 
    display: flex;
    flex-direction: column;
    gap: 20px; /* Spacing between list items */
}

/* --- Individual Feature Card --- */
.feature-card {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    background-color: white; 
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(255, 225, 0, 0.05); 
    transition: box-shadow 0.3s ease;
    color: var(--primary-color);
    border: 1px solid  rgba(0, 0, 0, 0.05);
    text-align: left;
}

.feature-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

/* --- Icon Styling --- */
.feature-icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e5f5e5; 
    font-size: 24px;
    color: var(--primary-color, #4CAF50); 
    font-weight: bold;
}

.icon-shield .feature-icon { 
    background-color: #e6f0e6; 
    color: #589b5c; 
} 
.icon-key .feature-icon { 
    background-color: #f5f2e5; 
    color: #bcae4c; 
} 

/* --- Text Content within the Card --- */
.feature-content h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 700;
     color: var(--primary-color);
}

.feature-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark-gray);
}

/* --- Image Container (Right Side) --- */
.quality-image-container {
    flex: 1; 
    min-width: 400px; 
}

 .quality-image {
    width: 100%;
    height: auto; 
    display: block;
    border-radius: 12px;
    object-fit: cover; 
    box-shadow: 0 10px 30px rgba(221, 255, 0, 0.1); 
    
    /* ADD: Transition for smooth effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quality-image:hover {
    /* Slightly increase size (scale up) */
    transform: scale(1.03); 
    
    /* Make the shadow larger and/or darker */
    box-shadow: 0 10px 35px rgb(254, 239, 155); 
    
    /* Ensure the cursor changes to indicate interactivity */
    cursor: pointer; 
}

/* --- Responsive Adjustments --- */
@media (max-width: 800px) {
    .quality-feature-block {
        flex-direction: column;
        gap: 30px;
        margin: 30px auto;
    }

    .quality-image-container {
        min-width: 100%;
        padding: 0 10px;
    }
}


/* Container for the entire section */
.quality-stats-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px 20px;
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Card Styling */
.stats-card {
    flex: 1;
    max-width: 250px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 15px;
    
    background: linear-gradient(135deg, #2b7042 0%, #4CAF50 100%);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px); 
}

.stat-number {
    font-family: 'Montserrat', sans-serif; 
    font-size: 3.5em;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
    margin: 0 0 10px 0;
}

/* Styling for the white text labels */
.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}




/* --- Other CSS remains the same --- */


.quality-range-section {
    padding-top: 50px; 
    padding-bottom: 50px; 
    position: relative; 
}
.quality-promise-section {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
    width: 100%;
}

.quality-promise-section .section-title {
    color: var(--hero-color);
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
}

.quality-promise-section .primary-color-text {
    color: var(--primary-color);
}

.quality-promise-section .section-subtitle {
    font-size: 1.1em;
    color: var(--dark-gray);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Main Card containing the diagram */
.refining-process-card {
    background-color: #f7faf5;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 1100px;
    margin: 0 auto;
}

.process-card-title {
    font-size: 1.8em;
    font-weight: 600;
    color: var(--hero-color);
    margin-bottom: 30px;
}

.process-diagram-container {
    padding: 20px;
}

.soybean-oil-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--hero-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.soybean-oil-title .process-icon {
    color: var(--secondary-color);
    font-size: 1.2em;
}

/* Styling the image wrapper */
.diagram-image-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-diagram-image {
    width: 100%;
    height: auto;
    display: block;
}



/* --- Responsive Adjustments for Quality Section --- */
@media (max-width: 992px) {
    .quality-promise-section {
        padding: 60px 0;
    }
    .process-card-title {
        font-size: 1.5em;
    }
    .soybean-oil-title {
        font-size: 1.8em;
    }
    .refining-process-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .quality-promise-section .section-subtitle {
        font-size: 0.9em;
        margin-bottom: 30px;
        /* flex-direction: column; */
    }
    .soybean-oil-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
}


/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
    .quality-stats-section {
        gap: 20px;
        padding: 40px 15px;
    }
    .stats-card {
        max-width: 200px;
        height: 160px;
    }
    .stat-number {
        font-size: 3em;
    }
    .stat-label {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .quality-stats-section {
        flex-wrap: wrap; 
        gap: 15px;
    }
    .stats-card {
        flex: 1 1 calc(50% - 15px); /* Two cards per row with gap */
        max-width: none;
        height: 150px;
    }
    .stat-number {
        font-size: 2.5em;
    }
}

@media (max-width: 480px) {
    .quality-stats-section {
        /* Switch to a single column on mobile phones */
        flex-direction: column; 
        gap: 15px;
    }
    .stats-card {
        width: 100%;
        height: 120px;
    }
    .stat-number {
        font-size: 2.2em;
    }
    .stat-label {
        font-size: 0.9em;
    }
}










/* ------------------------------------------------------------------ */
/* 🚀 About Section Specific Styles  */
/* ------------------------------------------------------------------ */
.about-section {
    padding: 80px 0; 
    background-color: var(--light-accent); 
    font-family: Arial, sans-serif; 
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px; 
}

.about-title {
    font-size: 2.8em;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.yellow-text {
    color: var(--secondary-color); 
}

.about-subtitle {
    font-size: 1.15em;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
}

/* ------------------------------------------- */
/* 2. CARD LAYOUT AND STYLING */
/* ------------------------------------------- */
.about-cards-wrapper {
    display: flex;
    gap: 30px; 
    margin-bottom: 40px;
    align-items: stretch; 
}

.about-card {
    flex: 1 1 50%; 
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    border-top: 5px solid var(--secondary-color); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 1.2em;
    color: var(--card-bg);
}

.vision-icon {
    background-color: var(--primary-color);
}

.parent-icon {
    background-color: var(--secondary-color);
}

.card-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.card-body p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 15px;
}

.card-body strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* --- Parent Company List Styling (Specific for the second card) --- */
.parent-company-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 10px;
    margin-bottom: 15px;
}

.parent-company-list li {
    font-size: 0.95em;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.parent-company-list li::before {
    content: '\2022'; /* Bullet point icon */
    color: var(--secondary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

/* ------------------------------------------- */
/* 3. PACKWORK BANNER */
/* ------------------------------------------- */
.packwork-banner {
    display: flex;
    align-items: center;
    background-color: var(--primary-color); /* Dark Green Background */
    color: white;
    padding: 25px 30px;
    border-radius: 10px;
    gap: 20px;
    /* Box-shadow for prominence */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-icon-wrapper {
    font-size: 2em;
    color: var(--secondary-color);
}

.banner-text {
    line-height: 1.5;
    font-size: 1.05em;
}

.banner-text strong {
    font-size: 1.2em;
    display: block; 
    margin-bottom: 3px;
    color: var(--secondary-color);
}


/* ------------------------------------------- */
/* 4. RESPONSIVE DESIGN */
/* ------------------------------------------- */
@media (max-width: 992px) {
    .about-cards-wrapper {
        flex-direction: column; 
        gap: 25px;
    }

    .about-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .about-title {
        font-size: 2em;
    }
    
    .about-section {
        padding: 50px 0;
    }

    .packwork-banner {
        flex-direction: column;
        text-align: center;
    }

    .card-title {
        font-size: 1.3em;
    }
}

/* Add this to your existing CSS */

.tin-container-image-wrapper {
    margin: 25px 0 15px 0;
    text-align: center; 
    overflow: hidden; 
    border-radius: 8px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    background-color: #f7f7f7; 
    padding: 10px; 
}

.tin-container-img {
    max-width: 80%; 
    height: auto; 
    display: block; 
    margin: 0 auto; 
    border-radius: 5px; 
    object-fit: contain;
    max-height: 250px; 
}

.image-caption {
    font-size: 0.85em;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
    opacity: 0.8;
}

/* Optional: Adjust card padding if the image feels too cramped */
.about-card.parent-company-card {
    padding-bottom: 30px;
}

/* Responsive adjustment for image on smaller screens */
@media (max-width: 600px) {
    .tin-container-img {
        max-width: 90%; 
        max-height: 200px;
    }
    .tin-container-image-wrapper {
        margin: 20px 0 10px 0;
    }
}



/* ------------------------------------------------------------------ */
/* 🚀 Contact Info Card Styling  */
/* ------------------------------------------------------------------ */

.contact-info-card,
.contact-form-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.contact-info-card h3,
.contact-form-card h3 {
    font-size: 1.4em;
    font-weight: 600;
    color: var(--hero-color, #2b5636);
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    margin-right: 15px;
    font-size: 1.2em;
    flex-shrink: 0;
}

/* Location Icon Specifics */
.location-icon {
    background-color: #e5f5e5;
    color: var(--primary-color, #4CAF50);
}


.phone-icon {
    background-color: #fff9e6; 
    color: var(--secondary-color, #FFD700); 
}


.email-icon {
    background-color: #e5f5e5;
    color: var(--primary-color, #4CAF50);
}

.info-details p {
    margin: 0;
    line-height: 1.5;
}

.info-label {
    font-weight: 600;
    color: var(--hero-color, #2b5636);
    margin-bottom: 2px !important;
}

.info-text {
    font-size: 0.95em;
    color: var(--dark-gray);
}

.info-schedule {
    font-size: 0.9em;
    color: var(--primary-color, #4CAF50);
    font-weight: 500;
    margin-top: 5px !important;
}

/* --- Map Styling --- */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0; 
}

.map-header {
    background-color: white;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.map-location-name {
    font-weight: 600;
    color: var(--text-color);
    margin-right: 10px;
}

.map-location-state {
    color: var(--dark-gray);
    margin-right: auto;
}

.view-map-link,
.directions-link {
    font-size: 0.85em;
    color: var(--primary-color, #4CAF50);
    text-decoration: none;
    margin-left: 15px;
    font-weight: 500;
}

.actual-map-image {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
}


/* --- Contact Form Styling --- */
.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 0.9em;
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 5px;
    margin-top: 15px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    padding: 12px;
    border: 1px solid var(--medium-gray, #eee);
    border-radius: 5px;
    font-size: 1em;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color, #4CAF50);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 20px;
}

/* Send Message Button */
.btn-send-message {
    background-color: var(--secondary-color, #FFD700);
    color: var(--text-color);
    border: none;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 1.1em;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-send-message:hover {
    background-color: #e6c200;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .contact-content-wrapper {
        flex-direction: column;
    }
    .contact-info-column,
    .contact-form-column {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2em;
    }
    .contact-info-card,
    .contact-form-card {
        padding: 20px;
    }
}






/* ------------------------------------------------------------------ */
/* 🚀 Footer Section Styling */
/* ------------------------------------------------------------------ */

/* --- Global & Base Section Styles --- */
.footer-section {
    background-color: #388e3c; 
    color: white; /* Base text color for headings/links */
    padding-top: 50px;
    /* Optional: Subtle box-shadow for depth */
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
}

/* --- Column Layout --- */
.footer-col {
    padding: 0 15px;
    max-width: 300px; 
}

.footer-col-brand {
    max-width: 400px; 
    display: flex;
    flex-direction: column;
}

/* --- Logo Box (Preserving the Visual Identity from Image) --- */
.footer-col-brand .logo {
    background-color: #79a87d; 
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: inline-block; 
    width: fit-content;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.footer-col-brand img {
    width: 180px; 
    height: auto;
    border-radius: initial; 
}

.footer-tagline {
    font-size: 0.95em;
    line-height: 1.5;
    color: #c8e6c9;
    margin: 0;
}

/* --- Headings (Strong Visual Hierarchy) --- */
.footer-heading {
    font-size: 1.25em; 
    font-weight: 700;
    color: white;
    margin-bottom: 25px; 
    letter-spacing: 0.5px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    text-decoration: none;
    color: white; 
    font-size: 1em; 
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: #FFD700; 
    text-decoration: underline; 
}

/* --- Contact Us (Improved Readability) --- */
.footer-col-contact p {
    font-size: 1em;
    line-height: 1.8; 
    color: white; 
    margin: 0 0 10px 0; 
}

.contact-email, 
.contact-phone {
    font-weight: 500;
    color: #FFD700; 
}

/* --- Bottom Section (Refined Copyright) --- */
.footer-bottom {
    padding: 20px 0;
    background-color: #388e3c;
}

.footer-separator {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.5); 
    margin-bottom: 20px;
}

.footer-copyright {
    text-align: center;
    font-size: 0.9em; 
    color: rgba(255, 255, 255, 0.85); 
    margin: 0;
}




/* ------------------------------------------- */
/* 4. RESPONSIVE DESIGN FOR FOOTER */
/* ------------------------------------------- */

/* Tablet and Smaller Desktop Screens (Max Width 992px) */
@media (max-width: 992px) {
    .footer-content-wrapper {
        flex-wrap: wrap; 
        justify-content: flex-start;
        gap: 30px; 
    }

    .footer-col {
        flex-basis: calc(50% - 30px); 
        max-width: none; 
        padding: 0 15px 0 0; 
    }

    .footer-col-brand {
        flex-basis: 100%; 
        max-width: none;
        padding: 0 0 15px 0; 
        align-items: center;
        text-align: center;
    }
    
    .footer-col-brand .logo {
        margin: 0 auto 25px auto; 
    }

    .footer-tagline {
        text-align: center;
        padding: 0 10%; 
    }

    .footer-heading {
        text-align: left; 
    }
}

@media (max-width: 600px) {
    .footer-content-wrapper {
        flex-direction: column;
        gap: 40px; 
        padding: 0 20px 30px 20px;
    }

    .footer-col,
    .footer-col-brand {
        flex-basis: 100%;
        padding: 0;
        text-align: left;
    }
    
    .footer-col-brand {
        align-items: flex-start; 
        text-align: left;
    }

    .footer-col-brand .logo {
        margin: 0 0 20px 0;
    }

    .footer-tagline {
        text-align: left; 
        padding: 0;
    }
    
    .footer-heading {
        margin-bottom: 15px;
    }
}