
/* .quote {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    margin: 40px 0;
} */

/* .quote-form {
    background: #fff;
    padding: 80px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 800px;
    animation: fadeIn 1s ease-in-out;
} */

.form-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    color: #0a1d37;
    font-weight: 800;
    position: relative;
}

.form-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #B31E32, #345aca);
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    border-radius: 2px;
}

.form-subtitle {
    text-align: center;
    color: #565973;
    font-size: 16px;
    margin: -20px 0 40px 0;
    line-height: 1.6;
}

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

.form-group {
    flex: 1;
    min-width: calc(50% - 10px);
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.input-icon-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #8C1927;
    font-size: 16px;
    z-index: 1;
    pointer-events: none;
}

.textarea-icon .input-icon {
    top: 20px;
    transform: none;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 12px 12px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    background-color: #fafafa;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #B31E32;
    background-color: #Fafafa;
    box-shadow: 0 0 0 3px rgba(52, 90, 202, 0.1);
    outline: none;
}

.form-textarea {
    resize: vertical;
    height: 120px;
    padding-top: 16px;
}

/* .form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ff8800 0%, #ff6600 100%);
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 136, 0, 0.35);
    transition: all 0.3s ease;
} */
/* 
.form-submit:hover {
    background: linear-gradient(135deg, #345aca 0%, #2847a8 100%);
    box-shadow: 0 8px 25px rgba(52, 90, 202, 0.45);
    transform: translateY(-2px);
} */

.form-response-time {
    text-align: center;
    color: #565973;
    font-size: 14px;
    margin-top: 16px;
    font-style: italic;
}

.form-response-time::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    color: #B31E32;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@media (max-width: 768px) {
    .quote-form {
        padding: 60px 40px;
    }

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

    .form-row {
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .quote-form {
        padding: 40px 24px;
    }

    .form-title {
        font-size: 28px;
    }

    .form-subtitle {
        font-size: 14px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        flex: 1;
    }

    .form-label {
        font-size: 13px;
    }

    /* .form-submit {
        font-size: 16px;
        padding: 16px;
    } */

    .input-icon {
        font-size: 14px;
        left: 12px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding-left: 38px;
    }

    .form-response-time {
        font-size: 12px;
    }
}

/* .form-submit:disabled {
    background: #cccccc;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.6;
} */

/* Modern Footer Design */
.footer {
    background: #0a1d37;
    color: #ffffff !important; 
    padding: 60px 0 0;
    font-family: 'Open Sans', sans-serif;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Company Section */
.footer-company {
    max-width: 400px;
}

.footer-logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 20px;
}

.company-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
}

.company-tagline {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 16px 0;
}

.company-description {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.contact-info p {
    font-size: 13px;
    color: #ffffff;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: #ffffff;
    width: 14px;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

/* Links Section */
.footer .section-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px 0;
    font-family: 'Poppins', sans-serif;
}

.footer .links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
}

.footer .links-column a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: all 0.3s ease;
}

.footer .links-column a:hover {
    color: #ffffff;
    padding-left: 8px;
}

/* Connect Section */
.footer .newsletter {
    margin-bottom: 32px;
}
.footer{
    background-color: #8C1927 ;
}
.footer .newsletter p {
    font-size: 14px;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.footer .newsletter-form {
    display: flex;
    gap: 8px;
}

.footer .newsletter-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #2a3f5f;
    border-radius: 6px;
    background: #B31E32;
    color: #ffffff;
    font-size: 14px;
}

.footer .newsletter-input::placeholder {
    color: #7a8a9a;
}

.footer .newsletter-input:focus {
    outline: none;
    border-color: #ffffff;
}

.footer .newsletter-btn {
    padding: 12px 20px;
    background: #B31E32;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer .newsletter-btn:hover {
    background: #ffffff;
}

.footer .social-media {
    display: flex;
    gap: 12px;
}

.footer .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer .social-link.whatsapp {
    background: #25d366;
    color: #ffffff;
}

