﻿/* 
* CSS trang chủ
* Website Mica Group
*/

/* Hero Banner */
.hero-banner {
    position: relative; 
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

.hero-bg {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(204,0,0,0.7)), url('../images/hero-bg.jpg') center/cover no-repeat; 
    z-index: -1;
    animation: slideUp 1.5s ease-out forwards;
}

.hero-banner h1 {
    font-family: Arial, sans-serif; 
    font-weight: 900; 
    font-size: 50px; 
    line-height: 60px; 
    letter-spacing: 0%; 
    text-align: center;
    animation: fadeIn 1s ease-out 0.5s both;
}

.hero-banner h2 {
    font-family: Arial, sans-serif; 
    font-weight: 500; 
    font-size: 30px; 
    line-height: 60px; 
    letter-spacing: 0%; 
    text-align: center;
    animation: fadeIn 1s ease-out 1s both;
}

.hero-banner .scroll-down-btn {
    animation: fadeIn 1s ease-out 1.5s both;
}

.hero-banner p {
    font-family: Arial, sans-serif; 
    font-weight: 300; 
    font-size: 18px; 
    line-height: 24px; 
    letter-spacing: 0%; 
    text-align: center;
}

.scroll-down-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-down-btn a {
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.scroll-down-btn img {
    width: 41px; 
    height: 41px;
}

/* Business Areas Section */
.business-areas {
    background-color: rgba(248, 243, 243, 1);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.section-title .mica-title {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 170px;
    line-height: 130px;
    letter-spacing: 4%;
    text-align: center;
    vertical-align: middle;
    background: linear-gradient(180deg, rgba(21, 20, 20, 0.08) 40.96%, rgba(140, 140, 140, 0.08) 58.42%, rgba(206, 206, 206, 0.08) 65.7%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 0;
    margin-top: 60px;
    padding-top: 30px;
    text-transform: uppercase;
    position: relative;
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
}

.section-title .line-title {
    font-family: Arial, sans-serif;
    font-weight: 500;
    font-size: 30px;
    position: relative;
    display: inline-block;
    padding: 0 20px;
    margin-top: -20px;
    animation-delay: 0.5s;
}

.business-card {
    width: 100%;
    height: 520px;
    max-width: 390px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.business-card img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

.business-title {
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    padding: 15px; 
    color: white; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8); 
    background: linear-gradient(to top, rgba(255, 0, 0, 0.7), rgba(255, 0, 0, 0));
}

.business-title h4 {
    font-weight: 700; 
    letter-spacing: 1px; 
    margin: 0; 
    font-size: 24px; 
    padding-top: 20px;
}

/* 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::before {
    content: "";
    position: absolute; 
    width: 100%; 
    height: 100%; 
    left: 0; 
    top: 0; 
    background: url('../images/bg-intro.jpg') center/cover no-repeat; 
    background-blend-mode: plus-lighter; 
    filter: blur(1px); 
    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-intro .row {
    margin-top: -60px;
}

.company-desc {
    margin-bottom: 20px; 
    padding-left: 50px; 
    font-family: Arial, sans-serif; 
    font-weight: 700; 
    font-size: 25px; 
    line-height: 40px; 
    letter-spacing: 0%; 
    text-transform: capitalize; 
    color: #E3E3E3;
}

.company-text {
    margin-bottom: 40px; 
    padding-left: 50px; 
    padding-right: 15px; 
    font-family: Arial, sans-serif; 
    font-weight: 300; 
    font-style: italic; 
    font-size: 16px; 
    line-height: 24px; 
    letter-spacing: 0%; 
    text-align: justify; 
    color: #E3E3E3;
}

.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;
}

.col-lg-5.col-md-12.text-center {
    position: relative; 
    top: 0; 
    margin-bottom: 30px;
}

/* Stats */
.counters-row {
    color: #E3E3E3; 
    text-align: center;
}

.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;
}

.counter-label {
    font-family: Arial, sans-serif; 
    font-size: 14px;
}

/* News & Events Section */
.news-events {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.news-events .section-title {
    font-family: 'Beautique Display Condensed'; 
    font-weight: 400; 
    font-size: 65px; 
    line-height: 56px; 
    letter-spacing: 0%; 
    text-align: right; 
    vertical-align: middle; 
    text-transform: uppercase; 
    margin-top: 70px;
}

.news-card {
    width: 100%; 
    max-width: 384px; 
    height: 472px; 
    border-radius: 5px; 
    overflow: hidden; 
    margin: 0 auto 20px;
}

.news-card img {
    width: 100%; 
    height: 270px; 
    object-fit: cover; 
    object-position: center;
}

.news-content {
    width: 100%; 
    display: flex; 
    flex-direction: column; 
    gap: 0px; 
    padding: 20px;
}

.news-content h3 {
    font-family: Calibri; 
    font-weight: 700; 
    font-size: 18px; 
    line-height: 100%; 
    letter-spacing: 0%;
}

.news-content p {
    font-family: Calibri; 
    font-weight: 300; 
    font-size: 16px; 
    line-height: 100%; 
    letter-spacing: 0%; 
    margin-top: 10px; 
    margin-bottom: 10px;
}

.news-meta {
    display: flex; 
    gap: 10px;
}

.news-category, .news-date {
    font-family: Calibri; 
    font-weight: 300; 
    font-size: 12px; 
    line-height: 100%; 
    letter-spacing: 0%; 
    color: #888;
}

/* Side News */
.side-news-item {
    width: 100%; 
    max-width: 384px; 
    height: 112px; 
    border-radius: 4px; 
    background-color: #fff; 
    padding: 10px; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.1); 
    margin: 0 auto;
}

.side-news-img {
    min-width: 118px; 
    width: 118px; 
    height: 92px; 
    border-radius: 5px; 
    overflow: hidden; 
    margin-right: 15px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background-color: #f5f5f5; 
    flex-shrink: 0;
}

.side-news-img img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

.side-news-content h4 {
    font-size: 16px; 
    font-weight: 600; 
    margin-bottom: 8px; 
    line-height: 1.3;
}

.btn-view-all {
    text-decoration: none; 
    display: inline-flex; 
    flex-direction: column; 
    align-items: center;
}

.btn-view-all > div {
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    background-color: #cc0000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 5px;
}

.btn-view-all i {
    color: white;
}

.btn-view-all span {
    font-family: Calibri; 
    font-size: 14px; 
    color: #333;
}

/* Footer */
.footer {
    background-color: #fff;
    border-top: 1px solid #eee;
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.footer img {
    width: 300px; 
    height: auto; 
    max-width: 100%;
}

.footer-links {
    margin-top: -30px !important;
}

.social-icon {
    width: 36px; 
    height: 36px;
} 

/* Journey Section */
.journey-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}



.journey-section .section-title {
    font-family: 'Beautique Display Condensed';
    font-weight: 400;
    font-size: 65px;
    line-height: 56px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #2c3e50;
}

.journey-section .section-divider {
    width: 80px;
    height: 3px;
    background: #cc0000;
    margin: 0 auto 20px;
}

.journey-section .section-subtitle {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #6c757d;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
}

.journey-slider {
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
}

.slider-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

/* Slide đầu tiên mặc định hiển thị */
.slide:first-child {
    opacity: 1;
    transform: translateX(0);
}

.slide-image {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-image img {
    transform: scale(1.05);
}

.slide-content {
    width: 50%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-year {
    background: #cc0000;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
    align-self: flex-start;
}

.slide-year.highlight {
    background: #ffd700;
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.slide-content h3 {
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.slide-content p {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.prev-btn, .next-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #cc0000;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.prev-btn:hover, .next-btn:hover {
    background: #cc0000;
    color: #ffffff;
    transform: scale(1.1);
}

.timeline-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
}

.timeline-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-dot:hover {
    transform: scale(1.1);
    border-color: #cc0000;
}

.timeline-dot.active {
    border-color: #cc0000;
    background: #cc0000;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.3);
}

.dot-year {
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}



.timeline-content p {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.timeline-icon {
    font-size: 32px;
    text-align: center;
    margin-top: 15px;
}

.highlight-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: #b8860b;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: Arial, sans-serif;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-top: 10px;
}

.journey-stats {
    margin-top: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    background: #ffffff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-family: Arial, sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #cc0000;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .journey-section {
        padding: 60px 0;
    }
    
    .journey-section .section-title {
        font-size: 48px;
        line-height: 48px;
    }
    
    .journey-section .section-subtitle {
        font-size: 16px;
    }
    
    .journey-slider {
        margin: 40px auto 0;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .slide {
        flex-direction: column;
    }
    
    .slide-image {
        width: 100%;
        height: 50%;
    }
    
    .slide-content {
        width: 100%;
        height: 50%;
        padding: 25px;
    }
    
    .slide-year {
        font-size: 18px;
        padding: 10px 20px;
        margin-bottom: 15px;
    }
    
    .slide-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .slide-content p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .timeline-navigation {
        gap: 15px;
        margin-top: 30px;
    }
    
    .timeline-dot {
        width: 50px;
        height: 50px;
    }
    
    .dot-year {
        font-size: 11px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .journey-section {
        padding: 40px 0;
    }
    
    .journey-section .section-title {
        font-size: 36px;
        line-height: 40px;
    }
    
    .journey-section .section-subtitle {
        font-size: 14px;
    }
    
    .journey-slider {
        margin: 30px auto 0;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-year {
        font-size: 16px;
        padding: 8px 16px;
        margin-bottom: 12px;
    }
    
    .slide-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .prev-btn, .next-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .timeline-navigation {
        gap: 10px;
        margin-top: 25px;
        flex-wrap: wrap;
    }
    
    .timeline-dot {
        width: 45px;
        height: 45px;
    }
    
    .dot-year {
        font-size: 10px;
    }
    
    .journey-stats {
        margin-top: 60px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 280px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

/* Additional base styles for the section */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Ensure Font Awesome icons work */
.fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
} 
