@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;800;900&display=swap');

body {
    margin: 0;
    font-family: 'Rubik', sans-serif;
    overflow-x: hidden; 
}

.slider-section {
    width: 100%;
    height: 400px;
    background: linear-gradient(91.33deg, #3ABA76 0.77%, #FFAB47 99.57%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slider-section-container {
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.info-content {
    flex: 0 0 522px;
}

.info-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.info-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.info-buttons {
    display: flex;
    gap: 22px;
}

.info-btn {
    width: 250px;
    height: 65px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 5px 11.2px rgba(0, 0, 0, 0.06);
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    transition: background 0.3s ease;
}

.info-btn:hover {
    color: whitesmoke;
}

.stats-card {
    width: 562px;
    height: 227px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 5px 11.2px rgba(0, 0, 0, 0.06);
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 90%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 30px; 
    line-height: 1;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
}

@media (max-width: 1100px) {
    .slider-section { height: auto; padding: 50px 0; }
    .slider-section-container { flex-direction: column; gap: 40px; }
    .info-content { flex: 1; text-align: center; }
    .info-buttons { justify-content: center; }
}

@media (max-width: 600px) {
    .info-title { font-size: 32px; }
    .info-buttons { flex-direction: column; align-items: center; }
    .stats-card { width: 100%; height: auto; padding: 20px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}


.corporate-intro-section {
    padding: 100px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #FFFFFF;
}

.corporate-intro-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
}

.corporate-text-box {
    flex: 0 0 598px;
}

.corporate-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 1.2;
    color: #333333;
    margin-bottom: 25px;
}

.corporate-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #333333;
    text-align: justify;
}

.corporate-image-box {
    flex: 0 0 520px;
    height: 252px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.05);
}

.corporate-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .corporate-intro-section {
        padding: 60px 0;
    }
    .corporate-intro-container {
        flex-direction: column;
        align-items: center;
    }
    .corporate-text-box {
        flex: 1;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    .corporate-image-box {
        flex: 0 0 auto;
        width: 100%;
        max-width: 520px;
    }
}

.corporate-contact-wrap .contact-float-inline {
    position: fixed !important;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
}

.references-section {
    padding: 60px 0;
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
}

.references-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 30px 20px;
}

.references-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.references-more {
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
}
.references-more:hover { color: #37BA77; }

.references-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 20px;
    scrollbar-width: none;
}

.references-track::-webkit-scrollbar { display: none; }

.reference-card {
    flex: 0 0 200px;
    height: 191px;
    border: 1px solid #E9E9E9;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
}

.ref-logo-box {
    height: 100px;
    display: flex;
    align-items: center;
}

.ref-logo-box img {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
}

@media (max-width: 1250px) {
    .home-info-wrapper { flex-wrap: wrap; }
    .container-fluid-custom { padding: 0 40px; }
    .prev-prod { left: 10px; }
    .next-prod { right: 10px; }
}


@keyframes skeleton-shimmer {
    0% { background-position: -150% 0; }
    100% { background-position: 150% 0; }
}

.skeleton-active .slider-section {
    background: #e2e5e7 !important;
    transition: background 0.3s ease;
}

.skeleton-active .sk-el {
    position: relative !important;
    overflow: hidden !important;
    background: #e2e5e7 !important;
    background-image: linear-gradient(
        90deg, 
        #e2e5e7 0%, 
        #f1f3f4 20%, 
        #e2e5e7 40%, 
        #e2e5e7 100%
    ) !important;
    background-repeat: no-repeat !important;
    background-size: 200% 100% !important;
    animation: skeleton-shimmer 1.5s infinite linear !important;
    color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    pointer-events: none !important;
}

.skeleton-active .sk-el * {
    visibility: hidden !important;
}

.skeleton-active img {
    opacity: 0 !important;
}

.skeleton-active .info-title { min-height: 48px; width: 60%; margin-bottom: 20px; border-radius: 8px; }
.skeleton-active .info-desc { min-height: 80px; width: 100%; margin-bottom: 30px; border-radius: 8px; }
.skeleton-active .info-btn { min-height: 65px; width: 250px; border-radius: 17px; display: inline-block; }
.skeleton-active .stats-card { min-height: 227px; border-radius: 17px; }
.skeleton-active .stat-num { min-height: 30px; width: 60px; display: block; margin: 0 auto 5px; }
.skeleton-active .stat-label { min-height: 15px; width: 80px; display: block; margin: 0 auto; }
.skeleton-active .references-title { min-height: 40px; width: 300px; margin-bottom: 40px; border-radius: 8px; }
.skeleton-active .reference-card { min-height: 191px; border-radius: 16px; border: none !important; }
.skeleton-active .ref-name { min-height: 20px; width: 120px; margin: 15px auto 0; border-radius: 4px; }