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

@font-face {
    font-family: 'RobotoCustom';
    src: url('https://fonts.gstatic.com/s/roboto/v50/KFO5CnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmkC3kaWzU.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Font VLBoosterNextFY-Black */
@font-face {
    font-family: 'VLBoosterNextFY-Black';
    src: url('../fonts/vl_boosternextfy_black/VL_BoosterNextFY-Black.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'RobotoCustom', 'iCielGotham-Medium', sans-serif;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 1100px) {
    body {
        padding-top: 0;
    }
}

/* True Parallax background for specific sections (News + Projects) */
.parallax-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    --parallax-y: 0px;
}

.parallax-section::before {
    content: '';
    position: absolute;
    /* Giảm overscan để hạn chế phóng ảnh quá nhiều (đỡ bể trên màn hình lớn) */
    inset: -12%;
    background-image: var(--parallax-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Rõ nét hơn */
    filter: none;
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.03);
    opacity: var(--parallax-opacity, 0.88);
    z-index: -2;
    pointer-events: none;
    will-change: transform;
}

.parallax-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--parallax-overlay);
    z-index: -1;
    pointer-events: none;
}

.parallax-section--day {
    --parallax-image: url("../../image/pexels-quang-nguyen-vinh-222549-2132603.jpg");
    --parallax-overlay: rgba(255, 255, 255, 0.28);
    --parallax-opacity: 1;
}

.parallax-section--night {
    --parallax-image: url("../../image/pexels-minan1398-941195.jpg");
    --parallax-overlay: rgba(8, 10, 16, 0.28);
    --parallax-opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .parallax-section::before {
        transform: scale(1.08);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-hit {
    animation: highlight-search 1.8s ease;
    border-radius: 4px;
}

@keyframes highlight-search {
    0% {
        background-color: transparent;
    }

    20% {
        background-color: rgba(255, 107, 53, 0.3);
        transform: scale(1.02);
    }

    100% {
        background-color: transparent;
        transform: scale(1);
    }
}

.projects-section .container,
.news .container,
.partners-section .container {
    max-width: 1200px;
}

/* Aligned centered width */

/* Header Image */
.header-image {
    width: 100%;
}

.header-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Header */
/* Header */
.header {
    width: 100%;
    position: relative !important;
    top: 0;
    left: 0;
    z-index: 998;
    background: #1f8dd6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Top Bar */
.top-bar {
    background-color: #1a6da0;
    /* Slightly darker blue */
    color: white;
    font-size: 0.85rem;
    padding: 6px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: auto;
}

.top-bar-item {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}

.top-bar-item:hover {
    opacity: 0.8;
}

.top-bar-item i {
    font-size: 0.9rem;
}

/* Navbar */
.navbar {
    background-color: #1f8dd6;
    padding: 10px 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 80px;
    /* Reduced from 120px */
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.navbar-logo img {
    height: 90px;
    width: 240px;
    object-fit: contain;
    padding: 0;
    margin-top: 15px;
    /* Overlap effect */
    position: relative;
    z-index: 10;
}

.navbar-company-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: -30px;
    /* Significant overlap with logo */
    color: white;
    line-height: 1.2;
    font-family: 'VLBoosterNextFY-Black', sans-serif !important;
}

.company-name-line1 {
    font-size: 26px;
    /* Increased from 20px */
    font-weight: bold !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'VLBoosterNextFY-Black', sans-serif !important;
    line-height: 1;
    text-align: center;
    margin-bottom: 8px;
}

.company-name-line2 {
    font-size: 40px;
    /* Increased from 32px */
    font-weight: bold !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    display: block;
    text-align: center;
    font-family: 'VLBoosterNextFY-Black', sans-serif !important;
    line-height: 1.1;
}

/* Navigation Menu */
.nav-menu--navbar {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0rem;
    /* Reduced gap for items closer together */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    padding-bottom: 0;
    justify-content: center;
}

.nav-menu--navbar li {
    padding: 0;
    margin-left: -8px;
}

.nav-menu--navbar li:first-child {
    margin-left: 0;
}

.nav-menu--navbar a {
    color: #9acaeb !important;
    font-size: 0.95rem;
    /* Increased slightly to match the bold feel */
    font-weight: 550 !important;
    text-decoration: none;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
    font-family: 'iCielGotham-Medium', sans-serif !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    /* Reduced gap */
}

.nav-menu--navbar a:hover {
    color: #fff !important;
}

/* Navbar Search Box */
.navbar-search-item {
    display: flex;
    align-items: center;
    margin-left: 0.6rem;
    /* Reduced from 1rem */
}

.navbar-search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 0px 12px;
    height: 32px;
    transition: all 0.3s ease;
}

.navbar-search-form:focus-within {
    background: rgba(255, 255, 255, 1);
    border-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.navbar-search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 0;
    width: 140px;
    font-size: 0.9rem;
    height: 100%;
    transition: width 0.3s ease, color 0.3s ease;
}

.navbar-search-form:focus-within .navbar-search-input {
    color: #333;
    width: 180px;
}

.navbar-search-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-search-form:focus-within .navbar-search-input::placeholder {
    color: #999;
}

.navbar-search-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-search-form:focus-within .navbar-search-btn {
    color: #1f7fba;
}

.navbar-search-btn:hover {
    opacity: 0.8;
}

.nav-menu--navbar a i {
    font-size: 1.2rem;
}

.nav-menu--navbar a:only-child i {
    font-size: 1.3rem;
}

.nav-menu--navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-menu--navbar a:hover::after,
.nav-menu--navbar a.active::after {
    width: 100%;
}

.nav-menu--navbar a:hover {
    color: white;
}

/* Active State specific styles */
.nav-menu--navbar a.active {
    color: white;
}

.nav-menu--navbar a.active::after {
    width: 100%;
}


/* Hamburger & Mobile Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1100px) {
    .nav-menu--navbar {
        display: none;
        /* Hide standard menu on tablets/mobile */
    }

    .navbar-actions {
        display: flex;
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    .navbar-logo img {
        height: 80px;
        width: 80px;
        margin-top: 0;
        border: none;
        box-shadow: none;
        padding: 0;
        background: transparent;
        border-radius: 8px;
    }

    .navbar-brand {
        gap: 10px;
    }

    .navbar-company-name {
        margin-left: 0;
    }

    .company-name-line1 {
        display: block;
        /* Show on mobile */
        font-size: 8px;
        white-space: nowrap;
    }

    .company-name-line2 {
        font-size: 18px;
    }

    .top-bar {
        display: none;
        /* Often hidden on mobile to save space */
    }

    .navbar-container {
        height: 70px;
    }
}

.hamburger {
    display: none;
    /* Hidden on desktop */
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px 12px;
    color: white;
    font-size: 1.2rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hotline a {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    background: #ff0000;
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hotline a:hover {
    background: #cc0000;
}

.search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 50px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    min-width: 40px;
    height: 40px;
}

.search-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-1px);
}

