

/* Utilities */
.section-padding {
    padding: 80px 0;
}

.text-red {
    color: var(--ma-type-primary);
}

.bg-dark-slate {
    background-color: var(--ma-type-secondary);
}

.btn-mactra-red {
    background-color: var(--ma-type-primary);
    color: var(--ma-white);
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
    transition: all 0.3s;
    font-size: var(--ma-body-text);
}

    .btn-mactra-red:hover,
    .btn-mactra-red:focus,
    .btn-mactra-red:active {
        background-color: var(--ma-type-primarydark);
        color: var(--ma-white);
        transform: translateY(-2px);
    }

/* Navbar */
.navbar {
    background: var(--ma-white);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-link {
    color: var(--ma-type-secondary) !important;
    margin: 0 10px;
}

    .nav-link:hover {
        color: var(--ma-type-primary) !important;
    }


.navbar-brand {
    outline: none;
    text-decoration: none;
}
    .navbar-brand:hover,
    .navbar-brand:focus,
    .navbar-brand:active{
        outline:none;
        text-decoration:none;
    }

/* Hero */
.hero-section {
    background: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)), url('../Images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.coming-soon-badge {
    background: #FFF1F2;
    color: var(--ma-type-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: var(--ma-body-text);
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #FECDD3;
}

    .coming-soon-badge::before {
        content: '';
        width: 8px;
        height: 8px;
        background-color: var(--ma-type-primary);
        border-radius: 50%;
        display: inline-block;
    }

.hero-logo-icon {
    margin-bottom: 25px;
    height: 80px;
}

.hero-headline {
    color: var(--ma-type-secondary);
    margin-bottom: 10px;
    text-shadow: none;
    font-weight:400;
}

    .hero-headline span.text-red {
        font-weight: bold;
    }

.hero-subheadline {
    font-size: var(--ma-body-text);
    max-width: 550px;
    margin-bottom: 40px;
}

.btn-register {
    background-color: var(--ma-type-primary);
    color: var(--ma-white);
    padding: 14px 30px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
    .btn-register:hover,
    .btn-register:focus,
    .btn-register:active {
        background-color: var(--ma-type-primarydark);
        color: var(--ma-white);
    }

    .btn-contact-hero {
        background-color: var(--ma-white);
        color: var(--ma-type-secondary);
        padding: 14px 30px;
        border-radius: 8px;
        border: 1px solid #e5e7eb;
    }

        .btn-contact-hero:hover,
        .btn-contact-hero:focus,
        .btn-contact-hero:active {
            background-color: var(--ma-white);
        }





        .about_section {
            background-color: white;
        }


/* Legacy Section */
.powered-by-label {
    color: var(--ma-type-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    border-top: 2px solid var(--ma-type-primary);
    padding-top: 5px;
}

.legacy-title {
    margin-bottom: 25px;
}

    .legacy-title span.text-red {
        font-weight: 700;
    }

.manufacturing-img-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .manufacturing-img-container img {
        width: 100%;
    }

.img-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--ma-white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

    .img-overlay-text .label {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
        margin-bottom: 5px;
    }

    .img-overlay-text .title {
        font-size: 16px;
        font-weight: 700;
    }

.foundation-box {
    border: 1px solid var(--ma-type-secondary);
    padding: 25px 40px;
    margin: 50px 0;
    border-radius: 4px;
    font-size: var(--ma-body-text);
    color: var(--ma-type-secondary);
}

.legacy-card {
    border: 1px solid #d1d5db;
    padding: 35px;
    border-radius: 8px;
    height: 100%;
}

    .legacy-card h5 {
        margin-bottom: 20px;
    }

    .legacy-card p {
        font-size: 0.95rem;
        color: #4b5563;
        margin-bottom: 25px;
    }

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

    .legacy-list li {
        font-size: 0.9rem;
        color: #4b5563;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .legacy-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            background-color: var(--ma-type-primary);
            border-radius: 50%;
            display: inline-block;
        }

/* Mission Vision Values (Old Style) */
.feature-card {
    text-align: left;
    padding: 20px;
    border: 1px solid transparent;
}

.feature-icon {
    color: var(--ma-type-primary);
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.feature-card h4 {
    margin-bottom: 10px;
}

.feature-card p {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom:0px;
}

/* Technology Section */
.innovation-label {
    color: var(--ma-type-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    border-top: 2px solid var(--ma-type-primary);
    padding-top: 5px;
}

.tech-title {
    margin-bottom: 20px;
}

    .tech-title span.text-red {
        font-weight: 700;
    }

.tech-grid-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    padding: 30px;
    border-radius: 4px;
    height: 100%;
}

.tech-icon-box {
    width: 45px;
    height: 45px;
    background: #FFF1F2;
    color: var(--ma-type-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
    border: 1px solid #FECDD3;
}

.tech-grid-card h5 {
    margin-bottom: 12px;
}

.tech-grid-card p {
    margin-bottom: 0;
}

/* Certifications Box */
.cert-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 40px;
    border-radius: 4px;
    margin-top: 50px;
}

    .cert-box h5 {
        margin-bottom: 30px;
    }

.cert-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cert-badge {
    border: 1px solid var(--ma-type-secondary);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: var(--ma-metadata);
    color: var(--ma-type-secondary);
    font-weight: 500;
}

/* Integration Section */
.connectivity-label {
    color: var(--ma-type-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    border-top: 2px solid var(--ma-type-primary);
    padding-top: 5px;
}

.integration-title {
    margin-bottom: 20px;
}

    .integration-title span.text-red {
        font-weight: 700;
    }

.integration-diagram-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.central-hub {
    width: 280px;
    height: 280px;
    background: #ffffff;
    border-radius: 50%;
    border: 1px solid #fee2e2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(230, 0, 35, 0.05);
}

    .central-hub img {
        width: 80px;
        margin-bottom: 15px;
    }

    .central-hub .hub-title {
        font-size: 14px;
        font-weight: 700;
        color: var(--ma-type-secondary);
    }

    .central-hub .hub-subtitle {
        font-size: 12px;
        color: #6b7280;
    }

.integration-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    min-height:42px;
}

    .integration-item.left {
        justify-content: flex-end;
        text-align: right;
        padding-right:50px;
    }
        .integration-item.left .integration-icon-box {
            position:absolute;
            right:0px;
        }


    .integration-item.right {
        justify-content: flex-start;
        text-align: left;
        padding-left: 50px;
    }
        .integration-item.right .integration-icon-box {
            position: absolute;
            left: 0px;
        }

.integration-icon-box {
    width: 42px;
    height: 42px;
    border: 1px solid #fee2e2;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ma-type-primary);
    font-size: 18px;
    background: #ffffff;
}

.integration-text {
    font-size: var(--ma-body-text);
    color: #4b5563;
    font-weight: 500;
}

.connection-line {
    height: 1px;
    background: #fee2e2;
    position: absolute;
    z-index: 1;
}

    .connection-line.left {
        right: 0;
    }

    .connection-line.right {
        left: 0;
    }

/* Message to Partners Section */
.leadership-label {
    color: var(--ma-type-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    border-top: 2px solid var(--ma-type-primary);
    padding-top: 5px;
}

.partners-title {
    margin-bottom: 40px;
}

    .partners-title span.text-red {
        font-weight: 700;
    }

.quote-card {
    background: #ffffff;
    border: 1px solid #d1d5db;
    padding: 60px;
    position: relative;
    border-radius: 4px;
    margin-bottom: 40px;
}

.quote-icon-box {
    position: absolute;
    top: -25px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: var(--ma-type-primary);
    color: var(--ma-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 4px;
}

.quote-text {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
}

.leadership-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.leadership-initials {
    width: 50px;
    height: 50px;
    background: #FFF1F2;
    color: var(--ma-type-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.leadership-info h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--ma-type-secondary);
}

.leadership-info span {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
}

.benefit-card {
    border: 1px solid #9ca3af;
    padding: 30px;
    border-radius: 4px;
    height: 100%;
}

    .benefit-card h6 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--ma-type-secondary);
    }

    .benefit-card p {
        margin-bottom:0px;
    }

/* Competitive Advantage Section */
.choose-us-label {
    color: var(--ma-type-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    border-top: 2px solid var(--ma-type-primary);
    padding-top: 5px;
}

.advantage-title {
    margin-bottom: 20px;
}

    .advantage-title span.text-red {
        font-weight: 700;
    }

.advantage-v2-card {
    padding: 30px;
    border-radius: 4px;
    height: 100%;
}

    .advantage-v2-card.theme-pink {
        background: #FFF5F5;
        border: 1px solid #FECDD3;
    }

    .advantage-v2-card.theme-grey {
        background: #F9FAFB;
        border: 1px solid #F3F4F6;
    }

.advantage-v2-card p {
    margin-bottom:0px;
}

    .adv-icon-box {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .adv-icon-box.solid-red {
        background: var(--ma-type-primary);
        color: var(--ma-white);
    }

    .adv-icon-box.outline-white {
        background: #ffffff;
        color: var(--ma-type-primary);
        border: 1px solid #E5E7EB;
    }

.btn-partner {
    background-color: var(--ma-type-primary);
    color: var(--ma-white);
    padding: 12px 25px;
    border-radius: 4px;
    font-size: var(--ma-body-text);
    border: none;
    margin-top: 40px;
    transition: background 0.3s;
}

    .btn-partner:hover,
    .btn-partner:focus,
    .btn-partner:active {
        background-color: var(--ma-type-primarydark);
        color: var(--ma-white);
    }

/* Applications Section (Versatility) */
.applications-label {
    color: var(--ma-type-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    border-top: 2px solid var(--ma-type-primary);
    padding-top: 5px;
}

.app-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    margin-top: 50px;
}

.app-category-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FECDD3;
}

.app-category-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #4b5563;
    letter-spacing: 1px;
}

.app-grid-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
    background: #111827;
}

    .app-grid-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.7;
        transition: transform 0.5s;
    }

    .app-grid-card:hover img {
        transform: scale(1.05);
    }

.app-grid-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--ma-white);
}

    .app-grid-content h6 {
        margin-bottom: 8px;
        color: var(--ma-white);
    }

    .app-grid-content p {
        margin-bottom: 0;
        opacity: 0.85;
        color: var(--ma-white);
        font-size: var(--ma-metadata);
        letter-spacing:0.55px;
    }

