
:root {
    --primary-color: #E61E15;
    --secondary-color: #333333;
    --dark-bg: #1a1a1a;
    --light-gray: #f8f8f8;
    --accent-red-light: #ff4d4d;
    --accent-red-dark: #c4180f;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
}

.hero-slide {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: blur(0.8);

}

.hero-slide-1::before {
    background: url('../images/a2.jpg') center/cover;
}

.hero-slide-2::before {
    background: url('../images/a3.jpg') bottom/cover;
}

.hero-slide-3::before {
    background: url('../images/a4.jpg') center/cover;
}

.carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border: 2px solid transparent!important;
    transition: all 0.3s;
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--primary-color);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-btn:hover {
    background-color: var(--accent-red-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(230, 30, 21, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel animation */
.carousel-item .hero-content {
    animation: fadeInUp 0.8s ease;
}

/* Hero Responsive */
@media (max-width: 991px) {
    .hero-slide {
        min-height: 500px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    .carousel-control-prev {
        left: 15px;
    }
    .carousel-control-next {
        right: 15px;
    }
    /* Stats Responsive */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        min-height: 400px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    /* Stats Responsive */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .stat-item {
        padding: 20px 15px;
    }
    .stat-number {
        font-size: 2rem;
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-header {
    margin-bottom: 50px;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: #fff;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

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

.product-image {
    width: 100%;
    background-color: #f0f0f0;
}

.product-content {
    padding: 25px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}
.product-title a{
    text-decoration: none;
    color: #333;
}
.product-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.product-specs {
    margin-bottom: 20px;
}

.product-specs span {
    display: inline-block;
    background-color: #f5f5f5;
    padding: 5px 12px;
    margin-right: 10px;
    margin-bottom: 8px;
    border-radius: 3px;
    font-size: 0.85rem;
    color: #555;
}

.product-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.product-link:hover {
    color: var(--accent-red-dark);
}

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

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(230, 30, 21, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    font-family: 'Arial Black', Arial, sans-serif;
    letter-spacing: -1px;
}

.stat-number.animate {
    animation: countPulse 0.3s ease-in-out;
}

@keyframes countPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.stat-label {
    color: #666;
    margin-top: 10px;
}

/* Why Choose Section */
.why-section {
    padding: 80px 0;
    background-color: #fff;
}

.why-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    transition: all 0.3s;
    background: #fff;
    border: 1px solid #eee;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-red-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.why-icon i {
    font-size: 2rem;
    color: #fff;
}

.why-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.why-card p {
    color: #666;
    line-height: 1.7;
}
/* Swiper Brand Partners Section */
.brand-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.brand-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            linear-gradient(180deg, rgba(20, 25, 35, 0.92) 0%, rgba(30, 40, 55, 0.88) 100%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23161a20" width="1200" height="600"/><g opacity="0.3"><path d="M0 400 Q100 350 200 380 T400 360 T600 390 T800 370 T1000 385 T1200 360 V600 H0Z" fill="%232a3040"/><circle cx="150" cy="350" r="80" fill="%23354050" opacity="0.5"/><circle cx="400" cy="320" r="60" fill="%23405060" opacity="0.4"/><rect x="600" y="300" width="200" height="150" fill="%23384555" opacity="0.4"/><path d="M800 400 L900 300 L1000 400 Z" fill="%23405060" opacity="0.3"/><ellipse cx="1000" cy="350" rx="100" ry="50" fill="%23354050" opacity="0.5"/></g></svg>');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

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

.brandSwiper {
    width: 100%;
    padding-bottom: 50px;
    padding-top: 20px;
}

.brandSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.brand-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    min-width: 140px;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand-card img{width: 100%;}
.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 50px;
    height: 50px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-line {
    width: 30px;
    height: 3px;
    background: #003591;
    border-radius: 2px;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #003591;
    letter-spacing: 1px;
}

.brand-name.supply {
    color: #333;
}

.brand-text-only {
    justify-content: center;
    width: 100%;
}

.brand-text-only .brand-name {
    text-align: center;
    font-size: 16px;
    letter-spacing: 2px;
}

.brand-name .blue {
    color: #003591;
}

.brand-name .red {
    color: #d40000;
}

.brand-name .ae {
    background: linear-gradient(135deg, #0078C6, #00A878);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-name .ecom {
    color: #333;
}

.brand-name sup {
    font-size: 10px;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet:hover {
    background: #E61E15;
}

.swiper-pagination-bullet-active {
    background: #E61E15 !important;
    border-color: #E61E15;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 991px) {
    .brand-card {
        padding: 20px 15px;
        min-height: 90px;
        min-width: 120px;
    }

    .brand-name {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .brand-section {
        padding: 40px 0;
    }

    .brandSwiper .swiper-slide {
        gap: 8px;
    }

    .brand-card {
        margin: 0 4px;
        padding: 15px 10px;
        min-height: 80px;
        min-width: 100px;
    }

    .brand-logo {
        gap: 8px;
    }

    .brand-icon {
        width: 35px;
        height: 35px;
    }

    .brand-text-only .brand-name {
        font-size: 12px;
    }
}
/* Solutions Section */
.solutions-section {
    padding: 80px 0;
    background: url("../images/a5.jpg")no-repeat center center fixed;
    color: #fff;
    background-size: cover;
}

.solutions-section .section-title {
    color: #fff;
}

.solutions-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.solution-card {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.solution-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.solution-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.solution-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.solution-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.case-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

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

.case-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #ddd;
}

.case-content {
    padding: 25px;
}

.case-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}
.case-title a{
    color: #333;
    text-decoration: none;
}
.case-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.case-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.case-link:hover {
    color: var(--accent-red-dark);
}

/* Partners Section */
.partners-section {
    padding: 50px 0;
    background-color: #fff;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.partner-logo {
    width: 120px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 600;
    transition: all 0.3s;
}

.partner-logo:hover {
    background: var(--primary-color);
    color: #fff;
}

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

.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.news-image {
    width: 100%;
    background-color: #ddd;
}

.news-content {
    padding: 25px;
}

.news-date {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.5;
}
.news-title a{
    color: #333;
    text-decoration: none;
}
.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.news-link:hover {
    color: var(--accent-red-dark);
}


/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255,255,255,0.5);
}


/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .navbar-nav {
        padding: 20px 0;
    }

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .nav-actions {
        position: absolute;
        right: 60px;
        top: 15px;
    }

    .search-box {
        position: fixed;
        top: 70px;
        left: 15px;
        right: 15px;
        width: auto;
    }

    .btn-quote.ms-3 {
        margin-left: 0 !important;
        margin-top: 15px;
        display: block;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        right: 50px;
    }

    .lang-dropdown .nav-link span {
        display: none;
    }
    .stat-number{ font-size: 2rem;}
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .about-text h2{font-size: 1.4rem;}
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}
