﻿/* 
* Main CSS file
* Website Mica Group
*/

:root {
    --primary-color: #cc0000;
    --secondary-color: #252525;
    --dark-color: #1F1F1F;
    --light-color: #f8f8f8;
    --text-color: #333333;
    --gray-color: #888888;
}

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

html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Arial, sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: #990000;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 2px;
    width: 100px;
    background-color: var(--primary-color);
}

.title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 160px 0 0px;
    position: relative;
    z-index: 2;
}

.title-with-lines hr:first-child {
    margin-right: 20px;
}

.title-with-lines hr:last-child {
    margin-left: 20px;
}

.title-with-lines span {
    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
}

/* Import các file CSS khác */
@import url('header.css');
@import url('animations.css');
@import url('responsive.css');
@import url('home.css');

/* 
* Main content styles for Mica Group website
*/

/* Business Areas Section */
.business-areas {
    position: relative;
    overflow: hidden !important;
    overflow-y: hidden !important;
    padding: 60px 0;
    max-width: 100% !important;
    box-sizing: border-box !important;
    height: auto !important;
}

/* Title with lines */
.title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 160px 0 0px;
    position: relative;
    z-index: 2;
}

.title-with-lines hr {
    flex-grow: 1;
    height: 1px;
    background-color: #000;
    border: none;
}

/* Business card links */
.business-link {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    text-decoration: none !important;
}

.business-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100% !important;
    width: 100% !important;
    min-height: 400px !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
    aspect-ratio: 3/4 !important;
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.business-card .image-container {
    position: relative !important;
    width: 100% !important;
    padding-top: 133.33% !important; /* 3:4 aspect ratio */
    overflow: hidden !important;
    flex: 1 !important;
    height: auto !important;
    aspect-ratio: 3/4 !important;
    min-height: 300px !important;
}

.business-card img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.5s ease;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.business-card:hover img {
    transform: scale(1.1);
}

/* Title styling for business cards */
.business-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(204, 0, 0, 0.7) 30%, rgba(204, 0, 0, 0.4) 70%, rgba(204, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0));
    text-align: center;
    z-index: 1;
    height: 30%; /* Reduced height to just cover the title */
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.business-title h4 {
    color: white;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Container position */
.business-areas .container {
    position: relative;
    z-index: 1;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    height: auto !important;
}

/* Company Intro Section */
.company-intro {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 900px;
    background: #1F1F1F;
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 50px;
}

.company-intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/company-bg.jpg') center/cover no-repeat;
    z-index: 0;
    opacity: 0.7;
    filter: blur(5px);
}

.company-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 0;
}

.company-intro-container {
    position: relative;
    z-index: 1;
}

.about-title {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 200px;
    text-align: left;
    padding-left: 50px;
    font-family: Arial, sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: 120px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(182.15deg, rgba(234, 179, 179, 0.2) 31.66%, rgba(106, 106, 106, 0.05) 70.73%, rgba(106, 106, 106, 0) 80.16%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-top: 100px;
    text-shadow: 0px 0px 2px rgba(255,255,255,0.1);
}

.company-title {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 30px;
}

.company-description {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.company-image {
    width: 100%;
    max-width: 490px;
    height: 287px;
    background: url('../images/company-intro.jpg') center/cover no-repeat;
    filter: drop-shadow(0px 4px 8px rgba(42, 33, 33, 0.1));
    border-radius: 15px;
    margin: 0 auto;
}

.counter-number {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 80px;
    line-height: 56px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #ffffff;
}

.stat-description {
    font-size: 14px;
    text-align: center;
    color: #e0e0e0;
    margin-top: 10px;
}

/* News & Events Section */
.news-events {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background-color: #fff;
    margin-top: 0;
}

.news-curved-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-color: #FFEEF0;
    border-radius: 0 100% 100% 0 / 0 50% 50% 0;
    z-index: 0;
}

.news-title {
    font-family: Arial, sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    position: relative;
    z-index: 5;
    text-align: center;
    margin-right: 0;
    padding-top: 20px;
    white-space: normal;
    word-break: break-word;
}

.news-grid-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.main-news-col, 
.col-lg-5 {
    display: flex;
    flex-direction: column;
}

.main-news-container {
    height: 100%;
}

.main-news-container .row {
    margin-left: -10px;
    margin-right: -10px;
    height: 100%;
}

.main-news-container .col-md-6 {
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
}

.news-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.news-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.news-card a {
    text-decoration: none;
    color: inherit;
}

.news-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.main-news-container .news-img {
    height: 350px;
}

.main-news-container .col-md-6:first-child .news-img {
    height: 370px;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.03);
}