.search-icon {
    font-size: 1.1rem;
    line-height: 1;
}

/* Search modal */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 1101;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.search-modal__panel {
    position: relative;
    width: min(720px, calc(100% - 24px));
    margin: 90px auto 0;
    background: #fff;
    border-radius: 14px;
    padding: 18px 16px 16px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.search-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    color: #333;
    font-size: 22px;
    cursor: pointer;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 1rem;
    outline: none;
}

.search-input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.18);
}

.search-submit {
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #ff6b35;
    background: #ff6b35;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.search-submit:hover {
    transform: translateY(-1px);
}

.search-message {
    margin-top: 10px;
    color: #c0392b;
    font-weight: 600;
    min-height: 1.2em;
}

.search-hit {
    background: rgba(255, 235, 59, 0.55);
    box-shadow: 0 0 0 4px rgba(255, 235, 59, 0.28);
    border-radius: 6px;
}

/* Floating Phone Button Container */
.phone-ring-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

/* Các lớp tạo sóng lan tỏa */
.phone-ring-waves,
.phone-ring-waves-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #1f7fba;
    border-radius: 50%;
    animation: pulse-ring 2s infinite ease-in-out;
}

.phone-ring-waves-2 {
    animation-delay: 0.5s;
}

/* Nút chứa icon điện thoại */
.phone-ring-circle {
    width: 60px;
    height: 60px;
    background-color: #1f7fba;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(31, 127, 186, 0.5);
    animation: phone-shake 1.5s infinite ease-in-out;
    position: relative;
    z-index: 1;
}

.floating-phone-btn {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    padding: 0;
}

.floating-phone-btn:hover {
    color: #e7f1f8;
}

.floating-phone-btn:active {
    transform: scale(0.95);
}

