/* Food & Beverage Industry Page Styles */

/* Overview Section */
.industry-overview {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.overview-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
}

.overview-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.overview-icon i {
    font-size: 24px;
    color: #fff;
}

.overview-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.solution-icon i {
    font-size: 24px;
    color: #fff;
}

.solution-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.solution-features {
    list-style: none;
    padding: 0;
}

.solution-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-light);
}

.solution-features li:last-child {
    border-bottom: none;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features-grid {
    margin-top: 50px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse .feature-content {
    direction: ltr;
}

.feature-content {
    padding: 20px;
}

.feature-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Integration Section */
.integration-section {
    padding: 80px 0;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.integration-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
}

.integration-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.integration-icon i {
    font-size: 24px;
    color: #fff;
}

.integration-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Technology Solutions Section */
.tech-solutions {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.tech-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25px 25px, rgba(255, 255, 255, 0.1) 2%, transparent 0%),
        radial-gradient(circle at 75px 75px, rgba(255, 255, 255, 0.1) 2%, transparent 0%);
    background-size: 100px 100px;
    opacity: 0.5;
    pointer-events: none;
}

.tech-solutions::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.tech-grid {
    position: relative;
    z-index: 1;
}

.tech-solutions .section-header h2 {
    color: #fff;
}

.tech-solutions .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.tech-card:hover .tech-icon {
    transform: scale(1.1);
}

.tech-icon i {
    font-size: 24px;
    color: #fff;
}

.tech-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.tech-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.tech-features li:before {
    content: "→";
    color: #fff;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.tech-features li:hover {
    transform: translateX(5px);
}

.tech-features li:hover:before {
    transform: translateX(3px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-teal);
    border-radius: 2px;
}

.section-header p {
    font-size: 16px;
    color: var(--dark-grey);
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.section-subtitle {
    color: var(--text-dark);
    text-align: center;
    max-width: 800px;
    margin: 1rem auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
    display: block;
    width: 100%;
}

.section-description {
    color: var(--text-dark);
    text-align: center;
    max-width: 800px;
    margin: 1rem auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
    display: block;
    width: 100%;
}

/* Override for sections with dark backgrounds */
.tech-solutions .section-header h2,
.tech-solutions .section-header p,
.tech-solutions .section-subtitle,
.tech-solutions .section-description {
    color: #FFFFFF;
}

.tech-solutions .section-header h2:after {
    background: #FFFFFF;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .overview-grid,
    .solutions-grid,
    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item.reverse {
        direction: ltr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .overview-grid,
    .solutions-grid,
    .integration-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p,
    .section-subtitle,
    .section-description {
        font-size: 14px;
        max-width: 100%;
        padding: 0 20px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-card {
        padding: 25px;
    }
    
    .tech-icon {
        width: 50px;
        height: 50px;
    }
    
    .tech-icon i {
        font-size: 20px;
    }
    
    .tech-card h3 {
        font-size: 20px;
    }
} 