.news-content {
    padding: 15px;
}

.news-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
    line-height: 1.3;
}

.news-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-meta {
    display: flex;
    font-size: 12px;
    color: #888;
}

.news-date {
    margin-right: 10px;
}

/* Side news items */
.side-news-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    justify-content: space-between;
}

.side-news-item {
    display: flex;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.03);
    height: calc(25% - 6px);
}

.side-news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.side-news-item a {
    display: flex;
    text-decoration: none;
    color: inherit;
    width: 100%;
    align-items: stretch;
}

.side-news-img {
    width: 85px;
    min-width: 85px;
    height: auto;
    overflow: hidden;
    margin-right: 0;
    align-self: stretch;
}

.side-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-news-content {
    padding: 8px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background-color: #fff;
}

.side-news-content h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #000;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.side-news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #888;
    margin-top: auto;
}

.news-source {
    font-weight: 400;
    color: #999;
}

/* View all button */
.view-all-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.view-all-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    margin-right: 10px;
    display: none;
}

.view-all-text {
    font-size: 12px;
    color: #333;
    margin-right: 5px;
}

.view-all-circle {
    width: 36px;
    height: 36px;
    background-color: #cc0000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.view-all-circle:hover {
    background-color: #a00000;
}

.view-all-btn {
    display: flex;
    align-items: center;
}

.view-all-btn .view-all-text {
    margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .news-curved-bg {
        width: 40%;
    }
    
    .side-news-img {
        width: 70px;
        min-width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .news-title {
        font-size: 32px;
    }
    
    .news-curved-bg {
        width: 30%;
    }
    
    .news-img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .news-title {
        font-size: 28px;
    }
    
    .news-curved-bg {
        display: none;
    }
    
    .side-news-item {
        margin-bottom: 15px;
    }
    
    .business-bg-text {
        top: 40%;
    }
    
    .business-bg-text h1 {
        font-size: 40px;
        white-space: normal;
        text-align: center;
        width: 100%;
        color: rgba(204, 0, 0, 0.2);
        line-height: 1.2;
    }
}

.main-news-container .news-card {
    margin-bottom: 25px;
}

.main-news-col {
    padding-right: 20px;
}

.main-img {
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
}

.main-card {
    margin-bottom: 30px !important;
}

.main-news-item:first-child .main-img {
    height: 400px !important;
    min-height: 400px !important;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Overrides cho tin tức chính */
.news-events .main-news-col .news-card {
    height: 500px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 1px 5px rgba(0,0,0,0.08) !important;
}

.news-events .main-news-col .news-img {
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
    overflow: hidden !important;
}

.news-events .main-news-col .news-img img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
    transform: scale(1.01);
}

.news-events .main-news-col .news-content {
    height: 200px !important;
    padding: 15px !important;
    position: relative !important;
    overflow: visible !important;
}

.news-events .main-news-col .news-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
    max-height: 75px;
    overflow: hidden;
}

.news-events .main-news-col .news-desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 65px;
}

.news-events .main-news-col .news-meta {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
}

/* Đảm bảo các style khác không ghi đè */
.news-img, 
.main-img {
    height: auto !important;
    min-height: auto !important;
}

/* Add to the custom-grid styling */
.custom-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    margin: 0 auto !important;
    width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    height: auto !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 0 !important;
}

