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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}


.section-breakthrough-journey-with-business .container {
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.section-breakthrough-journey-with-business .hero-section {
    position: relative;
    min-height: 791px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

/* Background */
.section-breakthrough-journey-with-business .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4285f4 0%, #1b74e4 50%, #10d5eb 100%);
    background-size: 234.4% 124.91%;
    background-position: 42.27% 79.7%;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Hero Content Layout */
.section-breakthrough-journey-with-business .hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
}

/* Main Content */
.section-breakthrough-journey-with-business .hero-main {
    max-width: 584px;
}

.section-breakthrough-journey-with-business .hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 24px;
}

.section-breakthrough-journey-with-business .hero-description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 564px;
}

/* Action Buttons */
.section-breakthrough-journey-with-business .hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.section-breakthrough-journey-with-business .btn-primary-gradient {
    background: linear-gradient(to right, #1b74e4, #10d5eb);
    border: 2px solid #ffffff;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 16px 32px;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 221px;
    text-align: center;
}

.section-breakthrough-journey-with-business .btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 116, 228, 0.3);
}

.section-breakthrough-journey-with-business .btn-secondary-white {
    background: #ffffff;
    border: 2px solid #1b74e4;
    color: #1b74e4;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 16px 32px;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 239px;
    text-align: center;
}

.section-breakthrough-journey-with-business .btn-secondary-white:hover {
    background: linear-gradient(to right, #1b74e4, #10d5eb);
    color: #fff;
    transform: translateY(-2px);
    border: 2px solid #fff;
}

/* Statistics Grid */
.section-breakthrough-journey-with-business .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-left: 40px;
}

