﻿body {
}

h2 {
    font-weight: 300;
    font-size: 3vw;
    padding: 20px 0;
}

p {
    font-size: 1.2vw;
    line-height: 1.7em;
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    transition: all .3s;
    perspective: 900px;
    transform-style: preserve-3d;
}

    .slider .previous, .slider .next {
        font-family: "FontAwesome";
        font-size: 20px;
        position: absolute;
        top: 50%;
        color: white;
        padding: 8px;
        text-decoration: none;
        left: -100px;
        margin-top: -34px;
        transition: all .3s;
        opacity: 0;
        z-index: 10000;
    }

    .slider .next {
        right: -100px;
        content: "\f054";
        left: auto;
    }

    .slider:hover .previous, .slider:hover .next {
        opacity: 1;
    }

    .slider:hover .previous {
        left: 0;
    }

    .slider:hover .next {
        right: 0;
    }

    .slider .slides {
        height: 70%;
    }

.slide {
    padding-bottom: 113%;
    width: 100%;
    text-align: center;
    position: absolute;
    transform: scale(0.5,0.5);
    opacity: 0;
    transition: all .3s;
}

    .slide.yellow {
        background-image: url("/Images/index_bg.jpg");
        color: white;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .slide.blue {
        background-image: url("/Images/index_bg.jpg");
        color: white;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .slide.white {
        background-image: url("/Images/index_bg.jpg");
        color: white;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .slide.red {
        background-image: url("/Images/index_bg.jpg");
        color: white;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .slide.black {
        background-image: url("/Images/index_bg.jpg");
        color: white;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .slide.active {
        z-index: 10;
        left: 0;
        opacity: 1;
        transform: scale(1,1);
    }

    .slide.inactiveLeft {
        left: -100vw;
        z-index: 11;
    }

    .slide.inactiveRight {
        left: 100vw;
        z-index: 11;
    }

    .slide:after {
        content: attr(data-icon);
        font-family: "FontAwesome";
        font-size: 15vw;
        position: absolute;
        bottom: -8vw;
        left: 0;
        opacity: 0.3;
    }

    .slide a {
        color: inherit;
        border: 2px solid;
        padding: 10px;
        font-size: 1.3vw;
        margin-top: -20px;
        display: inline-block;
        transition: all .3s;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
    }

        .slide a:hover {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid transparent;
            text-decoration: none;
            letter-spacing: 2px;
            padding-right: 30px;
        }

        .slide a:after {
            content: " \f105";
            font-family: "FontAwesome";
            position: absolute;
            margin-left: -10px;
            transition: all .3s;
            opacity: 0;
        }

        .slide a:hover:after {
            margin-left: 10px;
            opacity: 1;
        }

.slider .bullets {
    text-align: center;
    position: absolute;
    bottom: 40px;
    width: 100%;
}

    .slider .bullets .bullet {
        position: relative;
        display: inline-block;
        background: rgba(0,0,0,1);
        border-radius: 50%;
        width: 20px;
        height: 20px;
        z-index: 14;
        margin: 0 5px;
        cursor: pointer;
        border: 10px solid transparent;
        transition: all .3s;
    }

        .slider .bullets .bullet.active {
            background: rgba(255,102,0,1);
        }

        .slider .bullets .bullet:hover {
            border: 1px solid rgba(0,0,0,1);
            background: transparent;
        }

.beec-background {
    background-image: url("/Images/index_bg.jpg");
    color: white;
    background-size: contain;
    background-repeat: no-repeat;
}

#beebg {
    background-image: url("/Images/index_bg.jpg");
    background-size: 100% 100%;
    height: 450px;
    width: 95%;
    margin-left: 20px;
    overflow: hidden !important;
    border: 1px solid #ffffff;
    border-radius: 10px;
    /*position: relative;*/
}

.style-video {
    background-color: #d1d1d1;
    padding: 10px;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    width: 95%;
    float: right;
    margin-right: 5px;
    margin-top: 10px;
}

.logo-customer {
    width: 85px;
    height: 85px;
    margin-left: 90px;
}

/*New Home*/
.reasons-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    background: linear-gradient(135deg, #E0C3FC 0%, #8EC5FC 100%);
    /*background: linear-gradient(5deg, #e4fdfb 0%, #10b5aa 100%);*/
}

.reasons-header {
    text-align: center;
    margin-bottom: 50px;
}

.reasons-title {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 15px 0;
}

.reasons-subtitle {
    font-size: 18px;
    color: #4a5568;
    margin: 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reason-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .reason-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .reason-card:hover::before {
        transform: scaleX(1);
    }

    .reason-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
    }

.reason-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.reason-card:hover .reason-icon {
    transform: scale(1.1) rotate(5deg);
}

.pink-bg {
    background: linear-gradient(135deg, #FFE5EC 0%, #FFC4D6 100%);
}

.blue-bg {
    background: linear-gradient(135deg, #D4F1F4 0%, #A8E6CF 100%);
}

.green-bg {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

.reason-icon svg {
    width: 50px;
    height: 50px;
}

.reason-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.reason-desc {
    font-size: 15px;
    color: #718096;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .reasons-title {
        font-size: 30px;
    }

    .reasons-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .reasons-container {
        padding: 40px 20px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reasons-title {
        font-size: 24px;
    }

    .reasons-subtitle {
        font-size: 14px;
    }

    .reason-card {
        padding: 30px 20px;
    }

    .reason-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

        .reason-icon svg {
            width: 40px;
            height: 40px;
        }

    .reason-title {
        font-size: 20px;
    }

    .reason-desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .reasons-title {
        font-size: 20px;
    }

    .reasons-subtitle {
        font-size: 13px;
    }

    .reason-card {
        padding: 25px 15px;
    }
}

.beec-eshop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    /*background: linear-gradient(135deg, #f5f7fa 0%, #e8ebf5 100%);*/
}

.header-section {
    text-align: center;
    margin-bottom: 50px;
}

.main-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.highlight-box {
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 15px 30px;
    background: white;
    border: 2px dashed #cbd5e0;
    border-radius: 8px;
}

.highlight-text {
    margin: 0;
    font-size: 16px;
    color: #2d3748;
    line-height: 1.6;
}

.subtitle {
    font-size: 16px;
    color: #4a5568;
    margin: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
    }

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

    .category-icon svg {
        width: 100%;
        height: 100%;
    }

.category-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 12px 0;
}

.category-desc {
    font-size: 14px;
    color: #1a1c1e;
    line-height: 1.5;
    margin: 0;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 48px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    }

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .main-title {
        font-size: 24px;
    }

    .category-card {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 14px 36px;
        font-size: 14px;
    }
}
.beec-footer {
    /*background: linear-gradient(135deg, #e8eaf6 0%, #f3e5f5 100%);*/
    background-color: #ffffff;
    padding: 40px 20px 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    border-top: 3px solid #667eea;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-column {
    text-align: right;
}

.footer-logo {
    margin-bottom: 10px;
}

.logo-image {
    height: 40px;
    width: auto;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 15px 0;
}

.company-info {
    margin-bottom: 10px;
}

.info-text {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 14px;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

    .footer-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: #667eea;
        transition: width 0.3s ease;
    }

    .footer-link:hover {
        color: #764ba2;
    }

        .footer-link:hover::after {
            width: 100%;
        }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.contact-text {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 8px;
}

    .contact-link:hover {
        color: #667eea;
        background: rgba(102, 126, 234, 0.1);
        transform: translateX(-5px);
    }

.contact-icon {
    width: 18px;
    height: 18px;
    color: #667eea;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-column {
        text-align: left;
    }

    .contact-info {
        align-items: flex-start;
    }

    .contact-details {
        align-items: flex-start;
    }

    .contact-link:hover {
        transform: translateX(5px);
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .beec-footer {
        padding: 30px 15px 20px;
    }

    .footer-title {
        font-size: 18px;
    }

    .info-text,
    .contact-text,
    .contact-link,
    .footer-link {
        font-size: 13px;
    }

    .logo-image {
        height: 35px;
    }
}