@media (min-width: 992px) {
    .custom-grid {
        gap: 40px !important;
    }
    
    .business-areas {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .business-areas {
        padding: 60px 0;
        min-height: auto !important;
    }
    
    .business-bg-text h1 {
        font-size: 80px;
        color: rgba(204, 0, 0, 0.15);
    }
    
    .title-with-lines {
        margin: 120px 0 0px;
    }
    
    .title-with-lines span {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .custom-grid {
        gap: 15px !important;
    }
    
    .business-card {
        min-height: 200px !important;
    }
    
    .business-card .image-container {
        padding-top: 75% !important; /* 4:3 aspect ratio */
    }
    
    .business-card img {
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .business-bg-text h1 {
        font-size: 60px;
        letter-spacing: 5px;
        color: rgba(204, 0, 0, 0.18);
    }
    
    .title-with-lines span {
        font-size: 20px;
    }
    
    .title-with-lines hr {
        max-width: 60px;
    }
    
    .business-title h4 {
        font-size: 16px !important;
        font-weight: 600 !important;
        color: white !important;
        margin: 0 !important;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.7) !important;
    }
}

@media (max-width: 991px) {
    .custom-grid {
        justify-content: flex-start !important;
    }
    
    .grid-item {
        width: calc(50% - 10px) !important;
        flex: 0 0 calc(50% - 10px) !important;
        min-width: 250px !important;
        margin-right: 0 !important;
    }
}

@media (min-width: 992px) {
    .grid-item {
        width: calc(33.333% - 14px) !important;
        flex: 0 0 calc(33.333% - 14px) !important;
        min-width: 280px !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 576px) {
    .custom-grid {
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .grid-item {
        margin-bottom: 20px !important;
        height: auto !important;
        width: 100% !important;
        display: block !important;
        flex: 0 0 100% !important;
    }
    
    .business-card {
        height: 350px !important; /* Tăng chiều cao cho mobile với tỷ lệ 3:4 */
        min-height: 350px !important;
        display: flex !important;
        flex-direction: column !important;
        position: relative !important;
        overflow: hidden !important;
        aspect-ratio: 3/4 !important;
    }
    
    .business-card .image-container {
        padding-top: 133.33% !important; /* 3:4 aspect ratio */
        height: auto !important;
        position: relative !important;
        overflow: hidden !important;
        width: 100% !important;
    }
    
    .business-card img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .business-title {
        padding: 12px !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: linear-gradient(to top, rgba(204, 0, 0, 0.7) 30%, rgba(204, 0, 0, 0.4) 70%, rgba(204, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0)) !important;
        z-index: 2 !important;
        height: 30% !important; /* Reduced height to just cover the title */
        display: flex !important;
        align-items: flex-end !important;
        justify-content: center !important;
    }
    
    .business-title h4 {
        font-size: 16px !important;
        font-weight: 600 !important;
        color: white !important;
        margin: 0 !important;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.7) !important;
    }
    
    .business-bg-text h1 {
        font-size: 40px;
        white-space: normal;
        text-align: center;
        width: 100%;
    }
    
    .title-with-lines {
        margin: 80px 0 0px;
    }
    
    .title-with-lines span {
        font-size: 18px;
        padding: 0 10px;
    }
    
    .title-with-lines hr {
        max-width: 40px;
    }
    
    .business-areas {
        padding: 40px 0;
    }
    
    .title-with-lines {
        margin: 80px 0 0px;
    }
    
    .title-with-lines span {
        font-size: 18px;
        padding: 0 10px;
    }
    
    .title-with-lines hr {
        max-width: 40px;
    }
    
    .business-title {
        padding: 12px !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: linear-gradient(to top, rgba(204, 0, 0, 0.7) 30%, rgba(204, 0, 0, 0.4) 70%, rgba(204, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0)) !important;
        z-index: 2 !important;
        height: 30% !important;
        display: flex !important;
        align-items: flex-end !important;
        justify-content: center !important;
    }
    
    .business-title h4 {
        font-size: 15px !important;
        font-weight: 600 !important;
        color: white !important;
        margin: 0 !important;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.7) !important;
    }
    
    /* Adjust grid margins on mobile */
    .custom-grid[style] {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
        row-gap: 20px !important;
    }
}

/* Grid item styling */
.grid-item {
    width: calc(33.333% - 14px) !important;
    height: 100% !important;
    display: block !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    overflow-y: hidden !important;
    flex: 0 0 calc(33.333% - 14px) !important;
    margin-bottom: 20px !important;
    min-width: 280px !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    margin-right: 0 !important;
    flex-basis: calc(33.333% - 14px) !important;
}

/* Override tất cả CSS khác cho desktop */
@media (min-width: 992px) {
    .business-areas .custom-grid .grid-item {
        width: calc(33.333% - 14px) !important;
        flex: 0 0 calc(33.333% - 14px) !important;
        flex-basis: calc(33.333% - 14px) !important;
        min-width: 280px !important;
        max-width: calc(33.333% - 14px) !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding: 0 !important;
    }
}

/* Background overlay styling */
#background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

#background-overlay h1 {
    font-size: 50px;
    color: rgba(204, 0, 0, 0.25);
    font-weight: 70;
    letter-spacing: 8px;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

/* Responsive styling cho background overlay */
@media (max-width: 768px) {
    #background-overlay h1 {
        font-size: 40px;
        letter-spacing: 4px;
    }
}

@media (max-width: 576px) {
    #background-overlay {
        top: 35px;
        height: 100px;
    }
    #background-overlay h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }
}

@media (max-width: 420px) {
    #background-overlay h1 {
        font-size: 30px;
        letter-spacing: 1px;
    }
}

/* Đảm bảo các style khác không ghi đè */ 

/* Section Header Design - Đồng bộ với các trang khác */
.section-header {
    margin-top: 5px;
    margin-bottom: 60px;
    padding-top: 40px;
    position: relative;
    min-height: 120px;
    overflow: visible;
}