/* Animation tạo sóng lan tỏa */
@keyframes pulse-ring {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Animation rung icon điện thoại */
@keyframes phone-shake {

    0%,
    100% {
        transform: rotate(0);
    }

    10%,
    30%,
    50% {
        transform: rotate(-15deg);
    }

    20%,
    40%,
    60% {
        transform: rotate(15deg);
    }
}

/* Phone Popup */
.phone-popup {
    position: fixed;
    inset: 0;
    z-index: 1101;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.phone-popup.active {
    opacity: 1;
    visibility: visible;
}

.phone-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.phone-popup__panel {
    position: relative;
    width: min(400px, calc(100% - 24px));
    margin: auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px 24px 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    top: 50%;
    transform: translateY(-50%);
}

.phone-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    color: #333;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-popup__close:hover {
    background: #f5f5f5;
}

.phone-popup__content {
    text-align: center;
}

.phone-popup__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e7f1f8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #1f7fba;
}

.phone-popup__content h3 {
    margin: 0 0 16px;
    font-size: 1.5rem;
    color: #333;
    font-weight: 700;
}

.phone-popup__number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #1f7fba;
    text-decoration: none;
    margin: 0 0 12px;
    transition: color 0.2s ease;
}

.phone-popup__number:hover {
    color: #1565a0;
}

.phone-popup__text {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .phone-ring-container {
        bottom: 20px;
        right: 20px;
        width: 70px;
        height: 70px;
    }

    .phone-ring-circle {
        width: 50px;
        height: 50px;
    }

    .floating-phone-btn {
        font-size: 20px;
    }

    .phone-popup__panel {
        width: calc(100% - 32px);
        padding: 32px 20px 20px;
    }

    .phone-popup__icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .phone-popup__content h3 {
        font-size: 1.3rem;
    }

    .phone-popup__number {
        font-size: 1.6rem;
    }
}

.phone-icon {
    background: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 40px;
    bottom: 0px;
}

.nav-menu li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0 1rem;
}



.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.0rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #ff6b35;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: transparent;
    border: 2px solid #fff;
    cursor: pointer;
    padding: 8px 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 4px;
    transition: all 0.3s;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: scale(1.05);
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #1378b7;
    /* Blue like footer bottom */
    z-index: 1000;
    transition: left 0.3s ease;
    padding: 20px 0;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
    padding: 0 20px 20px;
}

.sidebar-logo {
    display: flex;
    justify-content: center;
    padding: 0 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.sidebar-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.sidebar-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-hotline {
    padding: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-hotline a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    background: #ff6b35;
    /* Using brand orange for contrast */
    padding: 15px;
    border-radius: 50px;
}

.sidebar-hotline a:hover {
    background: #cc0000;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Banner Section */
.banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Banner lớn hơn */
    height: clamp(300px, 40vw, 500px);
}

.banner-slider {
    width: 100%;
    position: relative;
    height: 100%;
}

.banner-slide {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    height: 100%;
}

.banner-slide.active {
    position: relative;
    opacity: 1;
    height: 100%;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Banner Navigation Buttons */
.banner-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.9);
    color: #1f7fba;
    border: 2px solid #1f7fba;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.banner-nav-btn:hover {
    background: #1f7fba;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(31, 127, 186, 0.4);
}

.banner-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.banner-nav-prev {
    left: 20px;
}

.banner-nav-next {
    right: 20px;
}

@media (max-width: 767px) {
    .banner-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .banner-nav-prev {
        left: 10px;
    }

    .banner-nav-next {
        right: 10px;
    }
}

/* News Section */
.news {
    padding: 30px 0 40px;
    background: transparent;
}

.news.parallax-section::before,
.news.parallax-section::after {
    display: none;
}

.about {
    padding: 44px 0;
    background-image: url("../../image/background_01.png");
    background-repeat: repeat;
    background-size: auto;
    background-position: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.about__logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.about__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.about__logo-text {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    font-family: 'iCielGotham-Medium', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

.about__logo-line1 {
    font-size: clamp(1.15rem, 1.3vw, 1.4rem);
    font-weight: 400;
    color: #111;
    text-transform: none;
}

.about__logo-line2 {
    margin-top: 6px;
    font-size: clamp(1.9rem, 2.6vw, 2.45rem);
    font-weight: 900;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.about__logo-hyphen {
    color: #dc2626;
    padding: 0 2px;
}

.about__text {
    flex: 1;
}

.about__quote {
    position: relative;
    /* chừa không gian để quote-right lớn ở góc dưới phải */
    padding: 28px 28px 78px;
}

.about__quote-top {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    justify-content: space-between;
}

.about__quote-top p {
    margin: 0;
    font-size: 2px;
    line-height: 1.8;
    flex: 1;
}

.about__more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    min-width: 150px;
    padding: 6px 18px;
    line-height: 1.1;
    font-size: 0.95rem;
    border-radius: 2c0px;
    background: #ff6b35;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #ff6b35;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.about__more-btn:hover {
    transform: translateY(-1px);
    background: #fff;
    color: #ff6b35;
}

.about__more-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.25);
}