.footer .social-link.facebook {
    background: #1877f2;
    color: #ffffff;
}

.footer .social-link.linkedin {
    background: #0a66c2;
    color: #ffffff;
}

.footer .social-link.skype {
    background: #00aff0;
    color: #ffffff;
}

.footer .social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #8C1927;
    padding: 24px 0;
    margin-top: 48px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #ffffff;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-company {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
    }
    
    .footer-company {
        text-align: center;
        margin-bottom: 0;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
  
}

@media (max-width: 480px) {
    .footer-main {
        gap: 24px;
        padding: 0 12px;
    }
    
    .footer-logo {
        max-width: 140px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}



body {

font-weight: 400;
font-style: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
}



.card-portfolio .card-img>img:hover {
    transform: scale(1.1);
}


html {
    scroll-behavior: smooth;
}

.carousel-inner img {
    width: 100%;
    height: auto;
 
}

.carousel-caption {
    bottom: 20px;
}

.carousel-caption button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 25px;
}

.carousel-caption .btn-primary {
    background-color: #007bff;
    border: none;
}

.carousel-caption .btn-secondary {
    background-color: white;
    border: 2px solid #c2c2c2;
    color: #6e6e6e;
}

@media (max-width: 767px) {
    .carousel-caption {
        margin-bottom: 20px;
    }

    .carousel-caption button {
        margin: 5px;
    }
}




.product-center.center-section {
    position: relative;
    z-index: 2;
    background-color: #FFF8EB;
    margin-bottom: 3rem;
    padding: 60px 0;
}

.partners-section {
    background: linear-gradient(180deg, #FFF8EB 0%, #FFF8EB 100%);
    padding: 80px 0;
}

.card {
    --hsg-card-spacer-y: 1.5rem;
    --hsg-card-spacer-x: 1.5rem;
    --hsg-card-title-spacer-y: 0.75rem;
    --hsg-card-border-width: 1px;
    --hsg-card-border-color: #e2e5f1;
    --hsg-card-border-radius: 0.5rem;
    --hsg-card-box-shadow: ;
    --hsg-card-inner-border-radius: calc(0.5rem - 1px);
    --hsg-card-cap-padding-y: 1.125rem;
    --hsg-card-cap-padding-x: 1.5rem;
    --hsg-card-cap-bg: transparent;
    --hsg-card-cap-color: ;
    --hsg-card-height: ;
    --hsg-card-color: ;
    --hsg-card-bg: #fff;
    --hsg-card-img-overlay-padding: 1.5rem;
    --hsg-card-group-margin: 0.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: var(--hsg-card-height);
    word-wrap: break-word;
    background-color: var(--hsg-card-bg);
    background-clip: border-box;
    border: var(--hsg-card-border-width) solid var(--hsg-card-border-color);
    border-radius: var(--hsg-card-border-radius);
    box-shadow: var(--hsg-card-box-shadow);
}

.row {
    --hsg-gutter-x: 1.5rem;
    --hsg-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1* var(--hsg-gutter-y));
    margin-right: calc(-0.5* var(--hsg-gutter-x));
    margin-left: calc(-0.5* var(--hsg-gutter-x));
}

.align-items-center {
    align-items: center !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    --hsg-gutter-x: 1.5rem;
    --hsg-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--hsg-gutter-x)* .5);
    padding-left: calc(var(--hsg-gutter-x)* .5);
    margin-right: auto;
    margin-left: auto;
    padding-top: 0;
    max-width: 1400px;
}