.section-header-container {
    display: block;
    position: relative;
    margin-bottom: 30px;
    margin-left: 25px;
}

.section-heading-line {
    font-family: Arial, sans-serif; 
    font-weight: 700; 
    font-style: italic; 
    font-size: 36px; 
    line-height: 1.2; 
    letter-spacing: 0; 
    color: #cc0000; 
    margin-bottom: 5px; 
    padding: 0; 
    display: inline-block; 
    text-transform: uppercase; 
    position: relative;
    margin-top: 15px;
    margin-left: 15px;
}

.heading-line-decoration {
    position: absolute; 
    height: 2px; 
    background-color: #cc0000; 
    left: 100%; 
    right: -150px; 
    top: calc(50% + 7px); 
    width: 150px;
}

.section-watermark {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    z-index: 1;
    opacity: 0.07;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(60px, 10vw, 120px);
    line-height: 1;
    letter-spacing: 4%;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
    max-width: 100%;
}

@media (max-width: 992px) {
    .section-watermark {
        top: -15px;
        font-size: clamp(45px, 8vw, 90px);
    }
    
    .section-header-container {
        margin-left: 20px;
        position: relative;
        z-index: 5;
    }
    
    .section-heading-line {
        margin-left: 10px;
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .section-watermark {
        top: -10px;
        font-size: clamp(35px, 7vw, 70px);
    }
    
    .section-header-container {
        margin-left: 15px;
        position: relative;
        z-index: 5;
    }
    
    .section-heading-line {
        margin-left: 8px;
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .section-watermark {
        top: -5px;
        font-size: clamp(28px, 6vw, 50px);
        opacity: 0.05;
    }
    
    .section-header-container {
        margin-left: 10px;
        position: relative;
        z-index: 5;
    }
    
    .section-heading-line {
        margin-left: 5px;
        font-size: 24px;
    }
}

/* Responsive styling cho phần Giới thiệu tập đoàn */
@media (max-width: 991px) {
    .company-intro {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .about-title {
        font-size: 90px;
        min-height: 120px;
        padding-left: 30px;
        margin-top: 50px;
    }
    
    .company-title {
        font-size: 40px;
    }
    
    .counter-number {
        font-size: 60px;
        line-height: 50px;
    }
}

@media (max-width: 767px) {
    .company-intro {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .about-title {
        font-size: 70px;
        min-height: 100px;
        padding-left: 20px;
        margin-top: 30px;
        justify-content: center;
        text-align: center;
    }
    
    .company-title {
        font-size: 36px;
        text-align: center;
    }
    
    .company-description {
        text-align: center;
        padding: 0 15px;
    }
    
    .company-image {
        margin-top: 30px;
        height: 250px;
    }
    
    .counter-number {
        font-size: 50px;
        line-height: 40px;
    }
    
    .stat-description {
        font-size: 13px;
    }
    
    .company-stats-row {
        margin-top: 30px !important;
    }
}

@media (max-width: 576px) {
    .company-intro {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .about-title {
        font-size: 50px;
        min-height: 80px;
        padding-left: 10px;
        margin-top: 20px;
    }
    
    .company-title {
        font-size: 30px;
        line-height: 1.3;
    }
    
    .company-description {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .company-image {
        height: 200px;
    }
    
    .counter-number {
        font-size: 40px;
        line-height: 36px;
    }
    
    .stat-description {
        font-size: 12px;
        margin-top: 5px;
    }
    
    .company-stats-row .col-md-3 {
        margin-bottom: 20px !important;
    }
}

.company-main-row {
    margin-top: -60px;
}

.company-stats-row {
    margin-top: 3rem;
}

@media (max-width: 767px) {
    .company-main-row {
        margin-top: 0;
    }
    
    .company-stats-row {
        margin-top: 2rem;
    }
    
    .company-image-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .company-main-row {
        margin-top: 0;
    }
    
    .company-stats-row {
        margin-top: 1.5rem;
    }
} 

/*
 * Global font override
 * Buộc toàn bộ website dùng Arial, trừ các icon Font Awesome
 */
:root {
    --mica-font-sans: Arial, Helvetica, sans-serif;
}

html, body {
    font-family: var(--mica-font-sans) !important;
}

/* Loại trừ các icon FA để không bị lỗi hiển thị */
*:not(.fa):not(.fas):not(.far):not(.fal):not(.fab):not([class*="fa-"]) {
    font-family: var(--mica-font-sans) !important;
}

/* Company History Timeline - CSS moved to timeline.css */
