:root {
    --primary-blue: #3661bd;
    --primary-default-blue: #265ECA;
    --text-black: #1F2124;
    --text-white: #FFFFFF;
    --bg-gray: #f2f4f6;
    --header-height: 90px;
    --font-family: 'Poppins', sans-serif;
    --text-black-default: #000000;
    --text-footer-gray: #333333;
    --font-size-default: 17px;
    --font-size-small: 14px;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;
}

html {
  scroll-behavior: smooth;
}

/* hr-text-under-navbar */
.element-hr {
    margin-top: var(--header-height); 
    background-color: var(--text-white); 
    width: 100%;
    height: 45px;
    padding: 20px 0; 
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2em;
}

.element-hr-text {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px; 
}

.breadcrumbs {
    display: flex;
    align-items: center;
    font-size: 14px; 
    font-weight: var(--font-bold); 
    color: var(--text-black);
}

.breadcrumbs a {
    text-decoration: none;
    color: var(--text-black-default);
    transition: color 0.2s;
    width: 43.64px;
    height: 20px;
}

.breadcrumbs a:hover {
    color: var(--primary-blue);
}

.separator {
    margin: 0 8px; 
    color: #666; 
}

.element-hr-text-page {
    font-weight: var(--font-medium);
    color: var(--text-black-default);
    font-size: 14.5px;
}

@media (max-width: 600px) {
    .element-hr-text {
        padding: 0 20px;
    }
}