.app-card-lg {
    height: 450px;
}

.app-card-md {
    height: 300px;
}

.app-card-sm {
    height: 213px;
}

/* Smart Network Camera Series */
.product-categories-label {
    color: var(--ma-type-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    border-top: 2px solid var(--ma-type-primary);
    padding-top: 5px;
}

.products-title {
    margin-bottom: 10px;
}

.title-underline {
    width: 50px;
    height: 3px;
    background: var(--ma-type-primary);
    margin-bottom: 50px;
}

.product-card-v2 {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .product-card-v2:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

.product-card-top {
    background: #F9FAFB;
    padding: 40px 20px;
    position: relative;
    text-align: center;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product-card-top img {
        max-width: 140px;
        max-height: 120px;
    }

.badge-coming-soon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FFF1F2;
    color: var(--ma-type-primary);
    font-size: var(--ma-metadata);
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #FECDD3;
}

    .badge-coming-soon::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--ma-type-primary);
        border-radius: 50%;
    }

.product-card-bottom {
    padding: 20px;
}

.product-series {
    color: var(--ma-type-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-name {
    margin-bottom: 15px;
}

.product-desc {
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .product-features li {
        font-size: var(--ma-body-text);
        color: #4b5563;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .product-features li::before {
            content: '●';
            color: var(--ma-type-primary);
            font-size: 8px;
        }

/* MACTRAONE Service Ecosystem */
.service-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
}

.service-support-label {
    color: var(--ma-type-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    border-top: 2px solid var(--ma-type-primary);
    padding-top: 5px;
}

.mactraone-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.mactraone-desc {
    margin-bottom: 30px;
    max-width: 500px;
}

.hotline-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 4px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.hotline-icon {
    width: 40px;
    height: 40px;
    background: #FFF1F2;
    color: var(--ma-type-primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hotline-text span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: #9ca3af;
}

.hotline-text h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--ma-type-secondary);
}

.service-grid-card {
    background: #ffffff;
    border: 1px solid #d1d5db;
    padding: 30px;
    border-radius: 4px;
    height: 100%;
}

.service-icon-box {
    width: 40px;
    height: 40px;
    background: #FFF1F2;
    color: var(--ma-type-primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.service-grid-card h6 {
    margin-bottom: 12px;
    color: var(--ma-type-secondary);
}

.service-grid-card p {
    margin-bottom: 0;
}

/* Become a Partner Form */
.partner-section-label {
    color: var(--ma-type-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    border-top: 2px solid var(--ma-type-primary);
    padding-top: 5px;
}

.partner-title {
    margin-bottom: 15px;
}

.partner-desc {
    max-width: 700px;
    margin-bottom: 50px;
}

.partner-form-container {
    background: #ffffff;
    border: 1px solid var(--ma-type-secondary);
    padding: 40px;
    border-radius: 4px;
}

    .partner-form-container label {
        display: block;
        font-size: 0.85rem;
        font-weight: 500;
        color: #6b7280;
        margin-bottom: 10px;
    }

        .partner-form-container label span {
            color: var(--ma-type-primary);
        }

    .partner-form-container .form-control, .partner-form-container .form-select {
        border: 1px solid #d1d5db;
        border-radius: 4px;
        padding: 12px 15px;
        font-size: 0.9rem;
        margin-bottom: 25px;
        background: #ffffff;
        color: var(--ma-type-secondary);
    }

        .partner-form-container .form-control::placeholder {
            color: #9ca3af;
        }

        .partner-form-container .form-control:focus, .partner-form-container .form-select:focus {
            border-color: var(--ma-type-primary);
            box-shadow: none;
            outline: none;
        }

.product-interest-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.product-chip {
    border: 1px solid #d1d5db;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s;
    background: #ffffff;
}

    .product-chip.active {
        background: #ffffff;
        border-color: var(--ma-type-primary);
        color: var(--ma-type-primary);
        box-shadow: 0 0 0 1px var(--ma-type-primary);
    }

.captcha-placeholder {
    border: 1px solid #d1d5db;
    padding: 15px;
    border-radius: 4px;
    background: #f9fafb;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
}

.captcha-box {
    width: 24px;
    height: 24px;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
}

.btn-submit-registration {
    background: var(--ma-type-primary);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 4px;
    font-size: var(--ma-body-text);
    transition: background 0.3s;
}

    .btn-submit-registration:hover,
    .btn-submit-registration:focus,
    .btn-submit-registration:active {
        background: var(--ma-type-primarydark);
        color: white;
    }

/* Contact Us & Footer */
.contact-label {
    color: var(--ma-type-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    border-top: 2px solid var(--ma-type-primary);
    padding-top: 5px;
}

.contact-title {
    margin-bottom: 15px;
}

.contact-desc {
    max-width: 600px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #d1d5db;
    padding: 20px;
    border-radius: 4px;
    height: 100%;
    transition: all 0.3s ease;
}

    .contact-card:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: #FFF1F2;
    border: 1px solid #FECDD3;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ma-type-primary);
    font-size: 20px;
    margin-bottom: 25px;
}

.contact-card h5 {
    margin-bottom: 15px;
}

.contact-card p {
    margin-bottom: 0;
}

.contact-support-row {
    background: #ffffff;
    border: 1px solid #d1d5db;
    padding: 20px;
    border-radius: 4px;
    margin-top: 20px;
}

.support-item h6 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--ma-type-secondary);
}

.support-item p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 10px;
}

.support-email {
    color: var(--ma-type-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

    .support-email:hover {
        text-decoration: underline;
        color: #c0001d;
    }

#contact {
    background: transparent;
}

footer {
    padding: 100px 0 40px;
    background: var(--ma-type-secondary);
    color: #a3a3a3;
}

.footer-header {
    color: var(--ma-white);
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1rem;
}

footer a {
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

    footer a:hover {
        color: var(--ma-white);
    }

.footer-logo {
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    height: 35px;
}

.footer-subtitle {
    font-size: 0.85rem;
    color: #a3a3a3;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 0.9rem;
    color: #a3a3a3;
    max-width: 400px;
    line-height: 1.6;
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
}

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

.footer-copyright, .footer-bottom-links a {
    font-size: 0.85rem;
    color: #a3a3a3;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .mactraone-title {
        font-size: 2.5rem;
    }

    .partner-title {
        font-size: 2.5rem;
    }

    

        .central-hub img {
            width: 60px;
        }

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

    .footer-bottom-links {
        margin-top: 10px;
    }

    .integration-diagram-container > div > div {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .integration-item {
        display: inline-flex;
    }
        .integration-item.left {
            justify-content: flex-start;
            text-align: left;
            padding-left: 50px;
            padding-right: 20px;
        }
            .integration-item.left .integration-icon-box {
                right: unset;
                left:0px;
            }

            .integration-item.right {
                justify-content: flex-start;
                text-align: left;
                padding-left: 50px;
                padding-right: 20px;
            }
                .integration-item.right .integration-icon-box {
                    right: unset;
                    left: 0px;
                }
    .central-hub {
        width: 200px;
        height: 200px;
        margin: 20px auto;
    }

    .app-card-lg {
        max-height: 250px;
        height: auto;
    }
    .app-card-sm {
        max-height: 250px;
        height: auto;
    }
    .app-card-md {
        max-height: 250px;
        height: auto;
    }
    .app-grid-content {
        background: linear-gradient(transparent, rgba(0, 0, 0, 100%));
    }

}
@media (max-width: 768px) {
    .feature-card {
        padding: 0px;
    }
    .hero-section {
        padding: 40px 30px;
    }
    .service-section {
        padding: 40px 30px;
    }
    .section-padding {
        padding: 40px 30px;
    }
    footer {
        padding: 40px 30px;
    }
}