.about__quote-icon {
    font-size: 60px;
    color: #dc2626;
    pointer-events: none;
    line-height: 1;
}

/* Override Font Awesome `.fa { font: ... 14px/1 ... }` if it loads after */
.about__quote-icon.fa {
    font-size: 60px;
    color: #dc2626;
}

.about__quote-icon--tl {
    flex: 0 0 auto;
    margin-top: 2px;
}

.about__quote-icon--br {
    flex: 0 0 auto;
    margin-top: 20px;
    align-self: flex-end;
}

.about h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #ff6b35;
    font-weight: 700;
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    transform: none;
    width: 80px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

.about p {
    max-width: 980px;
    margin: 1.2rem 0 0;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #333;
    text-align: left;
}

@media (max-width: 767px) {
    .about__grid {
        flex-direction: column;
        text-align: center;
    }

    .about h2 {
        text-align: center;
    }

    .about h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about p {
        text-align: center;
        margin-top: 1.25rem;
    }
}

.news h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ff6b35;
    font-weight: 700;
    position: relative;
}

.news h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

.featured-news {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.35s ease;
    will-change: transform;
}

.featured-news:hover {
    transform: translateX(10px);
}

.news-image {
    flex: 1;
    max-width: 350px;
}

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

.news-content {
    flex: 2;
    padding: 2rem;
}

.news-content h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.news-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-date {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 600;
}

.other-news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 0;
    max-width: 1200px;
}

.news-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease;
    will-change: transform, opacity;
}

.news-item:hover {
    transform: translateX(10px);
}

.news-item img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    display: block;
    border-radius: 0;
}

.news-info {
    padding: 1.5rem;
}

.news-info h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.news-info p {
    font-size: 0.85rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Image Section */


/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.partners-header h2 {
    color: #0066ff;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.partners-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 171px;
    height: 4px;
    background: #0066ff;
    border-radius: 2px;
}

.partners-description {
    max-width: 900px;
    margin: 40px auto 50px;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-item {
    flex: 0 0 14.28%;
    /* 7 items per row to match reference image style */
    border: 1px solid #e0e0e0;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    height: 120px;
    transition: all 0.3s ease;
    margin: -0.5px;
    /* Slight overlap to avoid double borders */
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s ease;
}

.partner-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border-color: #1f7fba;
}

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

@media (max-width: 1200px) {
    .partner-item {
        flex: 0 0 20%;
        /* 5 items */
    }
}

@media (max-width: 900px) {
    .partner-item {
        flex: 0 0 25%;
        /* 4 items */
    }
}

@media (max-width: 600px) {
    .partner-item {
        flex: 0 0 33.33%;
        /* 3 items */
    }
}

@media (max-width: 400px) {
    .partner-item {
        flex: 0 0 50%;
        /* 2 items */
    }
}

/* New News Layout Styles */
.news-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-header h2 {
    color: #0066ff;
    text-transform: uppercase;
    margin-bottom: 25px;
    /* Increased to make space for underline */
    font-weight: bold;
    font-size: 40px;
    /* Matched to DỰ ÁN */
    position: relative;
    display: inline-block;
}

.news-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 171px;
    height: 4px;
    background: #0066ff;
    border-radius: 2px;
}

.news-subtitle {
    color: #666;
    font-size: 17px;
    margin: 0;
}

.news-layout {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
    /* Both columns align to top */
}

.news-list {
    flex: 0 0 52%;
    /* Fixed width proportion */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
}

.news-list-item {
    display: flex;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px dashed #dcdcdc;
}

.news-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-list-img {
    width: 140px;
    /* Reduced from 180px */
    flex-shrink: 0;
}

.news-list-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Show full image without cropping */
    border: 1px solid #eee;
    padding: 3px;
    background: #fff;
    display: block;
    /* Ensure block display */
}