/* support-section */
.hero-display-section {
    width: 100%;
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.hero-display-container {
    width: calc(100% - 40px);
    max-width: 1650px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.hero-text-col {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 5px;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.hero-desc {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-btn-group {
    display: flex;
    gap: 15px;
}

.btn-primary {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #000;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

.hero-image-col {
    width: 55%;
    display: flex;
    justify-content: flex-end;
}

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

.hero-bottom-bar {
    width: 100%;
    border-top: 1px solid #eee;
    padding: 20px 0;
    background-color: #fff;
}

.hero-bottom-container {
    width: calc(100% - 50px);
    max-width: 1650px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom-links {
    display: flex;
    gap: 40px;
}

.bottom-links a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.bottom-links a:hover {
    color: #265ECA;
}

.bottom-cta-btn {
    display: inline-flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 20px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.bottom-cta-btn:hover {
    background-color: #333;
}

.floating-contact-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #265ECA;
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 100;
    transition: background-color 0.3s ease;
}

.floating-contact-btn:hover {
    background-color: #1a459c;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 25px;
    }
}

@media (max-width: 992px) {
    .hero-display-container {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .hero-text-col {
        width: 100%;
        margin-bottom: 40px;
    }

    .hero-image-col {
        width: 100%;
    }

    .hero-bottom-container {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .bottom-cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .bottom-links {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 25px;
    }

    .hero-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-outline {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

/* .hero-display-section */
.hero-display-section {
    width: 100%;
    background-color: #fff;
    padding-top: 100px;
    padding-bottom: 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.hero-display-container {
    width: calc(100% - 20px);
    max-width: 1650px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.hero-text-col {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.hero-desc {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-btn-group {
    display: flex;
    gap: 15px;
}

.btn-primary {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 20px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #000;
    padding: 20px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

.hero-image-col {
    width: 55%;
    display: flex;
    justify-content: flex-end;
}

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

.hero-bottom-bar {
    width: 100%;
    border-top: 1px solid #eee;
    padding: 20px 0;
    background-color: #fff;
}

.hero-bottom-container {
    width: calc(100% - 50px);
    max-width: 1650px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom-links {
    display: flex;
    gap: 40px;
}

.bottom-links a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.bottom-links a:hover {
    color: #265ECA;
}

.bottom-cta-btn {
    display: inline-flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 20px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.bottom-cta-btn:hover {
    background-color: #333;
}

.floating-contact-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #265ECA;
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 100;
    transition: background-color 0.3s ease;
}

.floating-contact-btn:hover {
    background-color: #1a459c;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 25px;
    }
}

@media (max-width: 992px) {
    .hero-display-container {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
        margin-top: -60px;
    }

    .hero-text-col {
        width: 100%;
        margin-bottom: 40px;
    }

    .hero-image-col {
        width: 100%;
    }

    .hero-bottom-container {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .bottom-cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .bottom-links {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 25px;
    }

    .hero-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-outline {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

/* produducts-tab-section */
.products-tab-section {
    width: 100%;
    background-color: #fff;
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

.products-tab-container {
    width: calc(100% - 40px);
    max-width: 1650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.tabs-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
    width: 100%;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 10px 4px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    border: 1px solid #e5e7eb;
    background-color: #fff;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    max-width: 19%; 
}

.tab-btn:hover {
    border-color: #265ECA;
    color: #265ECA;
}

.tab-btn.active {
    background-color: #265ECA;
    color: #fff;
    border-color: #265ECA;
    font-weight: 600;
}

.products-tab-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.product-item-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    animation: fadeEffect 0.5s ease-in-out; 
}

.product-item-image {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #fff; 
    border-radius: 8px;
}

.p-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-item-card:hover .p-img {
    transform: scale(1.08);
}

.product-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
    text-align: left;
}

.product-item-card:hover .product-item-title {
    color: #265ECA;
}

@media (max-width: 1200px) {
    .products-tab-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .tabs-navigation {
        justify-content: center;
        gap: 15px;
    }
    
    .tab-btn {
        flex-grow: 0;
        width: auto;
        max-width: none;
        padding: 12px 25px;
    }

    .products-tab-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tabs-navigation {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
    
    .tab-btn {
        flex-shrink: 0;
        font-size: 14px;
        padding: 10px 20px;
    }

    .products-tab-grid {
        grid-template-columns: 1fr;
    }

    .product-item-title {
        font-size: 16px;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* talk-to-us */
.talk-to-us-section {
    width: calc(100% - 40px); 
    margin: 20px auto 0 auto; 
    border-radius: 2px;
    padding: 100px 0;
    background-color: var(--primary-default-blue);
    font-family: var(--font-family);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.talk-to-us-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.talk-title {
    font-size: 56px;
    font-weight: var(--font-extrabold);
    margin: 0 0 20px 0;
    color: var(--text-white);
}

.talk-desc {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 40px 0;
    font-weight: 500;
    color: var(--text-white);
}

.talk-btn {
    display: inline-block;
    background-color: var(--text-white);
    color: var(--text-black-default);
    padding: 20px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: var(--font-extrabold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.talk-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
    .talk-title {
        font-size: 36px;
    }
    
    .talk-desc {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .talk-to-us-section {
        padding: 60px 0;
    }

    .talk-title {
        font-size: 32px;
    }

    .talk-desc br {
        display: none;
    }
    
    .talk-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

/* popup */
.pricing-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none; 
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-modal-overlay.open {
    display: flex;
    opacity: 1;
}

.pricing-modal-content {
    background-color: var(--text-white);
    width: 96%;
    max-width: none;
    border-radius: 24px;
    padding: 60px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: scale(0.9); 
    transition: transform 0.3s ease;
}

.pricing-modal-overlay.open .pricing-modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-footer-gray);
    transition: transform 0.2s ease;
}

.modal-close-btn:hover {
    transform: rotate(90deg);
}

.pricing-modal-body {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    height: 60%;
}

.pm-left {
    flex: 0 0 30%;
    padding-top: 10px;
}

.pm-title {
    font-size: 30px;
    font-weight: var(--font-extrabold);
    color: var(--text-black-default);
    margin-bottom: 20px;
    font-family: var(--font-family, sans-serif);
}

.pm-desc {
    font-size: 15px;
    font-weight: var(--font-semibold);
    line-height: 1.5;
    color: var(--text-footer-gray);
    font-family: var(--font-family, sans-serif);
}

.pm-right {
    flex: 1;
}

.pm-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pm-form-row {
    display: flex;
    gap: 20px;
}

.pm-input, .pm-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #888;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-family, sans-serif);
    outline: none;
    transition: border-color 0.3s ease;
}

.pm-input:focus, .pm-textarea:focus {
    border-color: var(--primary-default-blue);
}

.pm-textarea {
    height: 150px;
    resize: none;
}

.pm-send-btn {
    background-color: var(--primary-default-blue); 
    color: var(--text-white);
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: var(--font-bold);
    border-radius: 50px;
    cursor: pointer;
    align-self: flex-start;
    font-family: var(--font-family, sans-serif);
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.pm-send-btn:hover {
    background-color: #2a4ca0;
}

@media (max-width: 992px) {
    .pricing-modal-content {
        width: 95%;
        padding: 30px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .pricing-modal-body {
        flex-direction: column;
        gap: 30px;
    }

    .pm-left {
        text-align: center;
        padding-top: 0;
    }
    
    .pm-title {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .pm-form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .pm-title {
        font-size: 24px;
    }
    
    .pm-send-btn {
        width: 100%;
    }
    
    .modal-close-btn {
        top: 15px;
        right: 15px;
        font-size: 24px;
    }
}