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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.back-to-top-btn {
    display: none !important;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: 80px;
}

.slider-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
}

.slider-item.active {
    display: block;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #fff;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* News Section */
.news-section {
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 20px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 992px) {
    .header-content {
        padding: 0 15px;
    }

    .main-nav {
        display: none;
    }

    .hero-slider {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 300px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .slider-arrows {
        display: none;
    }
}

/* ============================
     HOME PAGE STYLES
  ============================ */
.strategic-vision {
    padding: 80px 0;
    background-color: var(--lightest-bg);
}

.vision-content {
    display: flex;
    flex-wrap: wrap;
}

.vision-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.vision-pillars {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
}

.pillar-item {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background-color: #1dc44c;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 0 10px 20px;
    text-align: center;
}

.pillar-icon {
    margin-bottom: 15px;
}

.pillar-icon img {
    height: 60px;
}

.made-by-emc {
    padding: 80px 0;
}

.made-by-content {
    display: flex;
    flex-wrap: wrap;
}

.made-by-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.made-by-visual {
    flex: 2;
}

.ecosystem-diagram {
    position: relative;
    height: 400px;
}

.eco-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.eco-item {
    position: absolute;
    text-align: center;
}

.eco-item p {
    margin-top: 10px;
    font-weight: 500;
}

.eco-inventory {
    top: 70%;
    left: 30%;
}

.eco-warehouse {
    top: 20%;
    left: 20%;
}

.eco-customers {
    top: 40%;
    right: 20%;
}

.eco-orders {
    top: 70%;
    right: 30%;
}

.eco-fleets {
    top: 10%;
    left: 50%;
}

.btn-video {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
}

.btn-video i {
    margin-left: 8px;
    font-size: 1.2rem;
}

.emc-ecosystem {
    padding: 80px 0;
    background-color: var(--lightest-bg);
}

.ecosystem-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.ecosystem-components {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.ecosystem-item {
    flex: 1;
    min-width: 300px;
    margin: 10px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ecosystem-item-image img {
    width: 50%;
    height: 200px;
    object-fit: cover;
}

.ecosystem-item-content {
    padding: 20px;
}

.sustainable-dev {
    padding: 80px 0;
}

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

.sustainable-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: justify;
    font-size: 18px;
    line-height: 1.6;
}

.sustainable-images {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sustainable-image-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.image-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.image-item img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .sustainable-content {
        flex-direction: column;
        align-items: center;
    }

    .sustainable-text {
        padding-right: 0;
        text-align: center;
    }
}

.image-item img {
    width: 150px;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* đối tácc */
.partner-section {
    background-color: #dcecd9;
    padding: 60px 0;
    text-align: center;
}

.partner-title {
    color: #1dc54c;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logos img {
    height: 135px;
    width: 200px;
    object-fit: contain;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner-logos img:hover {
    transform: scale(1.08);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.investor-section {
    padding: 80px 0;
    background-color: var(--lightest-bg);
}

.investor-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.investor-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.investor-link-group {
    display: flex;
    margin: 0 10px;
}

.investor-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 0 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.investor-link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.investor-link-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.investor-cta {
    text-align: center;
}

.news-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-all {
    font-weight: 500;
}

.news-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.news-item {
    flex: 1;
    min-width: 300px;
    margin: 10px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--light-text);
}

/* ============================
     ABOUT PAGE STYLES
  ============================ */
.about-hero {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
    color: #ffffff;
    margin-bottom: 0px;
    box-shadow: none;
    background-color: transparent;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/nen1.jpg");
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: -1;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about-hero .btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #086924;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    border: 2px solid #ffffff;
}

.about-hero .btn-primary:hover {
    background-color: #064e1b;
    transform: translateY(-3px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 16px;
    }
}

.core-values {
    padding: 80px 0;
}

.values-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.value-item {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 10px 20px;
    padding: 20px;
    background-color: var(--lightest-bg);
    border-radius: 8px;
}

.value-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    margin-right: 15px;
    font-weight: 700;
}

.history-section {
    padding: 80px 0;
    background-color: var(--lightest-bg);
}

.history-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.history-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.history-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    display: flex;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 1;
    text-align: right;
    padding-right: 20px;
    font-weight: 700;
    font-size: 1.2rem;
}

.timeline-item:nth-child(odd) .timeline-year {
    text-align: left;
    padding-right: 0;
    padding-left: 20px;
}

.timeline-content {
    flex: 3;
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-content::before {
    content: "";
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -10px;
}

.leadership-section {
    padding: 80px 0;
}

.leadership-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.leadership-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.leader-item {
    width: 250px;
    margin: 0 20px 40px;
    text-align: center;
}

.leader-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

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

.leader-position {
    color: var(--light-text);
}

.csr-section {
    padding: 80px 0;
    background-color: var(--lightest-bg);
}

.csr-content {
    display: flex;
    flex-wrap: wrap;
}

.csr-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.csr-text ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.csr-image {
    flex: 1;
    min-width: 300px;
}

.awards-section {
    padding: 80px 0;
}

.awards-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.awards-list {
    max-width: 800px;
    margin: 0 auto;
}

.award-item {
    display: flex;
    margin-bottom: 30px;
    background-color: var(--lightest-bg);
    border-radius: 8px;
    overflow: hidden;
}

.award-year {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.award-details {
    flex: 1;
    padding: 20px;
}

.award-details h3 {
    margin-bottom: 5px;
}

.award-details p {
    color: var(--light-text);
}

.partners-section {
    padding: 80px 0;
    background-color: var(--lightest-bg);
}

.partners-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.partner-item {
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.partner-item:hover {
    transform: scale(1.05);
}

.partner-item img {
    max-width: 80%;
    max-height: 60px;
}

/* ============================
     ECOSYSTEM PAGE STYLES
  ============================ */
.technology-section,
.member-section {
    padding: 80px 0;
}

.telecom-section,
.education-section {
    padding: 80px 0;
    background-color: var(--lightest-bg);
}

.technology-content,
.telecom-content,
.education-content,
.member-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.technology-text,
.telecom-text,
.education-text,
.member-text {
    flex: 1;
    min-width: 300px;
    padding: 0 30px;
}

.technology-image,
.telecom-image,
.education-image,
.member-image {
    flex: 1;
    min-width: 300px;
}

.technology-text ul,
.telecom-text ul,
.education-text ul,
.member-text ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.success-stories {
    padding: 80px 0;
    background-color: var(--lightest-bg);
}

.stories-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.stories-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.story-item {
    flex: 1;
    min-width: 300px;
    margin: 10px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.story-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-text {
    padding: 20px;
}

/* ============================
     INVESTOR PAGE STYLES
  ============================ */
.stock-info {
    padding: 40px 0;
    background-color: var(--lightest-bg);
}

.stock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.stock-code h2 {
    margin-bottom: 5px;
    font-size: 2.5rem;
}

.stock-price {
    text-align: right;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-change {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.price-change.positive {
    color: var(--success-color);
}

.price-change.negative {
    color: var(--danger-color);
}

.price-change i {
    margin-left: 5px;
    font-size: 1.2rem;
}

.stock-indicators {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.indicator-item {
    flex: 1;
    min-width: 150px;
    margin: 10px;
    padding: 15px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.indicator-label {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 5px;
}

.indicator-value {
    font-weight: 700;
    font-size: 1.2rem;
}

.financial-highlights {
    padding: 80px 0;
}

.financial-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.financial-item {
    flex: 1;
    min-width: 250px;
    margin: 10px;
    padding: 20px;
    background-color: var(--lightest-bg);
    border-radius: 8px;
}

.financial-chart {
    margin-top: 20px;
}

.chart-bars {
    display: flex;
    height: 200px;
    align-items: flex-end;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 5px;
}

.bar-value {
    width: 40px;
    background-color: var(--secondary-color);
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    padding: 5px 0;
}

.chart-bar.active .bar-value {
    background-color: var(--primary-color);
}

.bar-label {
    margin-top: 10px;
    font-weight: 500;
}

.reports-section {
    padding: 80px 0;
    background-color: var(--lightest-bg);
}

.reports-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.report-category {
    flex: 1;
    min-width: 300px;
    margin: 10px;
}

.report-category h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.report-list {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.report-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.report-item:last-child {
    border-bottom: none;
}

.report-icon {
    margin-right: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.report-info {
    flex: 1;
}

.report-info h4 {
    margin-bottom: 5px;
}

.report-date {
    font-size: 0.9rem;
    color: var(--light-text);
}

.report-download {
    margin-left: 15px;
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--lightest-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: background-color 0.3s;
}

.btn-download:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.reports-more {
    text-align: center;
    margin-top: 30px;
}

.shareholder-section,
.governance-section {
    padding: 80px 0;
}

.disclosure-section {
    padding: 80px 0;
    background-color: var(--lightest-bg);
}

.shareholder-intro,
.governance-intro,
.disclosure-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.shareholder-meetings {
    max-width: 800px;
    margin: 0 auto;
}

.meeting-item {
    display: flex;
    margin-bottom: 30px;
    background-color: var(--lightest-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: background-color 0.3s;
}

.meeting-item.active {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.meeting-year {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.meeting-details {
    flex: 1;
    padding: 20px;
}

.meeting-date {
    margin-bottom: 10px;
    color: var(--light-text);
}

.meeting-docs {
    display: flex;
    flex-wrap: wrap;
}

.meeting-doc-link {
    margin-right: 20px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
}

.meeting-doc-link::before {
    content: "\f15c";
    font-family: "Font Awesome 5 Free";
    margin-right: 8px;
    color: var(--primary-color);
}

.shareholder-more,
.disclosure-more {
    text-align: center;
    margin-top: 30px;
}

.governance-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.governance-item {
    flex: 1;
    min-width: 250px;
    margin: 10px;
    padding: 30px;
    background-color: var(--lightest-bg);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.governance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.governance-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.disclosure-list {
    max-width: 800px;
    margin: 0 auto;
}

.disclosure-item {
    display: flex;
    margin-bottom: 20px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.disclosure-date {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    font-weight: 500;
    color: var(--primary-color);
    border-right: 1px solid var(--border-color);
}

.disclosure-details {
    flex: 1;
    padding: 20px;
}

/* ============================
     NEWS PAGE STYLES
  ============================ */
.featured-news {
    padding: 80px 0;
}

.featured-news-slider {
    position: relative;
}

.featured-news-item {
    display: none;
}

.featured-news-item.active {
    display: flex;
}

.featured-news-image {
    flex: 1;
    min-width: 300px;
}

.featured-news-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.featured-news-content {
    flex: 1;
    min-width: 300px;
    padding: 0 0 0 30px;
}

.featured-news-content h2 {
    margin-bottom: 15px;
}

.news-summary {
    margin-bottom: 20px;
}

.news-categories {
    background-color: var(--lightest-bg);
    padding: 20px 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.category-tab {
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 0 5px 10px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.category-tab.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.news-list {
    padding: 80px 0;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    /* margin-bottom: 20px; */
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.page-link.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.news-subscription {
    padding: 80px 0;
    background-color: var(--lightest-bg);
}

.subscription-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.subscription-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.subscription-form {
    flex: 1;
    min-width: 300px;
    display: flex;
}

.subscription-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.subscription-form button {
    border-radius: 0 4px 4px 0;
}

.news-detail {
    padding: 80px 0;
}

.news-detail-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.news-detail-image {
    max-width: 800px;
    margin: 0 auto 40px;
}

.news-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.news-detail-content {
    max-width: 800px;
    margin: 0 auto 40px;
}

.news-detail-share {
    max-width: 800px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
}

.news-detail-share h3 {
    margin-right: 20px;
    margin-bottom: 0;
}

.share-links {
    display: flex;
}

.share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
}

.share-link.facebook {
    background-color: #3b5998;
}

.share-link.twitter {
    background-color: #1da1f2;
}

.share-link.linkedin {
    background-color: #0077b5;
}

.share-link.email {
    background-color: #333;
}

.news-detail-related {
    max-width: 800px;
    margin: 0 auto;
}

.news-detail-related h3 {
    margin-bottom: 20px;
}

.related-news-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.related-news-grid .news-item {
    flex: 1;
    min-width: 250px;
}

/* ============================
     CAREER PAGE STYLES
  ============================ */
.why-emc {
    padding: 80px 0;
}

.why-content {
    display: flex;
    flex-wrap: wrap;
}

.why-video {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.video-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.video-container img {
    width: 100%;
    height: auto;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: background-color 0.3s;
}

.video-play-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.why-features {
    flex: 1;
    min-width: 300px;
}

.feature-item {
    display: flex;
    margin-bottom: 30px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--lightest-bg);
    border-radius: 50%;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    margin-bottom: 10px;
}

.company-culture {
    padding: 80px 0;
    background-color: var(--lightest-bg);
}

.culture-content {
    display: flex;
    flex-wrap: wrap;
}

.culture-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.culture-values {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.value-badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.culture-images {
    flex: 1;
    min-width: 300px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.image-item img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.image-item.large {
    grid-column: span 2;
}

.benefits-section {
    padding: 80px 0;
}

.benefits-content {
    display: flex;
    flex-wrap: wrap;
}

.benefits-list {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.benefit-item {
    display: flex;
    margin-bottom: 20px;
}

.benefit-icon {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.benefits-image {
    flex: 1;
    min-width: 300px;
}

.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.teams-section {
    padding: 80px 0;
    background-color: var(--lightest-bg);
}

.team-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.team-tab {
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 0 5px 10px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 20px;
    transition: background-color 0.3s, color 0.3s;
}

.team-tab.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.team-content-wrapper {
    position: relative;
}

.team-content {
    display: none;
}

.team-content.active {
    display: flex;
    flex-wrap: wrap;
}

.team-description {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.team-image {
    flex: 1;
    min-width: 300px;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.job-openings {
    padding: 80px 0;
}

.job-filter {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-group {
    margin-right: 20px;
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.filter-group select,
.filter-group input {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    min-width: 200px;
}

.job-list {
    margin-bottom: 40px;
}

.job-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.job-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.job-details {
    flex: 3;
    min-width: 300px;
}

.job-meta {
    display: flex;
    margin-bottom: 10px;
}

.job-department,
.job-location {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-right: 10px;
}

.job-department {
    background-color: var(--lightest-bg);
    color: var(--primary-color);
}

.job-location {
    background-color: var(--grey-200);
    color: var(--text-color);
}

.job-action {
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.show-more {
    text-align: center;
}

.application-process {
    padding: 80px 0;
    background-color: var(--lightest-bg);
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.process-step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    margin-right: 20px;
    z-index: 1;
}

.step-content {
    flex: 1;
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonials-section {
    padding: 80px 0;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    display: none;
}

.testimonial-item.active {
    display: block;
}

.testimonial-content {
    background-color: var(--lightest-bg);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50px;
    width: 20px;
    height: 20px;
    background-color: var(--lightest-bg);
    transform: rotate(45deg);
}

.testimonial-content p {
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

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

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: var(--light-text);
}

.contact-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: #160101;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contact-text {
    flex: 2;
    min-width: 300px;
}

.contact-text h2 {
    margin-bottom: 15px;
}

.contact-action {
    flex: 1;
    min-width: 200px;
    text-align: right;
}

.contact-action .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.contact-action .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* ============================
     RESPONSIVE STYLES
  ============================ */
@media screen and (max-width: 992px) {
    .header-content {
        flex-direction: column;
    }

    .main-nav {
        margin: 20px 0;
    }

    .main-nav ul {
        justify-content: center;
    }

    .header-tools {
        justify-content: center;
    }

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

    .slide-image,
    .slide-text {
        width: 100%;
        padding: 0;
    }

    .slide-text {
        padding-top: 20px;
    }

    .vision-content,
    .made-by-content,
    .sustainable-content,
    .technology-content,
    .telecom-content,
    .education-content,
    .member-content {
        flex-direction: column;
    }

    .vision-text,
    .made-by-text,
    .sustainable-text,
    .technology-text,
    .telecom-text,
    .education-text,
    .member-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .investor-link-group {
        flex-direction: column;
    }

    .investor-link-item {
        margin-bottom: 20px;
    }

    .footer-content,
    .footer-bottom .container {
        flex-direction: column;
    }

    .footer-newsletter,
    .footer-social,
    .copyright {
        margin-bottom: 20px;
    }

    .footer-links ul {
        justify-content: center;
    }

    .featured-news-item.active {
        flex-direction: column;
    }

    .featured-news-image,
    .featured-news-content {
        width: 100%;
        padding: 0;
    }

    .featured-news-content {
        padding-top: 20px;
    }

    .why-content,
    .culture-content,
    .benefits-content,
    .team-content.active,
    .contact-content {
        flex-direction: column;
    }

    .why-video,
    .culture-text,
    .benefits-list,
    .team-description,
    .contact-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .contact-action {
        text-align: left;
    }
}

@media screen and (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .main-nav li {
        margin: 5px 0;
    }

    .ecosystem-components,
    .news-grid,
    .values-list,
    .leadership-grid,
    .partners-grid,
    .stories-grid,
    .financial-grid,
    .reports-grid,
    .governance-grid,
    .related-news-grid {
        flex-direction: column;
    }

    .ecosystem-item,
    .news-item,
    .value-item,
    .leader-item,
    .partner-item,
    .story-item,
    .financial-item,
    .report-category,
    .governance-item {
        width: 100%;
        margin: 0 0 20px;
    }

    .stock-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .stock-code,
    .stock-price {
        margin-bottom: 20px;
    }

    .stock-price {
        text-align: center;
    }

    .price-change {
        justify-content: center;
    }

    .meeting-item,
    .disclosure-item {
        flex-direction: column;
    }

    .meeting-year,
    .disclosure-date {
        width: 100%;
        padding: 10px 0;
        text-align: center;
    }

    .job-item {
        flex-direction: column;
    }

    .job-action {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

/* ============================
     ANIMATIONS
  ============================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-in-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-right {
    animation: slideInRight 0.5s ease-in-out;
}

/* ============================
     GLOBAL STYLES
  ============================ */
:root {
    --primary-color: #086924;
    /* EMC orange */
    --secondary-color: #0056b3;
    /* EMC blue */
    --text-color: #333;
    --light-text: #666;
    --lighter-text: #999;
    --lightest-bg: #f9f9f9;
    --light-bg: #f1f1f1;
    --border-color: #e1e1e1;
    --white: #fff;
    --black: #000;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --grey-100: #f8f9fa;
    --grey-200: #e9ecef;
    --grey-300: #dee2e6;
    --grey-400: #ced4da;
    --grey-500: #adb5bd;
    --heading-font: "Roboto", sans-serif;
    --body-font: "Roboto", sans-serif;
}

body {
    font-family: var(--body-font);
    color: #020202;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

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

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

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

ul {
    list-style: none;
}

button,
.btn-primary,
.btn-secondary {
    cursor: pointer;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e64a19;
    /* Darker orange */
    color: var(--white);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-text {
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.btn-text i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.btn-text:hover i {
    transform: translateX(3px);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* ============================
     HEADER STYLES
  ============================ */
header {
    background-color: #00ee00;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 50px;
}

.header-tools {
    display: flex;
    align-items: center;
}

.search-btn,
.language-selector {
    margin-left: 20px;
}

.language-selector {
    position: relative;
}

.current-lang {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.language-selector:hover .language-dropdown {
    display: block;
}

.language-dropdown li {
    margin-bottom: 5px;
}

/* ============================
     FOOTER STYLES
  ============================ */
footer {
    background-color: #00c853;
    color: #fff;
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-newsletter h3,
.footer-social h3,
.footer-nav-column h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    margin-right: 10px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    padding: 12px 25px;
    background: #fff;
    color: #00c853;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #fff;
    color: #00c853;
}

.footer-navigation {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-nav-column {
    flex: 1;
    min-width: 150px;
    margin-bottom: 20px;
}

.footer-nav-column h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-nav-column ul li {
    margin-bottom: 8px;
}

.footer-nav-column a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-nav-column a:hover {
    color: #fff;
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00c853;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ============================
     SLIDER STYLES
  ============================ */
.main-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.slider-container {
    max-width: 95%;
    margin: 0 auto;
    position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 200, 83, 0.2);
    padding: 3px;
}

.slider-wrapper {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(0, 200, 83, 0.1);
    border-radius: 6px;
    background: #fff;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slide-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 30px 40px;
    width: 100%;
}

.slide-image {
    flex: 0 0 50%;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
}

.slide-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.slide-text {
    flex: 0 0 45%;
    padding: 20px 0;
}

.slide-text .news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.slide-text .news-category {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 200, 83, 0.15);
    color: #00b34a;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.slide-text h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #111;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
}

.slide-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
    letter-spacing: 0.2px;
}

.slide-text .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00b34a;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.slide-text .read-more:hover {
    gap: 12px;
    color: #008c3a;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .slide-text h2 {
        font-size: 28px;
    }

    .slide-text p {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .slide-text h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .slide-text h2 {
        font-size: 24px;
    }

    .slide-text p {
        font-size: 15px;
        line-height: 1.6;
    }

    .slide-text .news-category {
        font-size: 14px;
    }
}

/* Hiệu ứng chuyển trang */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00c853;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: none;
}

.page-transition-overlay.active {
    transform: translateY(0);
}

.page-transition-overlay.fade-out {
    transform: translateY(-100%);
}

/* Animation cho nội dung trang */
.page-content {
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.page-content.fade-out {
    opacity: 0;
}

/* Logo animation trong quá trình chuyển trang */
.transition-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

.transition-logo.active {
    opacity: 1;
}

/* Thêm hiệu ứng bounce cho logo khi chuyển trang */
@keyframes logoBounce {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.transition-logo.active img {
    animation: logoBounce 0.6s infinite ease-in-out;
}