.news-list-content {
    flex: 1;
}

.news-list-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 5px;
}

.news-date-box {
    background: #0066ff;
    color: white;
    padding: 6px 8px;
    text-align: center;
    min-width: 48px;
    flex-shrink: 0;
    font-weight: bold;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.date-day {
    font-size: 1rem;
    display: block;
}

.date-month {
    font-size: 0.7rem;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    margin-top: 2px;
    padding-top: 2px;
}

.news-list-title {
    margin: 0;
    font-size: 1rem;
    /* Reduced from 1.15rem */
    line-height: 1.4;
    font-weight: 700;
    color: #000;
}

.news-list-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.news-list-title a:hover {
    color: #0066ff;
}

.news-meta {
    font-size: 0.8rem;
    /* Scaled down */
    color: #666;
    display: flex;
    gap: 15px;
    margin-left: 65px;
    /* Re-aligned for 140px image */
    /* Offset to align with title text */
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-style: italic;
}

.news-meta i {
    color: #0066ff;
    font-size: 0.9rem;
}

/* Right Featured Item */
.news-featured {
    flex: 0 0 44%;
    /* Balanced width */
}

.news-featured-img img {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
    display: block;
    margin-bottom: 12px;
}

.news-featured-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
}

.post-cat {
    color: #0066ff;
    font-weight: 600;
}

.news-featured-title {
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.4;
}

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

.news-featured-title a:hover {
    color: #0066ff;
}

.read-more {
    color: #0066ff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .news-layout {
        flex-direction: column-reverse;
    }

    .news-list-img {
        width: 100px;
    }

    .news-meta {
        margin-left: 0;
        margin-top: 8px;
    }
}

.projects-section {
    padding: 60px 0 20px;
    background: transparent;
}

.projects-section .container {
    max-width: 1200px;
    /* Expanded further */
    margin: 0 auto;
}

.projects-section.parallax-section::before,
.projects-section.parallax-section::after {
    display: none;
}

.projects-section h2 {
    text-align: center;
    font-size: 40px;
    /* Updated to match other sections */
    margin-bottom: 1.5rem;
    color: #0066ff;
    font-weight: 700;
    position: relative;
}

.projects-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 171px;
    height: 4px;
    background: #0066ff;
    border-radius: 2px;
}

.projects-description {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 17px;
    /* Updated as requested */
    line-height: 1.5;
    padding: 0 15px;
}

.projects-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.projects-navigation {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.projects-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.projects-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Row 1: 2 card nhỏ bên trái + 1 card lớn bên phải */
.projects-row-1 {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
}

/* Cột chứa 2 card nhỏ xếp dọc */
.projects-small-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 0 0 35%;
}

/* Card nhỏ */
.project-item-small {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease;
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
}

.project-item-small img {
    width: 100%;
    height: 150px;
    /* Reduced from 180px */
    object-fit: cover;
    object-position: center;
    display: block;
    padding: 0;
    position: relative;
}