.section-breakthrough-journey-with-business .stat-card {
    background: #ffffff;
    border: 1px solid rgba(27, 116, 228, 0.15);
    border-radius: 20px;
    padding: 16px;
    width: 209px;
    height: 123px;
    box-shadow: 0px 0px 16px 0px rgba(27, 116, 228, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.section-breakthrough-journey-with-business .stat-card:hover:nth-child(odd),
.section-breakthrough-journey-with-business .stat-card:hover:nth-child(even) {
    transform: scale(0.78);
}

.section-breakthrough-journey-with-business .stat-card:nth-child(odd) {
    transform: translateY(-20px);
}

.section-breakthrough-journey-with-business .stat-card:nth-child(even) {
    transform: translateY(40px);
}

.section-breakthrough-journey-with-business .stat-number {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #1b74e4;
    margin-bottom: 8px;
    font-variation-settings: 'wdth' 100;
}

.section-breakthrough-journey-with-business .stat-description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: #273444;
    text-align: center;
}

/* Awards Section */
.section-breakthrough-journey-with-business .awards-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.section-breakthrough-journey-with-business .award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-breakthrough-journey-with-business .award-image {
    width: 170px;
    height: 177px;
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.section-breakthrough-journey-with-business .award-image:hover {
    transform: scale(1.05);
}

.section-breakthrough-journey-with-business .award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-breakthrough-journey-with-business .award-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: #ffffff;
    white-space: nowrap;
    font-variation-settings: 'wdth' 100;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-breakthrough-journey-with-business .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .section-breakthrough-journey-with-business .stats-grid {
        margin-left: 0;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-breakthrough-journey-with-business .container {
        padding: 0 16px;
    }

    .section-breakthrough-journey-with-business .hero-section {
        padding: 60px 0;
        min-height: auto;
    }

    .section-breakthrough-journey-with-business .hero-title {
        font-size: 28px;
    }

    .section-breakthrough-journey-with-business .hero-description {
        font-size: 16px;
    }

    .section-breakthrough-journey-with-business .hero-actions {
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
    }

    .section-breakthrough-journey-with-business .btn-primary-gradient,
    .section-breakthrough-journey-with-business .btn-secondary-white {
        width: 100%;
        max-width: 300px;
    }

    .section-breakthrough-journey-with-business .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .section-breakthrough-journey-with-business .stat-card {
        width: 180px;
        height: 100%;
    }

    .section-breakthrough-journey-with-business .awards-section {
        gap: 20px;
    }

    .section-breakthrough-journey-with-business .award-image {
        width: 120px;
        height: 120px;
    }

    .section-breakthrough-journey-with-business .award-title {
        font-size: 14px;
    }

    .section-breakthrough-journey-with-business .awards-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .section-breakthrough-journey-with-business .hero-title {
        font-size: 24px;
    }

    .section-breakthrough-journey-with-business .hero-description {
        font-size: 14px;
    }

    /* .section-breakthrough-journey-with-business .stats-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    } */

    .section-breakthrough-journey-with-business .awards-section {
        flex-direction: column;
        align-items: center;
        margin-top: 15px;
    }
}

/*
* Thành viên hiệp hội và cộng đồng
*/

/* Associations section */
.associations-section {
    background: #216ddd;
    background: linear-gradient(135deg, #216ddd 0%, #4285f4 100%);
    padding: 43px 0 86px;
    position: relative;
    overflow: hidden;
}

.associations-section .container {
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 79px;
    position: relative;
}

/* Section title */
.associations-section .section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 45px;
    line-height: 1.4;
}

/* Logos grid */
.associations-section .logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 26px;
    max-width: 1309px;
    margin: 0 auto;
}

/* Logo cards */
.associations-section .logo-card {
    background: #ffffff;
    border-radius: 15px;
    height: 73px;
    width: 197px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.associations-section .logo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.associations-section .logo-image {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Responsive design */
@media (max-width: 1400px) {
    .associations-section .container {
        padding: 0 40px;
    }

    .associations-section .logos-grid {
        gap: 20px;
    }

    .associations-section .logo-card {
        width: auto;
        min-width: 160px;
    }
}

@media (max-width: 1200px) {
    .associations-section .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .associations-section .logo-card {
        width: 100%;
        max-width: 280px;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .associations-section {
        padding: 30px 0 60px;
    }

    .associations-section .container {
        padding: 0 20px;
    }

    .associations-section .section-title {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .associations-section .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .associations-section .logo-card {
        height: 65px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    /* .associations-section .logos-grid {
        grid-template-columns: 1fr;
    } */

    .associations-section .logo-card {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Tại sao chọn CloudGO */
/* Main section */
.section-why-choose-cloudgo {
    background: #e5f1ff;
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

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

/* Section header */
.section-why-choose-cloudgo .section-header {
    text-align: center;
    margin-bottom: 0px;
}

.section-why-choose-cloudgo .box-grid {
    display: grid;
    gap: 30px;
}

.section-why-choose-cloudgo .main-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 38px;
    color: #273444;
    line-height: 1.4;
    margin-bottom: 24px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.section-why-choose-cloudgo .subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #273444;
    line-height: 1.4;
    max-width: 100%;
}

/* Main content layout */
.section-why-choose-cloudgo .main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Features accordion */
.section-why-choose-cloudgo .features-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-why-choose-cloudgo .accordion-item {
    background: #ffffff;
    border: 1px solid #1b74e4;
    border-radius: 20px;
    box-shadow: 0 0 16px rgba(27, 116, 228, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.section-why-choose-cloudgo .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(27, 116, 228, 0.2);
}

.section-why-choose-cloudgo .accordion-header {
    display: flex;
    align-items: center;
    padding: 15px 38px;
    cursor: pointer;
    gap: 16px;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.section-why-choose-cloudgo .accordion-header:hover {
    background: rgba(27, 116, 228, 0.02);
}

.section-why-choose-cloudgo .accordion-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
    background-color: #1b74e4;
}

.section-why-choose-cloudgo .accordion-header h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #273444;
    flex: 1;
    line-height: 1.4;
    margin-bottom: 0;
}

.section-why-choose-cloudgo .dropdown-arrow {
    font-size: 20px;
    color: #1b74e4;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.section-why-choose-cloudgo .accordion-item.active .dropdown-arrow i {
    transform: rotate(180deg);
}

.section-why-choose-cloudgo .accordion-content {
    padding: 10px 32px 32px 80px;
    display: none;
    animation: slideDown 0.3s ease;
}

.section-why-choose-cloudgo .accordion-item.active .accordion-content {
    display: block;
}

.section-why-choose-cloudgo .accordion-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #545b64;
    margin-bottom: 16px;
    line-height: 1.5;
}

.section-why-choose-cloudgo .accordion-content ul {
    list-style: none;
    padding: 0;
}

.section-why-choose-cloudgo .accordion-content li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #545b64;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.section-why-choose-cloudgo .accordion-content li:before {
    content: '•';
    color: #1b74e4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Dashboard mockup */
/* .section-why-choose-cloudgo .dashboard-mockup {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.section-why-choose-cloudgo .dashboard-mockup {
    margin-top: 50px;
}

.mockup-container img.feature-mockup-image {
    max-width: 100%;
    height: auto;
    transition: opacity 0.4s ease;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

.mockup-container {
    /* position: relative;
    width: 100%;
    height: 100%; */
    position: relative;
    min-height: 500px; /* giữ khung cố định */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Social icons */
.social-icons {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 200px;
    z-index: 3;
}

.social-icons .icon {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-icons .icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Dashboard screens */
.dashboard-screens {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-dashboard {
    position: absolute;
    top: 50px;
    right: 0;
    width: 380px;
    height: 280px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    z-index: 2;
}

.dashboard-header {
    height: 60px;
    background: linear-gradient(135deg, #1b74e4, #4285f4);
    position: relative;
}

.dashboard-header:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 100px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.dashboard-content {
    padding: 20px;
    height: calc(100% - 60px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chart-section {
    height: 80px;
    background: linear-gradient(135deg, #e8f4fd, #f0f8ff);
    border-radius: 8px;
    position: relative;
}

.chart-section:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, #1b74e4, #4285f4);
    border-radius: 4px;
    opacity: 0.7;
}

.data-table {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
}

.data-table:after {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: repeating-linear-gradient(to bottom,
            transparent,
            transparent 12px,
            rgba(27, 116, 228, 0.1) 12px,
            rgba(27, 116, 228, 0.1) 14px);
    border-radius: 4px;
}

/* Mobile dashboard */
.mobile-dashboard {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.mobile-screen {
    width: 180px;
    height: 320px;
    background: #fff;
    border-radius: 24px;
    padding: 20px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-header {
    height: 40px;
    background: linear-gradient(135deg, #1b74e4, #4285f4);
    border-radius: 8px;
    position: relative;
}

.mobile-header:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.pie-chart {
    width: 100px;
    height: 100px;
    background: conic-gradient(#1b74e4 0deg 120deg, #4285f4 120deg 240deg, #10d5eb 240deg 360deg);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.section-why-choose-cloudgo .pie-chart:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
}

.section-why-choose-cloudgo .bar-chart {
    height: 80px;
    background: linear-gradient(to top, #1b74e4 0%, #1b74e4 30%, transparent 30%, transparent 40%, #4285f4 40%, #4285f4 60%, transparent 60%, transparent 70%, #10d5eb 70%, #10d5eb 90%, transparent 90%);
    border-radius: 4px;
    position: relative;
}

/* CTA Section */
.section-why-choose-cloudgo .cta-section {
    text-align: center;
}

.section-why-choose-cloudgo .cta-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #273444;
    margin-bottom: 32px;
}

.section-why-choose-cloudgo .cta-text strong {
    font-weight: 700;
}

.section-why-choose-cloudgo .cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.section-why-choose-cloudgo .btn-primary {
    background: linear-gradient(135deg, #0161f9, #007efb, #11d3eb);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 259px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(1, 97, 249, 0.3);
}

.section-why-choose-cloudgo .btn-secondary {
    background: #ffffff;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(135deg, #0264fa, #10cfec);
    border: 2px solid #0162f9;
    border-radius: 30px;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 259px;
}

.section-why-choose-cloudgo .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(1, 98, 249, 0.2);
    background: linear-gradient(135deg, #0264fa, #10cfec);
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Responsive design */
@media (max-width: 1024px) {
    .section-why-choose-cloudgo .main-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .section-why-choose-cloudgo .main-title {
        font-size: 32px;
    }

    .section-why-choose-cloudgo .subtitle {
        font-size: 20px;
    }

    .section-why-choose-cloudgo .dashboard-mockup {
        height: 400px;
    }

    .section-why-choose-cloudgo .main-dashboard {
        width: 320px;
        height: 240px;
    }

    .section-why-choose-cloudgo .mobile-screen {
        width: 160px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .section-why-choose-cloudgo {
        padding: 60px 0 80px;
    }

    .section-why-choose-cloudgo .container {
        padding: 0 16px;
    }

    .section-why-choose-cloudgo .section-header {
        margin-bottom: 60px;
    }

    .section-why-choose-cloudgo .main-title {
        font-size: 28px;
    }

    .section-why-choose-cloudgo .subtitle {
        font-size: 18px;
    }

    .section-why-choose-cloudgo .main-content {
        gap: 40px;
        margin-bottom: 80px;
    }

    .section-why-choose-cloudgo .accordion-header {
        padding: 20px 24px;
        gap: 12px;
    }

    .section-why-choose-cloudgo .accordion-header h3 {
        font-size: 16px;
    }

    .section-why-choose-cloudgo .accordion-content {
        padding: 0 24px 24px 72px;
    }

    .accordion-content p,
    .accordion-content li {
        font-size: 14px;
    }

    .section-why-choose-cloudgo .dashboard-mockup {
        height: 320px;
    }

    .section-why-choose-cloudgo .main-dashboard {
        width: 280px;
        height: 200px;
        top: 20px;
    }

    .section-why-choose-cloudgo .mobile-screen {
        width: 140px;
        height: 240px;
        padding: 16px 12px;
    }

    .section-why-choose-cloudgo .social-icons {
        max-width: 160px;
        gap: 8px;
    }

    .section-why-choose-cloudgo .social-icons .icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .section-why-choose-cloudgo .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .section-why-choose-cloudgo .btn-primary,
    .section-why-choose-cloudgo .btn-secondary {
        width: 100%;
        max-width: 300px;
        font-size: 18px;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .section-why-choose-cloudgo .main-title {
        font-size: 24px;
    }

    .section-why-choose-cloudgo .subtitle {
        font-size: 16px;
    }

    .section-why-choose-cloudgo .accordion-header {
        padding: 16px 20px;
    }

    .section-why-choose-cloudgo .accordion-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .section-why-choose-cloudgo .accordion-content {
        padding: 0 20px 20px 64px;
    }

    .section-why-choose-cloudgo .dashboard-mockup {
        height: 280px;
    }

    .section-why-choose-cloudgo .main-dashboard {
        width: 240px;
        height: 160px;
    }

    .section-why-choose-cloudgo .mobile-screen {
        width: 120px;
        height: 200px;
        padding: 12px 8px;
    }

    .section-why-choose-cloudgo .pie-chart {
        width: 80px;
        height: 80px;
    }

    .section-why-choose-cloudgo .pie-chart:after {
        width: 32px;
        height: 32px;
    }

    .section-why-choose-cloudgo .bar-chart {
        height: 60px;
    }
}

/* End Tại sao chọn CloudGO */


/* Cảm ơn khách hàng đã tin tưởng */
.testimonials-section {
    position: relative;
    width: 100%;
    height: 1266px;
    overflow: hidden;
    background: #cee4ff;
}

.testimonials-section .background-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Header Content */
.testimonials-section .header-content {
    position: relative;
    text-align: center;
    padding-top: 73px;
}

.testimonials-section .stars-icon {
    position: absolute;
    left: 50%;
    top: 181px;
    transform: translateX(-50%);
    width: 210.73px;
    height: 36.73px;
}

.testimonials-section .stars-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonials-section .subtitle {
    position: absolute;
    left: 50%;
    top: 138px;
    transform: translateX(-50%);
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 22px;
    color: #273444;
    text-align: center;
    white-space: nowrap;
    line-height: normal;
}

.testimonials-section .main-title {
    position: absolute;
    left: 50%;
    top: 73px;
    transform: translateX(-50%);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 38px;
    color: #273444;
    text-align: center;
    white-space: nowrap;
    line-height: 1.4;
}

/* Content Grid */
.testimonials-section .content-grid {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 27px;
    padding: 0 206px;
    margin-top: 175px;
}

/* Case Studies - Left Side */
.testimonials-section .case-studies {
    flex: 1;
    max-width: 494px;
}

.testimonials-section .large-case-study {
    position: relative;
    width: 494px;
    height: 347px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 0px 16px 0px rgba(27, 116, 228, 0.15);
    margin-bottom: 27px;
}

.testimonials-section .case-image {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonials-section .case-image:hover {
    transform: scale(1.03);
}

.testimonials-section .case-image .add-logo,
.testimonials-section .small-case .add-logo,
.testimonials-section .article-image .add-logo {
    background: #fff;
    height: 5rem;
    border: 1px solid #d9d9d9d9;
    padding: 5px;
    width: 145px;
    height: 45px;
    max-width: 100%;
    border-top-right-radius: 10px;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.testimonials-section .play-button {
    position: absolute;
    width: 72px;
    height: 72px;
    z-index: 2;
}

.testimonials-section .play-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonials-section .case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 58.017%;
    top: 71.25%;
    background: #ffffff;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 4px -4px 4px 0px rgba(27, 116, 228, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-section .case-overlay img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Small Case Studies */
.testimonials-section .small-case-studies {
    display: flex;
    gap: 28px;
    margin-bottom: 27px;
}

.testimonials-section .small-case {
    position: relative;
    width: 233px;
    height: 160px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 0px 16px 0px rgba(27, 116, 228, 0.15);
    transition: transform 0.3s ease;
}

.testimonials-section .small-case:hover {
    transform: scale(1.03);
}

.testimonials-section .small-case img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.testimonials-section .play-button-small {
    position: absolute;
    z-index: 2;
}

.testimonials-section .play-button-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Bottom Case Studies */
.testimonials-section .bottom-case-studies {
    display: flex;
    gap: 28px;
}

.testimonials-section .bottom-case {
    position: relative;
    width: 233px;
    height: 160px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 0px 16px 0px rgba(27, 116, 228, 0.15);
}

.testimonials-section .bottom-case img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.testimonials-section .case-overlay-small,
.testimonials-section .case-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 77.025%;
    top: 71.25%;
    background: #ffffff;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 4px -4px 4px 0px rgba(27, 116, 228, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-section .case-overlay-small img,
.testimonials-section .case-overlay-bottom img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.testimonials-section .case-studies .add-logo,
.testimonials-section .article-cards .add-logo {
    position: absolute;
    bottom: 0;
}

.testimonials-section .case-studies .add-logo img,
.testimonials-section .article-cards .add-logo img {
    object-fit: contain;
}

.testimonials-section .stars-icon {
    margin-bottom: 20px;
}

.testimonials-section .star-rating {
    font-size: 24px;
    letter-spacing: 8px;
}

.testimonials-section .star {
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonials-section .case-image img,
.testimonials-section .small-case img,
.testimonials-section .bottom-case img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-section .play-button,
.testimonials-section .play-button-small,
.testimonials-section .play-button-bottom {
    position: absolute;
    top: 45px;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.testimonials-section .play-button {
    right: -20px;
}

.testimonials-section .play-button-small {
    right: -10px;
}

.testimonials-section .play-button:hover,
.testimonials-section .play-button-small:hover,
.testimonials-section .play-button-bottom:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.testimonials-section .play-button i,
.testimonials-section .play-button-small i,
.testimonials-section .play-button-bottom i {
    color: #1b74e4;
    font-size: 20px;
    margin-left: 3px;
}

.testimonials-section .play-button-small,
.testimonials-section .play-button-bottom {
    width: 45px;
    height: 45px;
}

.testimonials-section .play-button-small i,
.testimonials-section .play-button-bottom i {
    font-size: 16px;
}

.testimonials-section .case-overlay,
.testimonials-section .case-overlay-small,
.testimonials-section .case-overlay-bottom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonials-section .case-overlay-small,
.testimonials-section .case-overlay-bottom {
    padding: 8px;
    bottom: 15px;
    right: 15px;
}

.testimonials-section .case-overlay img {
    height: 35px;
    width: auto;
    max-width: 80px;
}

.testimonials-section .case-overlay-small img,
.testimonials-section .case-overlay-bottom img {
    height: 25px;
    max-width: 60px;
}

.testimonials-section .video-stats {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.testimonials-section .video-stats-small {
    position: absolute;
    top: 15px;
    left: 15px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.testimonials-section .views-count {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.testimonials-section .views-count-small {
    font-size: 18px;
    font-weight: 700;
}

.testimonials-section .testimonials-section.video-id {
    display: block;
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

.testimonials-section .bottom-case-studies {
    display: flex;
    gap: 20px;
}

.testimonials-section .bottom-case {
    flex: 1;
    height: 160px;
}

/* View More */
.testimonials-section .view-more {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .testimonials-section .case-studies {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 0;
    }

    .blue-background {
        left: 0;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-section .background-container {
        padding: 0 15px;
    }

    .testimonials-section .main-title {
        font-size: 28px;
        white-space: normal;
        transform: none;
        left: auto;
        top: 25px;
    }

    .testimonials-section .subtitle {
        font-size: 16px;
        white-space: normal;
        max-width: 100%;
        transform: none;
        left: auto;
    }

    .testimonials-section .case-studies {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonials-section .large-case-study {
        grid-row: 1;
        height: 250px;
    }

    .testimonials-section .small-case-studies {
        grid-row: 2;
        flex-direction: row;
        gap: 15px;
    }

    .testimonials-section .small-case {
        height: 150px;
    }

    .testimonials-section .bottom-case-studies {
        grid-row: 3;
        gap: 15px;
    }

    .testimonials-section .bottom-case {
        height: 120px;
    }

    .testimonials-section .article-content {
        flex-direction: column;
        gap: 12px;
    }

    .testimonials-section .article-image {
        width: 100%;
        height: 120px;
    }

    .testimonials-section .logo-row {
        gap: 15px;
    }

    .testimonials-section .logo-item {
        padding: 10px 15px;
    }

    .testimonials-section .logo-item img {
        height: 25px;
    }
}

/* Article Cards - Right Side */
.testimonials-section .article-card {
    padding: 0;
}

.testimonials-section .article-cards {
    flex: 1;
    max-width: 605px;
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.testimonials-section .article-card {
    position: relative;
    width: 605px;
    height: 160px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0px 0px 16px 0px rgba(27, 116, 228, 0.15);
    overflow: hidden;
}

.testimonials-section .article-content {
    display: flex;
    height: 100%;
    gap: 15px;
}

.testimonials-section .article-image {
    width: 254px;
    height: 100%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.testimonials-section .article-image:hover {
    transform: scale(1.03);
}

.testimonials-section .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.testimonials-section .article-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-top: 10px
}

.testimonials-section .article-text .article-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #273444;
    line-height: 1.4;
    margin: 0;
}

.testimonials-section .article-text a {
    color: #273444;
}

.testimonials-section .article-text p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #273444;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonials-section .article-logo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 77.025%;
    top: 71.25%;
    background: #ffffff;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 4px -4px 4px 0px rgba(27, 116, 228, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-section .article-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.testimonials-section .customers-page-list {
    margin-top: 150px;
}

.testimonials-section .customer-count-title {
    color: #273444;
}

#videoModal .btn-close {
    border: none;
    background: #fff;
    outline: none;
}

#videoModal .modal-body #videoFrame {
    margin: 0 auto;
    display: block;
    width: 100%;
    height: 500px;
}

#videoModal .modal-header {
    align-items: flex-end;
    justify-content: end;
}

.home-customers .customer-item {
    height: 5rem;
    border: 1px solid #d9d9d9d9;
    border-radius: 16px;
    box-shadow: none;
}

.box-shadow-customers:hover {
    box-shadow: rgb(0 0 0 / 8%) 0px 4px 12px;
}

.ml-5r {
    margin-left: 100px;
}

@media (max-width: 991.98px) {
    .ml-5r {
        margin-left: 75px;
    }
}

.show-mobile {
    display: none;
}

/* Customer Count */
.customer-count-title {
    position: absolute;
    left: 50%;
    top: 874px;
    transform: translateX(-50%);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 38px;
    color: #273444;
    text-align: center;
    white-space: nowrap;
    line-height: 1.4;
}

/* Customer Logos */
.testimonials-section .customer-logos {
    position: absolute;
    left: 1px;
    top: 943px;
    width: 1512px;
    height: 238px;
    background-image: url('images/screenshot_2025-02-20_at_10.18.07_1.png');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% 184.45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px;
}

.testimonials-section .logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonials-section .logo-item {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 10px;
    transition: transform 0.3s ease;
}

.testimonials-section .logo-item:hover {
    transform: translateY(-5px);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* View More Link */
.testimonials-section .view-more-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #273444;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    padding-top: 0;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .testimonials-section .content-grid {
        padding: 0 100px;
    }

    .testimonials-section .customer-logos {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 1200px) {
    .testimonials-section .content-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 0 50px;
    }

    .testimonials-section .case-studies,
    .testimonials-section .article-cards {
        max-width: 600px;
    }

    .testimonials-section .large-case-study,
    .testimonials-section .article-card {
        width: 100%;
        max-width: 600px;
    }

    .testimonials-section .small-case-studies,
    .testimonials-section .bottom-case-studies {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        height: auto;
        min-height: 1000px;
        padding-top: 0;
        padding-bottom: 10px;
    }

    .testimonials-section .testimonials-section .main-title {
        font-size: 28px;
        white-space: normal;
        max-width: 90%;
    }

    .testimonials-section .subtitle {
        font-size: 18px;
        white-space: normal;
        max-width: 90%;
    }

    .testimonials-section .customer-count-title {
        font-size: 28px;
        white-space: normal;
        max-width: 90%;
        top: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
    }

    .testimonials-section .content-grid {
        padding: 0 20px;
    }

    .testimonials-section .small-case-studies,
    .testimonials-section .bottom-case-studies {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .testimonials-section .small-case,
    .testimonials-section .bottom-case {
        width: 100%;
        max-width: 100%;
    }

    .testimonials-section .article-card {
        height: auto;
        min-height: 160px;
    }

    .testimonials-section .article-content {
        flex-direction: column;
    }

    .testimonials-section .article-image {
        width: 100%;
        height: 120px;
    }

    .testimonials-section .article-text {
        padding: 20px;
    }

    .testimonials-section .logo-row {
        gap: 20px;
    }

    .testimonials-section .logo-item {
        width: 100px;
        height: 50px;
    }

    .customers-page-list.show-mobile {
        display: block;
    }
}

/* End Cảm ơn khách hàng đã tin tưởng */

/* CloudGO Giải pháp chuyển đổi số tinh gọn */
.section-cloudgo-solution-hero {
    cursor: pointer;
}

.section-cloudgo-solution-hero .solutions-hero-section {
    background-size: cover;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.section-cloudgo-solution-hero .content-wrapper {
    display: flex;
    max-width: 1140px;
    margin: 0 auto;
    gap: 30px;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.section-cloudgo-solution-hero .hero-content {
    flex: 1;
    color: #fff;
    padding-right: 30px;
}

.section-cloudgo-solution-hero .hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin: 40px 0 25px 0;
}

.section-cloudgo-solution-hero .hero-content p {
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.section-cloudgo-solution-hero .subscribe-form {
    display: flex;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.15);
    padding: 8px;
    max-width: 570px;
}

.section-cloudgo-solution-hero .subscribe-form input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 10px 20px;
    font-size: 16px;
    outline: none;
}

.section-cloudgo-solution-hero .subscribe-form button {
    background: linear-gradient(to right, #0161f9, #11d3eb);
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.section-cloudgo-solution-hero .subscribe-form button:focus {
    outline: none;
    box-shadow: none;
}

.section-cloudgo-solution-hero .stats-image {
    margin-top: 40px;
    z-index: 10;
}

.section-cloudgo-solution-hero .stats-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: -55px;
}

.section-cloudgo-solution-hero .solutions-sidebar {
    flex-basis: 420px;
    background-color: rgba(229, 241, 255, 0.62);
    border-radius: 22px;
    padding: 25px;
    color: #fff;
    height: 100%;
}

.section-cloudgo-solution-hero .solutions-sidebar h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin: 0 0 20px 0;
}

.section-cloudgo-solution-hero .solutions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-cloudgo-solution-hero .solution-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 15px;
    box-shadow: 0px 0px 16px 0px rgba(27, 116, 228, 0.15);
    transition: transform 0.3s ease;
}

.section-cloudgo-solution-hero .solution-item:hover {
    transform: scale(1.03);
}

.section-cloudgo-solution-hero .solution-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
}

.section-cloudgo-solution-hero .icon-container {
    background-color: #fff;
    padding: 10px;
    border-right: 1px solid #eee;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.section-cloudgo-solution-hero .icon-container img {
    object-fit: cover;
    width: 30px;
    height: auto;
    display: block;
}

.section-cloudgo-solution-hero .text-container {
    flex-grow: 1;
}

.section-cloudgo-solution-hero .text-container h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
    margin: 0 0 5px 0;
    background: linear-gradient(188deg, #1B74E4 0%, #49D5FF 91.76%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.section-cloudgo-solution-hero .text-container p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #273444;
    margin: 0;
    line-height: 1.25;
}

.section-cloudgo-solution-hero .arrow-icon {
    height: auto;
    margin-left: 10px;
    color: #273444;
}

.section-cloudgo-solution-hero .discover-link {
    display: block;
    text-align: left;
    margin-top: 25px;
    color: #08278b;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-decoration: none;
}

.section-cloudgo-solution-hero .bottom-wave {
    position: absolute;
    bottom: 0px;
    /* Adjust to align properly */
    left: 0;
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.section-cloudgo-solution-hero .bottom-wave img {
    width: 100%;
    display: block;
}

/* END CloudGO Giải pháp chuyển đổi số tinh gọn */


/* Blog Articles Section */
.section-blog-article-four-item {
    background-color: #ffffff;
    padding: 53px 0;
    width: 100%;
}

/* .container {
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 20px;
} */

/* Articles Grid */
.section-blog-article-four-item .articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6.759px;
    justify-items: center;
    max-width: 1125px;
    margin: 0 auto;
}

/* Article Card */
.section-blog-article-four-item .article-card {
    background-color: #e1eeff;
    border-radius: 10px;
    width: 276.722px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section-blog-article-four-item .section-blog-article-four-item .article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 116, 228, 0.15);
}

/* Article Content */
.section-blog-article-four-item .article-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    transition: transform 0.3s ease;
}

.section-blog-article-four-item .article-content:hover {
    transform: scale(1.03);
}

.section-blog-article-four-item .article-content a {
    text-decoration: none;
    color: #273444;
}

.section-blog-article-four-item .article-content h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 44px;
}

/* Article Title */
.section-blog-article-four-item .section-blog-article-four-item .article-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1;
    color: #273444;
    margin-bottom: 8px;
    text-align: justify;
    font-variation-settings: 'wdth' 100;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Article Description */
.section-blog-article-four-item .article-description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #273444;
    margin-bottom: 12px;
    text-align: left;
    font-variation-settings: 'wdth' 100;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Article Meta */
.section-blog-article-four-item .article-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.section-blog-article-four-item .view-icon {
    width: 15px;
    height: 9px;
    object-fit: contain;
}

.section-blog-article-four-item .view-count {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    color: #727272;
    font-variation-settings: 'wdth' 100;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-blog-article-four-item .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }

    .section-blog-article-four-item .article-card {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .section-blog-article-four-item .container {
        padding: 0 16px;
    }

    .section-blog-article-four-item .blog-articles-section {
        padding: 40px 0;
    }

    .section-blog-article-four-item .articles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 320px;
    }

    .section-blog-article-four-item .article-card {
        width: 100%;
        height: auto;
        min-height: 118px;
        padding: 16px;
    }

    .section-blog-article-four-item .article-title {
        font-size: 15px;
        -webkit-line-clamp: 3;
    }

    .section-blog-article-four-item .article-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .section-blog-article-four-item .blog-articles-section {
        padding: 30px 0;
    }

    .section-blog-article-four-item .article-card {
        padding: 14px;
        height: auto;
        min-height: 110px;
        max-width: 100%;
    }

    .section-blog-article-four-item .article-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .section-blog-article-four-item .article-description {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .section-blog-article-four-item .view-count {
        font-size: 11px;
    }

    .section-blog-article-four-item .view-icon {
        width: 12px;
        height: 7px;
    }

    .section-blog-article-four-item {
        padding-bottom: 0;
    }

    .section-cloudgo-solution-hero .stats-image img {
        margin-bottom: 0;
    }
}

/* Trải nghiệm đăng ký sử dụng */
.signup-section {
    position: relative;
    width: 100%;
    height: 398px;
    overflow: hidden;
    background-color: #1b74e4;
}

.signup-section .content-container {
    padding: 100px;
    display: grid;
    gap: 15px;
}

/* .signup-section .white-background {
    position: absolute;
    background-color: #ffffff;
    height: 560px;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
}

.signup-section .blue-background {
    position: absolute;
    background-color: #1b74e4;
    height: 398px;
    left: 0;
    top: 163px;
    width: 100%;
    z-index: 2;
}

.signup-section .business-woman-container {
    position: absolute;
    right: 47px;
    top: 37px;
    width: 581.687px;
    height: 481px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.signup-section .business-woman-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signup-section .cloud-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 115px;
    z-index: 4;
}

.signup-section .cloud-wave-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signup-section .main-heading p {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 34px;
    color: #ffffff;
    line-height: normal;
    margin: 0;
}

.signup-section .sub-heading {
    /* position: absolute;
    left: 366.5px;
    top: 63px;
    transform: translate(-50%, -50%);
    width: 681px;
    text-align: center; */
}

.signup-section .sub-heading p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
    line-height: 30px;
    margin: 0;
}

.signup-section .signup-form-container {
    display: flex;
    justify-content: center;
}

.signup-section .input-wrapper {
    position: relative;
    background-color: #ffffff;
    height: 57px;
    width: 642px;
    border-radius: 30px;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    padding: 4px;
}

.signup-section .email-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #273444;
    padding-left: 27px;
    background: transparent;
}

.signup-section .email-input::placeholder {
    color: #273444;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.signup-section .signup-button {
    background: linear-gradient(90deg, #0161f9 0%, #007efb 47.5%, #11d3eb 100%);
    border: none;
    border-radius: 25px;
    height: 49px;
    width: 238px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.signup-section .signup-button:hover {
    opacity: 0.9;
}

/* Responsive design */
@media (max-width: 1200px) {
    .signup-section .business-woman-container {
        right: 20px;
        width: 400px;
        height: 350px;
    }

    .signup-section .content-container {
        left: 50px;
    }

    .signup-section .main-heading {
        width: 600px;
        font-size: 28px;
    }

    .signup-section .sub-heading {
        width: 500px;
        font-size: 16px;
    }

    .signup-section .input-wrapper {
        width: 500px;
    }

    .signup-section .signup-button {
        width: 200px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .signup-section .signup-section {
        height: auto;
        min-height: 400px;
    }

    .signup-section .business-woman-container {
        display: none;
    }

    .signup-section .content-container {
        padding: 25px;
        text-align: center;
    }

    .signup-section .main-heading {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
    }

    .signup-section .main-heading p {
        font-size: 24px;
    }

    .signup-section .sub-heading {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
    }

    .signup-section .sub-heading p {
        font-size: 16px;
    }

    .signup-section .signup-form-container {
        display: inline-block;
    }

    .signup-section .signup-form-container form {
        width: 100%;
    }

    .signup-section .input-wrapper {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        height: auto;
        padding: 10px;
        border-radius: 15px;
    }

    .signup-section .email-input {
        width: 100%;
        padding: 15px;
        margin-bottom: 10px;
        border-radius: 10px;
        border: 1px solid #e0e0e0;
    }

    .signup-section .signup-button {
        width: 100%;
        margin: 0;
    }
}

/* Đối tác tiêu biểu */
.representative-partners .title-light {
    color: #273444
}

.representative-partners .home-partners .owl-carousel .owl-nav {
    position: absolute;
    top: 35%;
    padding-left: 100%;
    cursor: pointer;
}

.representative-partners .bg-laptop-video .owl-carousel .owl-nav {
    position: absolute;
    top: 40%;
    padding-left: 100%;
    cursor: pointer;
}

.representative-partners .owl-carousel .owl-nav .owl-prev:hover {
    background: transparent;
}

.representative-partners .owl-carousel .owl-nav .owl-next:hover {
    background: transparent;
}

.representative-partners .partner-item {
    box-shadow: none;
}

.representative-partners .partner-item:hover {
    box-shadow: rgb(0 0 0 / 8%) 0px 4px 12px;
}

.representative-partners .owl-carousel-partners .owl-dots {
    text-align: center;
}

.representative-partners .owl-carousel-partners .owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: relative;
    outline: none;
}

.representative-partners .owl-carousel-partners .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 5px 7px;
    background: #ccc;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    outline: none;
}

.representative-partners .owl-carousel-partners .owl-dots button.owl-dot.active span {
    background-color: #cb2134;
}

.representative-partners .home-partners .partner-item {
    height: 5rem;
    border: 1px solid #d9d9d9d9;
    border-radius: 16px;
}

/* Báo chí nói về cloudgo*/
.section-what-says-about-us {
    background-color: #ffffff;
    width: 100%;
}

.section-what-says-about-us .title-light {
    color: #273444;
}

.section-what-says-about-us .bg-says-about-us {
    width: 100%;
    border-radius: 1rem;
    background-color: #f0f2f5;
    padding: 30px;
}

.section-what-says-about-us .bg-says-about-us .title-light {
    margin-bottom: 20px;
}

.section-what-says-about-us .news-list {
    margin-top: 30px;
}

.section-what-says-about-us .bg-says-about-us .news-item {
    background-color: #fff;
}

/* Crm Showcase */
.showcase-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
    cursor: pointer;
}

.showcase-section .showcase-title {
    font-size: 38px;
    font-weight: 500;
    margin: 0 0 15px 0;
}

.showcase-section .showcase-subtitle {
    font-size: 20px;
    font-weight: 400;
    max-width: 100%;
    margin: 0 auto 40px auto;
    line-height: 1.5;
}

.showcase-section .showcase-image {
    transition: transform 0.3s ease;
}

.showcase-section .showcase-image:hover {
    transform: scale(1.03);
}

.showcase-section .showcase-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Lựa chọn giải pháp chuyển đổi số */
.solutions-section {
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    background-color: #fff;
}

.solutions-section .main-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 38px;
    text-align: center;
    color: #273444;
    line-height: 1.4;
    max-width: 812px;
    margin: 0 auto 50px auto;
}

.solutions-section .main-subtitle {
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* Solution Group Styles */
.solutions-section .solution-group {
    position: relative;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
}

.solutions-section .other-solutions {
    margin-bottom: 0;
}

.solutions-section .group-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 28px;
    text-align: center;
    color: #1b74e4;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.solutions-section .group-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    color: #173444;
    line-height: 1.4;
    max-width: 1065px;
    margin: 0 auto 40px auto;
}

/* Standard CRM Section */
.solutions-section .standard-crm {
    background-color: #fff7f0;
}

.solutions-section .standard-crm .main-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.solutions-section .standard-crm .image-container {
    flex-basis: 50%;
}

.solutions-section .main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.solutions-section .standard-crm .cards-container {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solutions-section .solution-card {
    background-color: #ffffff;
    border: 1px solid #b9b9b9;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.solutions-section .solution-card:hover {
    background-color: #1b74e4;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(27, 116, 228, 0.15);
    transform: translateY(-2px);
}

.solutions-section .solution-card.active {
    color: #ffffff;
    border-color: #1b74e4;
    box-shadow: 0 6px 16px rgba(27, 116, 228, 0.25);
    transform: translateY(-1px);
}

.solutions-section .solution-card.active:hover {
    transform: translateY(-1px);
}

.solutions-section .solution-card:hover h4,
.solutions-section .solution-card:hover p,
.solutions-section .solution-card:hover .views span,
.solutions-section .solution-card:hover .learn-more {
    color: #ffffff;
}

.solutions-section .solution-card:hover .card-icon {
    background: #ffffff;
    color: #1b74e4;
}

.solutions-section .solution-card .card-icon {
    width: 45px;
    height: 45px;
    border-radius: 50px;
    background: #1b74e4;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
}

.solutions-section .solution-card .card-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    margin-left: auto;
}

.solutions-section .solution-card .card-text .views {
    gap: 10px;
    display: flex;
    align-items: center;
}

.solutions-section .solution-card:hover .card-text .views {
    color: #fff;
}

.solutions-section .solution-card a {
    color: #1b74e4;
}

.solutions-section .solution-card:hover a {
    color: #fff;
}

.solutions-section .card-text h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 5px 0;
    color: #1b74e4;
}

.solutions-section .card-text p {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
    margin: 0;
    line-height: 1.4;
    color: #273444;
}

.solutions-section .solution-card .sub-card-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: none;
    padding: 0;
    width: 100%;
}

.solutions-section .sub-card-footer .views {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #727272;
}

.solutions-section .sub-card-footer .views img {
    width: 16px;
    height: 16px;
}

.solutions-section .sub-card-footer .learn-more {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #1b74e4;
    text-decoration: none;
}

.solutions-section .sub-card-footer .learn-more img {
    width: 12px;
    height: 12px;
}

.solutions-section .solution-card .sub-card-footer .see-more,
.solutions-section .solution-card .sub-card-footer .see-more a i {
    font-weight: 600;
}

/* Articles Grid */
.solutions-section .articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.solutions-section .article-card {
    background-color: #ffefe2;
    border-radius: 15px;
    padding: 20px;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.solutions-section .article-card:hover {
    transform: scale(1.03);
}

.solutions-section .article-card h5 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 15px 0;
    color: #273444;
    margin-bottom: 5px;
    text-align: justify;
}

.solutions-section .article-card p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #273444;
    margin-bottom: 12px;
    font-variation-settings: 'wdth' 100;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
    text-align: justify;
}

.solutions-section .article-card .views {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #727272;
}

.solutions-section .article-card .views img {
    width: 16px;
}


/* Industry CRM Section */
.solutions-section .industry-crm {
    background-color: #ebfffa;
}

.solutions-section .industry-crm .articles-grid .article-card {
    background-color: #c9f7f0;
}

.solutions-section .industry-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.solutions-section .industry-card {
    background-color: #ffffff;
    border-radius: 15px;
    border: 1px solid #b9b9b9;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

.solutions-section .industry-card:hover {
    transform: scale(1.03);
    background-color: #1b74e4;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(27, 116, 228, 0.15);
}

.solutions-section .industry-card:hover .title,
.solutions-section .industry-card:hover .sub-title {
    color: #ffffff;
}

.solutions-section .industry-card:hover .card-icon {
    background-color: #ffffff;
    color: #1b74e4;
}

.solutions-section .industry-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.solutions-section .industry-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #529fff;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 0 auto;
    margin-bottom: 10px;
}

.solutions-section .industry-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #1b74e4;
    margin: 0 0 10px 0;
}

.solutions-section .industry-card p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #273444;
    margin: 0;
}

.solutions-section .view-all-link {
    display: block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #273444;
    text-decoration: none;
    margin: 20px 0;
}

/* Other Solutions Section */
.solutions-section .other-solutions {
    background-color: #f7f5ff;
}

.solutions-section .other-solutions .group-subtitle {
    color: #273444;
}

.solutions-section .other-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.solutions-section .other-card {
    background-color: #ffffff;
    border: 1px solid #b9b9b9;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 20px;
}

.solutions-section .other-card:hover {
    transform: scale(1.03);
    background-color: #1b74e4;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(27, 116, 228, 0.15);
}

.solutions-section .other-card:hover .card-header {
    background-color: #1b74e4;
}

.solutions-section .other-card:hover .card-icon {
    background-color: #ffffff;
    color: #1b74e4;    
}

.solutions-section .other-card:hover .card-header .title {
    color: #ffffff;
}

.solutions-section .other-card:hover .sub-title {
    color: #ffffff;
}

.solutions-section .other-card:hover ul li {
    color: #ffffff;
}

.solutions-section .other-card:hover .sub-card-footer {
    background-color: #1b74e4;
}

.solutions-section .other-card:hover .sub-card-footer .views {
    color: #ffffff;
}

.solutions-section .other-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border-bottom: none;
    padding-left: 0;
}

.solutions-section .other-card .card-header img {
    width: 25px;
    height: 25px;
}

.solutions-section .other-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #1b74e4;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
}

.solutions-section .other-card .card-header h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1b74e4;
    margin: 0;
}

.solutions-section .other-card .sub-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #273444;
    margin: 0 0 15px 0;
    line-height: 23px;
    min-height: 48px;
}

.solutions-section .other-card ul {
    flex-grow: 1;
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding-left: 20px;
}

.solutions-section .other-card ul li {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: rgba(39, 51, 68, 0.7);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

/* .solutions-section .other-card ul li::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background-image: url('../../images/v2025/icon-list-bullet.svg');
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 10px;
    margin-right: 10px;
} */

.solutions-section .other-card .sub-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    background: #fff;
    border-top: none;
    padding: 0;
}

.solutions-section .other-card .view-more-button {
    background-color: #529fff;
    color: #ffffff;
    border-radius: 35px;
    padding: 8px 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Thông tin deal hot */
.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-deal-hot .deal-slide {
    transition: transform 0.3s ease;
}

.section-deal-hot .deal-slide:hover {
    transform: scale(1.03);
}

.section-deal-hot .prev-arrow {
    margin-left: 0.5rem;
    left: -40px;
}

.section-deal-hot .slick-arrow {
    position: absolute;
    top: 50%;
    background: none;
    border: none;
    outline: none;
    z-index: 9;
}

.section-deal-hot .next-arrow {
    right: -40px;
    margin-right: 0.5rem;
}

.section-deal-hot .slick-arrow i {
    font-size: 1.5rem;
    color: #1b74e4;
}

/* Cloudgo đi muôn nơi */
.section-cloudgo-go-di-muon-noi {
    background: #1b74e4;
    overflow: hidden;
}

.section-cloudgo-go-di-muon-noi .events-section {
    padding-top: 80px;
    padding-bottom: 30px;
    text-align: center;
}

.section-cloudgo-go-di-muon-noi .main-title {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    color: #fff;
}

.section-cloudgo-go-di-muon-noi .main-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 60px;
    font-family: 'Roboto', sans-serif;
}

/* --- Gallery Grid --- */
.section-cloudgo-go-di-muon-noi .gallery-grid {
    display: flex;
    gap: 20px;
}

.section-cloudgo-go-di-muon-noi .gallery-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.section-cloudgo-go-di-muon-noi .gallery-column:first-child .gallery-item:nth-child(1) img {
    height: 245px;
    object-fit: cover;
}

.section-cloudgo-go-di-muon-noi .gallery-column:first-child .gallery-item:nth-child(2) img {
    height: 200px;
    object-fit: cover;
}

.section-cloudgo-go-di-muon-noi .gallery-column:first-child .gallery-item:nth-child(3) img {
    height: 250px;
    object-fit: cover;
}

.section-cloudgo-go-di-muon-noi .gallery-column:nth-child(2) .gallery-item:nth-child(1) img {
    height: 200px;
    object-fit: cover;
}

.section-cloudgo-go-di-muon-noi .gallery-column:nth-child(2) .gallery-item:nth-child(2) img {
    height: 290px;
    object-fit: cover;
}

.section-cloudgo-go-di-muon-noi .gallery-column:nth-child(2) .gallery-item:nth-child(3) img {
    height: 200px;
    object-fit: cover;
}

.section-cloudgo-go-di-muon-noi .gallery-column:nth-child(3) .gallery-item:nth-child(1) img {
    height: 245px;
    object-fit: cover;
}

.section-cloudgo-go-di-muon-noi .gallery-column:nth-child(3) .gallery-item:nth-child(2) img {
    height: 200px;
    object-fit: cover;
}

.section-cloudgo-go-di-muon-noi .gallery-column:nth-child(3) .gallery-item:nth-child(3) img {
    height: 250px;
    object-fit: cover;
}

.section-cloudgo-go-di-muon-noi .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.section-cloudgo-go-di-muon-noi .gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.section-cloudgo-go-di-muon-noi .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* --- Overlay --- */
.section-cloudgo-go-di-muon-noi .gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    color: white;
    padding: 40px 20px 20px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    top: auto;
}

.section-cloudgo-go-di-muon-noi .gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.section-cloudgo-go-di-muon-noi .overlay .event-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-flex: 1;
    -webkit-box-orient: vertical;
}

.section-cloudgo-go-di-muon-noi .overlay .info {
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

.section-cloudgo-go-di-muon-noi .overlay .info span {
    display: block;
    margin-top: 5px;
}

/* --- View More Button --- */
.section-cloudgo-go-di-muon-noi .view-more-container {
    margin-top: 20px;
}

.section-cloudgo-go-di-muon-noi .view-more-button {
    display: inline-block;
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

/* --- Featured Events --- */
.section-cloudgo-go-di-muon-noi .featured-events {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}

.section-cloudgo-go-di-muon-noi .featured-events-bg {
    position: absolute;
    inset: 0;
    background: #273444;
    opacity: 0.3;
    z-index: 0;
}

.section-cloudgo-go-di-muon-noi .featured-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
    color: #fff;
}

.section-cloudgo-go-di-muon-noi .featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.section-cloudgo-go-di-muon-noi .featured-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Mobile responsive for featured slide */
@media (max-width: 992px) {
    .section-cloudgo-go-di-muon-noi .featured-slide {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Owl Carousel Custom Styles */
.owl-carousel .owl-nav {
    text-align: center;
    margin-top: 20px;
}

body .partner-in-home-post .home-partners .owl-carousel .owl-nav {
    top: 15%
}

body .partner-in-home-post .home-partners .owl-carousel .owl-nav button {
    background: linear-gradient(135deg, #4285f4, #1b74e4);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

body .partner-in-home-post .home-partners .owl-carousel .owl-nav button:hover {
    background: linear-gradient(135deg, #5a95f5, #2c7fe5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.5);
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-carousel .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.owl-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(66, 133, 244, 0.3);
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active span {
    background: #4285f4;
    transform: scale(1.2);
}

.home-partners .owl-carousel .owl-nav i {
    font-size: 20px;
}

/* Mobile Blog Grid Owl Carousel */
@media (max-width: 768px) {
    .blog-grid.owl-carousel .blog-post-item {
        margin-bottom: 0;
    }
    
    .blog-grid.owl-carousel .owl-stage-outer {
        padding: 0px;
    }
}

/* Mobile Gallery Grid Owl Carousel */
@media (max-width: 768px) {
    .gallery-grid.owl-carousel .gallery-item {
        margin-bottom: 0;
    }
    
    .gallery-grid.owl-carousel .owl-stage-outer {
        padding: 0 20px;
    }
}

.section-cloudgo-go-di-muon-noi .featured-title,
.section-cloudgo-go-di-muon-noi .featured-grid {
    position: relative;
    z-index: 2;
}

.section-cloudgo-go-di-muon-noi .featured-item {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    max-height: 300px;
    transition: transform 0.3s ease;
}

.section-cloudgo-go-di-muon-noi .featured-item:hover {
    transform: scale(1.03);
}

.section-cloudgo-go-di-muon-noi .featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Featured Events Slider */
.section-cloudgo-go-di-muon-noi .featured-events-slider-container {
    position: relative;
    z-index: 2;
}

.section-cloudgo-go-di-muon-noi .featured-events-slider {
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Upcoming Badge */
.section-cloudgo-go-di-muon-noi .featured-image-container {
    position: relative;
}

.section-cloudgo-go-di-muon-noi .upcoming-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulse 2s infinite;
}

.section-cloudgo-go-di-muon-noi .upcoming-badge i {
    font-size: 0.7rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.7);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
}

.section-cloudgo-go-di-muon-noi .featured-events-slider-container .owl-nav button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285f4, #1b74e4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    top: 50%;
}

/* Slider Navigation */
.section-cloudgo-go-di-muon-noi .slider-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    z-index: 2;
    position: relative;
}

.section-cloudgo-go-di-muon-noi .slider-prev,
.section-cloudgo-go-di-muon-noi .slider-next {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285f4, #1b74e4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.section-cloudgo-go-di-muon-noi .slider-prev:hover,
.section-cloudgo-go-di-muon-noi .slider-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.5);
    background: linear-gradient(135deg, #5a95f5, #2c7fe5);
}

.section-cloudgo-go-di-muon-noi .slider-prev:disabled,
.section-cloudgo-go-di-muon-noi .slider-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.2);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .section-cloudgo-go-di-muon-noi .gallery-grid {
        flex-direction: column;
    }

    .section-cloudgo-go-di-muon-noi .featured-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-cloudgo-go-di-muon-noi .main-title {
        font-size: 2.5rem;
    }

    .section-cloudgo-go-di-muon-noi .main-subtitle {
        font-size: 1.1rem;
    }

    .section-cloudgo-go-di-muon-noi .featured-title {
        font-size: 2rem;
    }

    .solutions-section .standard-crm .main-content {
        display: grid;
        gap: 20px;
    }
    
    .solutions-section .standard-crm .image-container {
        order: 1;
    }
    
    .solutions-section .standard-crm .cards-container {
        order: 2;
    }

    .solutions-section .solution-group {
        padding: 20px 10px;
    }
    
    .solutions-section .solution-card {
        padding: 15px;
    }
    
    .solutions-section .solution-card:hover {
        transform: none;
    }
    
    .solutions-section .solution-card.active:hover {
        transform: none;
    }

    .section-breakthrough-journey-with-business .stat-card:nth-child(even),
    .section-breakthrough-journey-with-business .stat-card:nth-child(odd) {
        transform: none;
    }

    .section-cloudgo-blog .tabs-nav {
        gap: 15px;
        display: flex;
        flex-wrap: nowrap;
        overflow: hidden;
        width: 100%;
        overflow-x: scroll;
    }

    .section-cloudgo-blog .tab-button {
        flex: 1;
        text-align: center;
        white-space: nowrap;
        padding: 10px 5px;
    }

    .section-cloudgo-blog .owl-nav button {
        top: 50%;
    }

    .signup-section {
        height: 100%;
        min-height: 400px;
    }

    .footer .social-media {
        margin-top: 30px;
        margin-bottom: 0;
    }

    .testimonials-section .small-case-studies {
        margin-bottom: 0;
    }

    .section-cloudgo-go-di-muon-noi .events-section .owl-dot.active button span {
        border: 1px solid #fff;
    }

    .events-section .owl-nav button {
        top: 35%;
    }
}

.section-cloudgo-blog {
    padding-top: 90px;
    overflow: hidden;
}

/* Cloudgo blog */
.section-cloudgo-blog .blog-section {
    background-color: #ffffff;
    border-radius: 33px;
    box-shadow: 0px 0px 16px 0px rgba(27, 116, 228, 0.5);
    width: 1187px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.section-cloudgo-blog .blog-title {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    color: #273444;
    margin: 0 0 25px 0;
}

.section-cloudgo-blog .tabs-nav {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 25px;
}

.section-cloudgo-blog .tab-button {
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    color: #676767;
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-decoration: none;
}

.section-cloudgo-blog .tab-button.active {
    color: #273444000;
    font-weight: 700;
}

.section-cloudgo-blog .tab-button:focus {
    border: none;
    box-shadow: none;
    outline: none;
}

.section-cloudgo-blog .tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3.2px;
    background-color: #1b74e4;
}

.section-cloudgo-blog .tab-pane {
    display: none;
    width: 100%;
}

.section-cloudgo-blog .tab-pane.active {
    display: block;
}

.section-cloudgo-blog .tab-content-image {
    display: none;
}

.section-cloudgo-blog .tab-pane p {
    text-align: justify;
    font-size: 14px;
    color: #555;
    margin: 0;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    -o-line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    display: -moz-box;
    display: -o-box;
    position: relative;
}

.section-cloudgo-blog .read-more-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1b74e4;
    text-decoration: none;
    margin-top: 25px;
}

.section-cloudgo-blog .read-more-link:hover {
    text-decoration: underline;
}

.section-cloudgo-blog .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.section-cloudgo-blog .blog-post-item {
    background-color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #d9d9d9;
    border-radius: 24px;
}

.section-cloudgo-blog .blog-post-item:hover img {
    transform: scale(1.1);
}

.section-cloudgo-blog .post-thumbnail-container {
    position: relative;
    height: 194px;
}

.section-cloudgo-blog .post-thumbnail {
    display: block;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.section-cloudgo-blog .post-content {
    padding: 15px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-top: 10px;
}

.section-cloudgo-blog .post-category {
    position: absolute;
    top: 178px;
    bottom: unset;
    left: 15px;
    background-color: #1b74e4;
    color: #fff;
    padding: .1rem 1rem;
    border-radius: 4rem;
    font-weight: bold;
    font-size: .95rem;
}

.section-cloudgo-blog .post-category a {
    color: #fff;
}

.section-cloudgo-blog .post-title {
    font-size: 18px;
    font-weight: 700;
    color: #273444;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.section-cloudgo-blog .post-title a {
    text-decoration: none;
    color: #273444;
}

.section-cloudgo-blog .post-meta {
    font-size: 14px;
    color: #6c757d;
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
}

.section-cloudgo-blog .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.section-cloudgo-blog .post-excerpt {
    font-size: 15px;
    color: #5a6a7d;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.representative-partners {
    background: #fff;
}

.section-deal-hot {
    padding-bottom: 60px;
    background-color: #fff;
    cursor: pointer;
}

.section-deal-hot .deal-slide img {
    border-radius: 25px;
}

/* Mobile */

@media (max-width: 991.98px) {
    .section-cloudgo-solution-hero .content-wrapper {
        display: grid;
    }

    .section-cloudgo-solution-hero .hero-content {
        padding-right: 0;
    }

    .section-cloudgo-solution-hero .hero-content h1 {
        text-align: center;
        margin-top: 0;
    }

    .section-cloudgo-solution-hero .solutions-hero-section {
        padding-top: 20px;
    }

    /* .section-cloudgo-solution-hero .subscribe-form {
        display: grid
    } */

    .section-cloudgo-solution-hero .subscribe-form button {
        padding: 10px 5px;
    }

    .solutions-section .industry-cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .solutions-section .articles-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .solutions-section .other-cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .solutions-section .other-card .sub-card-footer {
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 10px;
    }

    .section-cloudgo-blog .blog-section {
        width: 100%;
    }

    .section-cloudgo-blog .blog-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-breakthrough-journey-with-business .stat-card {
        width: 100%;
    }
}