.product-center .container-fluid {
    padding-top: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.product-center .row .card {
    padding: 1rem 0;
}

@media (min-width: 540px) {
    .product-center .row .card {
        min-height: 285px;
    }
}

.product-center .row .card {
    min-height: 225px;
}

.center-section .card,
.center-section .design-aesthetics {
    transform: rotate(0deg);
}

.center-section .card-portfolio {
    background-color: #fff;
}

.card {
    margin-bottom: 12px;
    border-radius: 8px;
    border: none;
    box-shadow: none;
}

.card-portfolio {
    border: 0;
    background-color: rgba(0, 0, 0, 0);
}

.text-center {
    text-align: center !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

body {
    margin: 0;

    font-size: var(--hsg-body-font-size);
    font-weight: var(--hsg-body-font-weight);
    line-height: var(--hsg-body-line-height);
    color: var(--hsg-body-color);
    text-align: var(--hsg-body-text-align);
    background-color: var(--hsg-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.product-center .card-portfolio .card-body {
    padding: 1rem 0rem 0.5rem 0rem;
}

:root {
    --hsg-user-selection-color: rgba(var(--hsg-primary-rgb), 0.22);
    --hsg-heading-link-color: #33354d;
    --hsg-heading-link-hover-color: #6366f1;
}

:root {
    --hsg-blue: #B31E32;
    --hsg-indigo: #6610f2;
    --hsg-purple: #6f42c1;
    --hsg-pink: #d63384;
    --hsg-red: #B31E32;
    --hsg-orange: #B31E32;
    --hsg-yellow: #ffc107;
    --hsg-green: #198754;
    --hsg-teal: #20c997;
    --hsg-cyan: #B31E32;
    --hsg-black: #000;
    --hsg-white: #fff;
    --hsg-gray: #9397ad;
    --hsg-gray-dark: #33354d;
    --hsg-gray-100: #f3f6ff;
    --hsg-gray-200: #eff2fc;
    --hsg-gray-300: #e2e5f1;
    --hsg-gray-400: #d4d7e5;
    --hsg-gray-500: #b4b7c9;
    --hsg-gray-600: #9397ad;
    --hsg-gray-700: #565973;
    --hsg-gray-800: #33354d;
    --hsg-gray-900: #0b0f19;
    --hsg-primary: #6366f1;
    --hsg-secondary: #eff2fc;
    --hsg-success: #22c55e;
    --hsg-info: #B31E32;
    --hsg-warning: #8C1927;
    --hsg-danger: #B31E32;
    --hsg-light: #fff;
    --hsg-dark: #0b0f19;
    --hsg-primary-rgb: 99, 102, 241;
    --hsg-secondary-rgb: 239, 242, 252;
    --hsg-success-rgb: 34, 197, 94;
    --hsg-info-rgb: 76, 130, 247;
    --hsg-warning-rgb: 255, 186, 8;
    --hsg-danger-rgb: 239, 68, 68;
    --hsg-light-rgb: 255, 255, 255;
    --hsg-dark-rgb: 11, 15, 25;
    --hsg-white-rgb: 255, 255, 255;
    --hsg-black-rgb: 0, 0, 0;
    --hsg-body-color-rgb: 86, 89, 115;
    --hsg-body-bg-rgb: 255, 255, 255;
    --hsg-font-sans-serif: 'Open Sans', 'Inter', sans-serif;
    --hsg-font-monospace: 'Open Sans', 'Inter', sans-serif;
    --hsg-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));

    --hsg-body-font-size: 1rem;
    --hsg-body-font-weight: 400;
    --hsg-body-line-height: 1.6;
    --hsg-body-color: #333333;
    --hsg-body-bg: #f5f5f5;
    --itd-navy: #0a1d37;
    --itd-orange: #8C1927;
    --itd-light-gray: #f5f5f5;
    --itd-text-dark: #333333;
    --itd-text-light: #565973;
    --hsg-border-width: 1px;
    --hsg-border-style: solid;
    --hsg-border-color: #e2e5f1;
    --hsg-border-color-translucent: rgba(0, 0, 0, 0.175);
    --hsg-border-radius: 0.375rem;
    --hsg-border-radius-sm: 0.25rem;
    --hsg-border-radius-lg: 0.5rem;
    --hsg-border-radius-xl: 1rem;
    --hsg-border-radius-2xl: 2rem;
    --hsg-border-radius-pill: 50rem;
    --hsg-link-color: #000;
    --hsg-link-hover-color: #000;
    --hsg-code-color: #e3116c;
    --hsg-highlight-bg: #fff3cd;
}

@media (max-width: 991.98px) {
    .product-center .text-ftitle {
        min-height: 20px;
    }
}

.text-ftitle {
    font-size: 12px;
    line-height: 21px;
    margin-bottom: 8px;
    font-weight: 300;
    color: #000;
    opacity: 0.9;
    letter-spacing: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-portfolio .card-img>img {
    display: block;
    transition: transform .35s ease-in-out;
}

.left-right img {
    width: 100%;
    transition: 0.5s;
}

@media (max-width: 991.98px) {
    .text-title {
        font-weight: 600;
    }

    .learn-more {
        width: auto;
        min-width: 90px;
        padding: 8px 16px;
        font-size: 11px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .learn-more {
        width: 100%;
        padding: 10px 20px;
        font-size: 12px;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .learn-more {
        width: 100%;
        padding: 8px 16px;
        font-size: 11px;
    }
}

.text-title {
    line-height: 1.25;
}

.text-title {
    color: #000;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.125;
    font-weight: 600;
}

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
.h1 {
    font-size: calc(1.375rem + 1.5vw);
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--itd-navy);
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.learn-more {
    border-radius: 17px;
    border: 2px solid #345aca;
    background-color: #345aca;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    transition: .3s ease-out;
    font-size: 14px;
    font-weight: 600;
    line-height: initial;
    text-align: center;
    width: auto;
}
.learn-more:hover{
    font-weight: 700;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .learn-more {
        padding: 8px 18px !important;
        font-size: 14px !important;
        width: auto;
    }
}

@media (max-width: 768px) {
    .learn-more {
        padding: 10px 20px !important;
        font-size: 14px !important;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 480px) {
    .learn-more {
        padding: 8px 16px !important;
        font-size: 13px !important;
        width: 100%;
        max-width: 180px;
    }
}

a {
    transition: color .2s ease-in-out;
}

a {
    color: var(--hsg-link-color);
    text-decoration: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .model-title {
        font-size: 1.6rem;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .model-title {
        font-size: 2.125rem;
    }
}

@media (min-width: 992px) {
    .model-title {
        font-size: calc(1.25vw + 24px);
        font-weight: 600;
    }
}

@media (min-width: 992px) {
    .model-title {
        font-size: calc(1.325rem + 0.9vw);
    }
}

.model-title {
    font-size: 1.125rem;
    line-height: 1.3;
    font-weight: 400;
    color: #000;
    margin-bottom: 16px;
}

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
.h1 {
    font-size: calc(1.375rem + 1.5vw);
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.3;
    color: var(--hsg-gray-900);
}

.card-portfolio .card-img>img {
    display: block;
    transition: transform .35s ease-in-out;
}

@media (min-width: 992px) {

    .product-center .col-6:nth-of-type(odd),
    .technological-innovation .col-6:nth-of-type(odd),
    .company-news .col-6:nth-of-type(odd) {
        padding-right: 12px;
    }
}

.product-center .col-6:nth-of-type(odd),
.technological-innovation .col-6:nth-of-type(odd),
.company-news .col-6:nth-of-type(odd) {
    padding-right: 6px;
}

@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
}

@media (min-width: 500px) {
    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
}

@media (min-width: 500px) {
    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .center-section {
        margin-bottom: 6rem;
    }
}

body {
    margin: 0;

    font-size: var(--hsg-body-font-size);
    font-weight: var(--hsg-body-font-weight);
    line-height: var(--hsg-body-line-height);
    color: var(--hsg-body-color);
    text-align: var(--hsg-body-text-align);
    background-color: var(--hsg-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media (min-width: 992px) {
    .center-section .container-fluid {
        padding: 2.5rem;
    }
}

@media (min-width: 992px) {
    .product-center .container-fluid {
        padding-top: 0;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {

    .left-right .card-body .text-title,
    .left-right .card-body .text-ftitle {
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 992px) {

    .left-right .card-body .text-title,
    .left-right .card-body .text-ftitle {
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {

    .text-title,
    .system-process .text-title,
    .other-products .text-title {
        font-size: 1.25rem;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .text-title {
        font-size: 1.6rem;
    }
}

.text-title {
    line-height: 1.25;
}

@media (min-width: 992px) {
    .text-title {
        font-size: 1.75rem;
        line-height: 1.185;
        margin-bottom: 16px;
        letter-spacing: 0px;
        font-size: 18px;
        font-weight: 600;
    }
}

@media (min-width: 992px) {
    .text-title {
        font-weight: 600;
    }
}

.text-title {
    color: #000;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.125;
    font-weight: 600;
}

@media (min-width: 992px) and (max-width: 1399.98px) {

    .left-right .card-body .text-title,
    .left-right .card-body .text-ftitle {
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 992px) {

    .left-right .card-body .text-title,
    .left-right .card-body .text-ftitle {
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .text-ftitle {
        line-height: 26px;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .text-ftitle {
        font-size: 13px;
    }
}

@media (min-width: 992px) {
    .text-ftitle {
        font-size: 15px;
        font-weight: 300;
        line-height: 24px;
    }
}

@media (min-width: 992px) {
    .text-ftitle {
        font-size: 1rem;
        line-height: 26px;
        font-weight: 500;
        margin-bottom: 20px;
    }
}

.text-ftitle {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 8px;
    font-weight: 300;
    color: #000;
    opacity: 0.9;
    letter-spacing: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 720px) {

    .left-right,
    .left-right .row>div {
        max-height: inherit;
    }
}

.left-right,
.left-right .row>div {
    max-height: 550px;
}

.left-right .col-sm-5 {
    width: 36%;
    overflow: hidden;
}

@media (min-width: 500px) {
    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
}

@media (min-width: 992px) {

    .technological-innovation .align-items-center .card-body,
    .product-center .left-right .row .card-body {
        padding-left: 15%;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {

    .text-title,
    .system-process .text-title,
    .other-products .text-title {
        font-size: 1.25rem;
    }
}

.align-items-center {
    align-items: center !important;
}

.row {
    --hsg-gutter-x: 1.5rem;
    --hsg-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1* var(--hsg-gutter-y));
    margin-right: calc(-0.5* var(--hsg-gutter-x));
    margin-left: calc(-0.5* var(--hsg-gutter-x));
}

.left-right,
.left-right .row>div {
    max-height: 550px;
}

.left-right .col-sm-7 {
    width: 64%;
    overflow: hidden;
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .product-center .row .card {
        min-height: 100px;
    }
}

.product-center .row .card {
    padding: 1rem 0;
}

@media (min-width: 992px) {

    .product-center .col-6:nth-of-type(odd),
    .technological-innovation .col-6:nth-of-type(odd),
    .company-news .col-6:nth-of-type(odd) {
        padding-right: 12px;
    }
}

.product-center .col-6:nth-of-type(odd),
.technological-innovation .col-6:nth-of-type(odd),
.company-news .col-6:nth-of-type(odd) {
    padding-right: 6px;
}

@media (min-width: 500px) {
    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .product-center .row .card {
        padding: 2.5rem 1rem;
    }
}

@media (min-width: 1200px) {
    .product-center .row .card {
        min-height: 490px;
    }
}

@media (min-width: 992px) {
    .center-section .card {
        margin-bottom: 24px;
    }
}

@media (min-width: 992px) {
    .center-section .card {
        border-radius: 17px;
        border-color: none;
        border: none;
        overflow: hidden;
    }
}

@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
}

@media (min-width: 992px) {

    .product-center .col-6:nth-of-type(odd),
    .technological-innovation .col-6:nth-of-type(odd),
    .company-news .col-6:nth-of-type(odd) {
        padding-right: 12px;
    }
}

@media (min-width: 1200px) {
    .product-center .row .card {
        padding: 2.5rem 1rem;
    }
}

@media (min-width: 1200px) {
    .product-center .row .card {
        min-height: 500px;
    }

}

@media (min-width: 1200px) {
    .product-center .row .card {
        padding: 2.5rem 1rem;
    }
}

.row {
    --hsg-gutter-x: 1.5rem;
    --hsg-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1* var(--hsg-gutter-y));
    margin-right: calc(-0.5* var(--hsg-gutter-x));
    margin-left: calc(-0.5* var(--hsg-gutter-x));
}

@media (min-width: 992px) {
    .col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .center-section .card {
        margin-bottom: 24px;
    }


}

@media (min-width: 992px) {
    .center-section .card {
        border-radius: 17px;
        border-color: none;
        border: none;
        overflow: hidden;
    }
}

@media (min-width: 768px) {
    .center-section .card-img {
        width: 100%;
    }

}

@media (min-width: 992px) {
    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
}

@media (min-width: 1400px) and (max-width: 1599.98px) {

    .text-title,
    .system-process .text-title,
    .other-products .text-title,
    .system-process .text-title {
        font-size: 32px;
    }
   
}

@media (min-width: 1400px) and (max-width: 1599.98px) {
    .text-ftitle {
        font-size: 29px;
    }

    .footer {

        padding: 10px 20px;

    }
    .footer-container{
        margin-left: 150px;
    }
}

@media (min-width: 1200px) {
    .learn-more {
        min-width: 130px;
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .learn-more {
        cursor: pointer;
        padding: 10px 26px;
        background-color: #8C1927;
        color: #fff;
        display: inline-block;
        font-size: 13px;
        line-height: 24px;
        font-weight: 600;
        border-radius: 40px;
        border: 2px solid #8C1927;
    }
}

@media (min-width: 1400px) {
    .text-ftitle {
        line-height: 60px;
        min-height: 16px;
                font-size: 29px;
    }
}

@media (min-width: 992px) {
    .text-title {
        font-size: 1.75rem;
        line-height: 1.85;
        margin-bottom: 17px;
        letter-spacing: 0px;
        font-size: 51px;

    }
}

.product-center .row .card {
    padding: 1rem 0;
}

a:hover {
    color: #8C1927;
    text-decoration: none;
}

@media (min-width: 1200px) {
    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 1200px) {
    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
}

@media (min-width: 1400px) {
    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .carousel-inner {
padding-left: 34px;
padding-right: 34px;
}
}


@media (min-width: 1200px) {
    .company-news p {
        font-size: 14px;
        line-height: 26px;
    }
}

.row {
    display: flex;
}

.col-6 {
    display: flex;
    flex-direction: column;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

@media (min-width: 1200px) {
    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
}

/* @media (min-width: 1200px) {
.company-news .row .col-xl-5 .card, .company-news .card {
min-height: 540px;
}
} */
@media (min-width: 992px) and (max-width: 1399.98px) {
    .card-body {
        padding: 2.5rem 1.5rem;
    }
}

@media (min-width: 1200px) {
    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .company-news .card h1 {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .company-news .card h1 {
        font-size: 1.25rem;
        line-height: 1.3;
    }
}

.center-section .card,
.center-section .design-aesthetics {
    transform: rotate(0deg);
}

.center-section .card-portfolio {
    background-color: #fff;
}

@media (min-width: 1200px) {

    .company-news .row .col-xl-5 .card,
    .company-news .card {
        min-height: 540px;
    }
}

.company-news .card {
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

@media (min-width: 992px) {
    .center-section .card {
        margin-bottom: 24px;
    }
}

@media (min-width: 992px) {
    .center-section .card {
        border-radius: 17px;
        border-color: none;
        border: none;
        overflow: hidden;
    }
}

@media (min-width: 992px) {
    .company-news .card-portfolio .card-body {
        padding: 1rem 1.5rem;
    }
}

@media (min-width: 992px) {
    .company-news .news-time span:nth-of-type(1) {
        margin-top: 2.5rem;
        font-size: 2rem;
        color: #345aca;
        font-weight: 600;
    }
}


@media (min-width: 992px) {
    .company-news .news-time span {
        display: block;
    }
}

.company-news .card-portfolio .card-body {
    padding: 1rem;
}

@media (max-width: 991.98px) {
    .learn-more {
        width: 95px;
        text-align: center;
    }
}

.title {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 450;
    color: #000;
    margin-bottom: 16px;
}

@media (min-width: 992px) {
    .title {
        font-size: calc(1.25vw + 24px);
        font-weight: 600;
    }
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}


.card1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1;
    max-width: 500px;
    min-width: 300px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.card1 img {
    max-height: 140px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 0;
}

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

.partner-logo-container img {
    border-radius: 0 !important;
}

.card1 h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a1d37;
    margin: 16px 0 12px 0;
    text-align: center;
}

.card1 p {
    font-size: 15px;
    color: #565973;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: center;
}

.partner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #B31E32, #8C1927);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 12px;
}

.partner-card-enhanced {
    position: relative;
    overflow: hidden;
}

.partner-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8C1927, #8C1927);
}

.partner-logo-container {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .card1 {
        width: 100%;
        max-width: 100%;
        padding: 24px;
    }

    .card-container {
        gap: 24px;
        flex-direction: column;
    }

    .partner-logo-container {
        height: 140px;
    }

    .card1 h3 {
        font-size: 20px;
    }

    .card1 p {
        font-size: 14px;
    }

    .footer-column a {
        color: #ffffff;
        text-decoration: none;
        padding: 1px 2px;
        position: relative;
        transition: all 0.3s ease;
        font-size: 17px;
    }
}

.new-title {
    text-align: center;
    margin-bottom: 30px;
        font-size: 36px;
    color: #333;
    position: relative;
    font-weight: 600;
    margin-bottom: 50px;
    margin-top: 50px;
}

.new-title::after {
    content: '';
    width: 50px;
    height: 4px;
    background-color: #8C1927;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* For large 4K displays (2560px and above) */


@media only screen and (min-width: 2560px) {
    .product-center .text-title {
        font-size: 60px;
    }

    .product-center .text-ftitle {
        font-size: xxx-large;
        line-height: inherit;
    }

    .product-center .learn-more {
        font-size: xx-large;
        padding: 30px;
    }
}

@media only screen and (min-width: 2560px) {
    .product-center .card-img img {
        width: 100%;
        height: auto;
    }

    .product-center .card {
        margin-bottom: 2rem;
    }

    .product-center .card-body {
        padding: 2rem;
    }

    .carousel-caption button {
        margin: 5px;
        padding: 10px 40px;
        font-size: 40px;
        border-radius: 25px;
    }

}

@media only screen and (min-width: 2560px) {
    .product-center .new-title {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }

    .product-center .card-container {
        display: flex;
        justify-content: center;
        gap: 3rem;
    }

    .product-center .card1 {
        flex: 0 0 40%;
        text-align: center;
    }

    .product-center .card1 img {
        width: 100%;
        height: auto;
        margin-bottom: 1.5rem;
    }

    .product-center .card1 h3 {
        font-size: 2.5rem;
        font-weight: 600;
    }

    .product-center .card1 p {
        font-size: 40px;
    }
}

@media (min-width: 1920px) {
    .product-center .card-container {
        gap: 60px;
    }

    .product-center .card1 {
        flex: 0 0 45%;
        max-width: 600px;
    }

    .product-center .card1 h3 {
        font-size: 32px;
    }

    .product-center .card1 p {
        font-size: 20px;
    }
}

@media only screen and (min-width: 2560px) {
    /* .quote-form {
        max-width: 1800px;
    }

    .quote .form-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .quote .form-group {
        margin-bottom: 2rem;
    }

    .quote .form-label {
        font-size: xx-large;
    }

    .quote .form-input,

    .quote .form-textarea {
        font-size: x-large;
        padding: 1rem;
        width: 100%;
    }

    .quote .form-submit {
        font-size: xx-large;
        padding: 1.2rem 2rem;
    } */
}

@media only screen and (min-width: 2560px) {
    .footer .footer-container {
        display: flex;
        justify-content: space-between;
        /* Adjust this for less spacing */
        padding: 2rem 3rem;
        /* Reduce padding */
        margin-left: 100px;
    }

    .col-sm-7 {
        max-height: 300px;
    }

    .footer .footer-column {
        flex: 1;
        margin-left: 70px;
        margin-right: 20px;
    }


    .footer .footer-column h3 {
        font-size: 2.5rem;
        /* Adjust font size */
        margin-bottom: 1.5rem;
        /* Adjust spacing below headings */
        color: #ffa500;
    }

    .footer .footer-column p,
    .footer .footer-column ul li {
        font-size: xx-large;
        /* Adjust font size */
        line-height: 4rem;
        /* Adjust line height */
        color: #f2f2f2;
    }

    .footer .footer-column ul li a {
        font-size: xx-large;
        /* Adjust font size */
        line-height: 4rem;
        /* Adjust font size */
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .footer .social-icons a {
        font-size: 2rem;
        /* Adjust icon size */
        color: #ffffff;
    }

    .footer .social-icons a i {
        margin-left: 0.5rem;
    }
}

@media (min-width: 2560px) {
    .center-section {
        margin-left: 250px;
        margin-right: 250px;
    }
    .carousel-inner {
padding-left: 54px;
padding-right: 54px;
}
}

/* WhatsApp Float - Fixed Z-index Issue */

.contact-btns-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
        padding-top: 28px;
            justify-content: center;
}
.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 200px;
    text-align: center;
}
.btn-call, .btn-email {
    background-color: #1f4c75;
    color: white;
}
.btn-whatsapp {
    border: 2px solid #25D366;
    color: #25D366;
    background-color: white;
}
.btn-call:hover, .btn-email:hover {
    background-color: #163655;
}
.btn-whatsapp:hover {
    background-color: #25D366;
    color: white;
}
.icon {
    font-size: 18px;
}
@media (max-width: 600px) {
    .contact-btns-container {
        flex-direction: column;
        align-items: center;
                padding: 30px;
    }
    .contact-btn {
        width: 100%;
    }
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
}

.card-portfolio .card-img>img:hover {
    transform: scale(1.1);
}

/* Bootstrap Column Spacing for Machine Grid */
.machines-grid .col-12,
.machines-grid .col-sm-6,
.machines-grid .col-lg-4 {
    padding: 0 12px;
}

.machines-grid {
    margin-left: -12px;
    margin-right: -12px;
}

/* DEPRECATED: Old product center styles - kept for other pages */
/* DEPRECATED: Use .machine-card-content instead */
/* DEPRECATED: Use .machine-name instead */
/* DEPRECATED: Use .machine-spec instead */
/* DEPRECATED: Use .btn-machine-learn instead */

/* Responsive Grid Alignment */
@media (max-width: 991.98px) {
    .machines-grid .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767.98px) {
    .machines-grid .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {
    .machines-grid [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Mobile Performance Optimization */
@media (max-width: 768px) {
    .machine-card-image img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Section Spacing */
.product-center + .product-center {
    margin-top: 0;
}
.tm-section-title{
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: var(--tm-primary);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    text-transform: none;
    background: linear-gradient(90deg, #250e0fff, #ff006aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineTitle 3s ease-in-out infinite;
}

    .tm-section-title::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #d82744ff, #680000ff);
    margin: 10px auto 0;
    border-radius: 10px;
    animation: lineGlow 2.5s infinite ease-in-out;
}
 @keyframes shineTitle {
            0% {
                filter: brightness(1);
            }

            50% {
                filter: brightness(1.5);
            }

            100% {
                filter: brightness(1);
            }
        }

        @keyframes lineGlow {
            0% {
                opacity: 0.4;
                transform: scaleX(0.7);
            }

            50% {
                opacity: 1;
                transform: scaleX(1);
            }

            100% {
                opacity: 0.4;
                transform: scaleX(0.7);
            }
        }