.hot-badge {
    position: absolute;
    top: 15px;
    left: 0;
    background-color: #e31b23;
    color: white;
    font-weight: bold;
    font-size: 14px;
    padding: 5px 15px;
    z-index: 10;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Card lớn */
.project-item-large {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease;
    will-change: transform, opacity;
    display: flex;
    flex: 1;
    min-height: 277px;
}

.project-item-large:hover,
.project-item-small:hover {
    transform: translateX(10px);
}

/* Card lớn - ảnh trái, text phải */
.project-item-left {
    flex-direction: row;
}

.project-item-left .project-image {
    flex: 0 0 660px;
    position: relative;
}

.project-item-left .project-image img {
    width: 660px;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.project-item-left .project-info {
    flex: 1;
    padding: 0.2rem 1.5rem 1.2rem !important;
    /* Reduced top padding to move text up */
}

/* Card lớn - ảnh phải, text trái */
.project-item-right {
    flex-direction: row-reverse;
}

.project-item-right .project-image {
    flex: 0 0 660px;
    position: relative;
}

.project-item-right .project-image img {
    width: 660px;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.project-item-right .project-info {
    flex: 1;
    padding: 0.2rem 1.5rem 1.2rem !important;
    /* Reduced top padding to move text up */
}

/* Row 2: Card lớn full width */
.projects-row-2 {
    width: 100%;
}

.projects-row-2 .project-item-large {
    width: 100%;
}

/* Project Button */
.project-btn {
    background: rgba(19, 120, 183, 0.1);
    /* #1378B71A */
    color: #1378b7;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 400;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 0;
    align-self: flex-start;
}

.project-btn:hover {
    background: #1378b7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 120, 183, 0.3);
}

/* View More Button */
/* View More Button */
.projects-view-more {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
    padding-right: 0;
}

.view-more-btn {
    background: #1378b7;
    color: white;
    border: none;
    padding: 8px 16px;
    /* Reduced from 10px 20px */
    font-weight: bold;
    font-size: 0.8rem;
    /* Reduced from 0.85rem */
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: none;
    border-radius: 4px;
}

.view-more-btn:hover {
    background: #0f6296;
    transform: translateY(0);
    box-shadow: none;
}

.view-more-btn:hover {
    background: rgba(19, 120, 183, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 120, 183, 0.4);
}

/* Base styles cho project-item */
.project-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease;
    will-change: transform, opacity;
}



.project-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0.5rem;
    /* Moves content further up */
}

.project-title {
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    /* Reduced from 1.2rem */
    margin-bottom: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-address {
    color: #333;
    font-size: 17px;
    /* Updated as requested */
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
}

.project-info h4 {
    color: black;
    margin-bottom: 0.4rem;
    font-size: 16px;
    /* Reduced from 20px */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-info p {
    font-size: 14px;
    /* Reduced from 17px */
    line-height: 1.4;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;

}

.nav-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #ff6b35;
    border: 2px solid #ff6b35;
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'iCielGotham-Medium', sans-serif;
    border-radius: 50%;
}

/* Specific overrides for project content */
.project-info .project-title {
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    /* Reduced from 1.2rem */
    margin-bottom: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-info .project-address {
    color: #333;
    font-size: 17px;
    /* Updated to match request */
    margin-bottom: 1.5rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
    flex: none;
}

.nav-btn:hover {
    background: #ff6b35;
    color: white;
    transform: scale(1.1);
}

/* News Navigation */
.news-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.news-nav-btn {
    background: #fff;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-nav-btn:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.news-nav-btn.active {
    background: #ff6b35;
    color: white;
}

/* Footer */
.footer {
    background: #34383c;
    background: #e7f1f8;
    /* Light blue background */
    color: #333;
    padding: 0;
    font-family: 'iCielGotham-Medium', sans-serif;
    border-top: none;
    position: relative;
    width: 100%;
}

.footer::after {
    display: none;
}

.footer-top {
    padding: 40px 0;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 280px;
}

.footer-col-form {
    flex: 0 0 300px;
}

.footer-col-map {
    flex: 1.2;
}

.footer-heading {
    color: #003366;
    /* Dark Blue */
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #003366;
    display: inline-block;
}

/* Form Styles */
.footer-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
    outline: none;
}

.footer-submit-btn {
    background-color: #003366;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    width: fit-content;
    border-radius: 4px;
    transition: background 0.3s;
}

.footer-submit-btn:hover {
    background-color: #002244;
}

/* Info Styles */
.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.footer-info-item span {
    font-size: 15px;
}

.footer-info-item i {
    color: #003366;
    width: 20px;
    margin-top: 3px;
    font-size: 1rem;
}

.footer-link {
    color: #4CAF50;
    /* Zalo Green */
    text-decoration: none;
    font-weight: bold;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: #003366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: #002244;
}

.social-icon i {
    font-size: 1.1rem;
}

/* Map Styles */
.footer-map iframe {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #1378b7;
    background: #1378b7;
    padding: 15px 0;
    margin-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #fff;
}

.highlight-text {
    color: #8BC34A;
    /* Light Green */
    font-weight: bold;
}

.scroll-top-btn {
    width: 35px;
    height: 35px;
    background: #fff;
    border: 1px solid #003366;
    color: #003366;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.scroll-top-btn:hover {
    background: #003366;
    color: white;
}

/* Responsive */
@media (min-width: 768px) and (max-width: 1023px) {
    .navbar-brand {
        gap: 0.4rem;
    }

    .company-name-line1 {
        font-size: 1.5rem;
    }

    .company-name-line2 {
        font-size: 1.5rem;
    }

    .nav-menu li {
        padding: 0 0.5rem;
    }

    .featured-news {
        flex-direction: column;
        gap: 1.5rem;
    }

    .news-image {
        max-width: 100%;
    }

    .other-news {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .projects-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        border-radius: 50%;
    }
}

@media (min-width: 480px) and (max-width: 767px) {

    .news h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .featured-news {
        flex-direction: column;
        gap: 1rem;
    }

    .news-content {
        padding: 1.5rem;
    }

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

    .news-info {
        padding: 1rem;
    }

    .projects-section {
        padding: 40px 0;
    }

    .projects-section h2,
    .news h2,
    .partners-header h2 {
        font-size: 40px !important;
        margin-bottom: 2rem;
    }

    .projects-row-1 {
        flex-direction: column;
    }

    .projects-small-column {
        flex: 1;
        width: 100%;
    }

    .project-item-large {
        flex-direction: column !important;
        min-height: auto;
    }

    .project-item-left .project-image,
    .project-item-right .project-image {
        width: 100%;
        max-width: 100%;
        flex: none;
        /* Prevent taking full height in column mode */
    }

    .project-item-left .project-image img,
    .project-item-right .project-image img {
        width: 100%;
        height: auto !important;
        /* Force natural height for full image */
        object-fit: contain;
        border-radius: 12px 12px 0 0;
    }

    .project-item-left .project-info,
    .project-item-right .project-info {
        padding: 1.5rem !important;
        /* Restore padding on mobile */
    }

    .project-info {
        padding: 1.5rem !important;
        justify-content: flex-start;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
        border-radius: 50%;
    }

    .footer-row {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-col {
        flex: 1 1 100%;
        min-width: 0;
        width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-heading {
        margin-left: auto;
        margin-right: auto;
        display: table;
        /* Centers inline-block with border-bottom */
    }

    .footer-info-item {
        justify-content: center;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-submit-btn {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    .nav-menu--navbar {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .hotline {
        display: none;
    }

    .navbar-company-name {
        display: flex;
    }

    .search-toggle .search-text {
        display: none;
    }

    .navbar-logo {
        display: block;
    }

    .navbar-top-row {
        padding: 1rem;
    }
}

@media (max-width: 479px) {
    .container {
        padding: 0 10px;
    }

    .news h2,
    .projects-section h2,
    .partners-header h2 {
        font-size: 40px !important;
        margin-bottom: 1.5rem;
    }

    .featured-news {
        flex-direction: column;
        gap: 1rem;
    }

    .news-content {
        padding: 1rem;
    }

    .news-content h3 {
        font-size: 1.1rem;
    }

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

    .news-info {
        padding: 1rem;
    }

    .news-info h4 {
        font-size: 1rem;
    }

    .news-info p {
        font-size: 0.8rem;
    }

    .projects-section {
        padding: 30px 0;
    }

    .projects-section h2,
    .news h2,
    .partners-header h2 {
        font-size: 40px !important;
        margin-bottom: 1.5rem;
    }

    .projects-description {
        margin-bottom: 2rem;
        font-size: 17px;
    }

    .projects-container {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .projects-wrapper {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
        display: block;
    }

    .project-item {
        margin: 0 0 20px;
        flex-direction: column !important;
    }

    .project-item .project-image {
        width: 100%;
        max-width: 100%;
        flex: none !important;
    }

    .project-item img {
        width: 100%;
        height: auto !important;
        object-fit: contain;
        border-radius: 12px 12px 0 0;
    }

    .project-info {
        padding: 1rem !important;
        justify-content: flex-start;
    }

    .project-info h4,
    .project-info .project-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .project-info .project-address {
        font-size: 17px;
        margin-bottom: 1rem;
    }

    .project-info .project-title,
    .project-info .project-address {
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        overflow: visible !important;
        white-space: normal !important;
        display: block !important;
    }

    .project-btn {
        font-size: 20px !important;
        padding: 6px 12px !important;
    }


    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        border-radius: 50%;
    }

    .footer-row {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-col {
        min-width: 0;
        width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-heading {
        margin-left: auto;
        margin-right: auto;
        display: table;
    }

    .footer-info-item {
        justify-content: center;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-submit-btn {
        margin: 0 auto;
    }

    .footer-logo img {
        width: 100px;
    }

    .footer-info p {
        font-size: 0.8rem;
    }
}
/* Sidebar for Mobile */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: #1f8dd6;
    z-index: 1100;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-logo {
    width: 60px;
    height: auto;
}

.sidebar-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.sidebar-close:hover {
    opacity: 0.8;
}

.sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 20px 0;
}

.sidebar-menu li {
    margin: 0;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s;
}

.sidebar-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-menu li a i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}