/* Base Colors from Image */
:root {
    --medeqon-blue: #007bff;
    --medeqon-green: #91d246;
    --medeqon-text-dark: #333;
    --medeqon-text-light: #6c757d;
    --medeqon-bg-start: #ffffff;
    --medeqon-bg-end: #dceef7;
    --medeqon-tagline-red: #dc3545;
    --ab-blue-dark: #004d99;
    --ab-blue-light: #4a90e2;
    --ab-gray: #495057;
    --ab-text-dark: #212529;
    --ab-green: #91d246;
    --ab-bg-light: #f8f9fa;
    --ab-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --footer-bg: #36afc4;
    /* User Requested Color */
    --footer-bg-dark: #2c9aa1;
    /* Slightly darker for copyright bar */
    --footer-text: #ffffff;
    /* White text for clean medical look */
    --footer-text-mute: rgba(255, 255, 255, 0.85);
    /* Slightly transparent white */
    --footer-accent: #0e4c55;
    /* Deep Petrol Blue for Hovers (High Contrast) */
}

/* --- General Section Setup --- */
#medeqon-landing-page {
    background: linear-gradient(to bottom, var(--medeqon-bg-start) 0%, var(--medeqon-bg-end) 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Navigation Bar Styling --- */
.medeqon-navbar {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.medeqon-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--medeqon-text-dark) !important;
}

.medeqon-brand i {
    color: var(--medeqon-blue);
}

.medeqon-nav-link {
    color: var(--medeqon-text-dark) !important;
    font-weight: 500;
    margin-right: 1.5rem;
}

.medeqon-nav-link:hover,
.medeqon-nav-link.active {
    color: var(--medeqon-blue) !important;
}

.medeqon-signup-btn {
    background-color: var(--medeqon-green);
    border-color: var(--medeqon-green);
    color: white !important;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
}

/* --- Hero Section Styling --- */
.medeqon-hero-section {
    padding: 0rem 5rem;
}

.tagline {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--medeqon-tagline-red);
    padding: 0.2rem 0.6rem;
    border: 1px solid var(--medeqon-green);
    display: inline-block;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--medeqon-text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--medeqon-text-light);
    max-width: 80%;
}

.medeqon-cta-btn {
    background-color: var(--medeqon-green);
    border-color: var(--medeqon-green);
    font-weight: 600;
    color: white;
}

.medeqon-cta-btn-2 {
    background-color: #ccc;
    border-color: #ccc;
    font-weight: 600;
    padding: 0.75rem 2rem;
}

.medeqon-learn-btn {
    background-color: white;
    border: 1px solid #ccc;
    color: var(--medeqon-text-dark);
    font-weight: 600;
}

.medeqon-feature-list li {
    font-size: 1rem;
    color: var(--medeqon-text-dark);
    margin-bottom: 0.5rem;
}

.medeqon-feature-list i {
    color: var(--medeqon-blue);
}

/* --- Image and Box Area (Right Column) --- */
.medeqon-image-area {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

/* --- Ensure Main Image Scales Correctly --- */
.main-image-placeholder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: none;
    margin-bottom: 20px;
}

/* Style the actual large image */
#large-equipment-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Small Equipment Previews */
.equipment-previews {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.preview-box {
    width: 100px;
    height: 80px;
    border: 2px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-box:hover {
    border-color: var(--medeqon-blue);
}

/* Highlight the active preview */
.preview-box.active {
    border-color: var(--medeqon-blue);
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

/* Style the images inside the preview boxes */
.preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Responsiveness --- */
@media (max-width: 991.98px) {
    .medeqon-hero-section {
        padding: 0rem 1rem;
    }

    .medeqon-image-area {
        min-height: 400px;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .equipment-previews {
        justify-content: center;
    }
}

/* --- Section Background --- */
#advance-biotronics-about {
    background-color: #F5F5F5;
    border-top: 1px solid #e9ecef;
}

/* --- Top Text Styling --- */
.about-us-tagline {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ab-gray);
    margin-bottom: 0.5rem;
}

.about-us-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ab-text-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Bold the key phrases to mimic the original style */
.about-us-heading strong {
    color: var(--ab-blue-dark);
}

.about-us-subtext {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--ab-blue-light);
    margin-bottom: 2rem;
}

.about-us-cta {
    background-color: var(--ab-green);
    border-color: var(--ab-green);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 20px;
    transition: background-color 0.2s;
}

.doctor-icon-placeholder {
    width: 60px;
    height: 60px;
    background-color: transparent;
    float: right;
    margin-top: -100px;
}

/* --- Feature Box Styling --- */
.feature-box {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    height: 100%;
    box-shadow: var(--ab-box-shadow);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ab-bg-light);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--ab-blue-light);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ab-text-dark);
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 1rem;
    color: var(--ab-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 90px;
}

.feature-link {
    font-weight: 600;
    color: var(--ab-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.feature-link:hover {
    color: var(--ab-blue-light);
}

/* --- Why Choose Us Section --- */
#why-choose-advance-biotronics {
    background-color: white;
}

.section-tagline {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ff7f41;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
}

.section-subtext {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 1rem;
}

/* --- Accordion Styling Overrides --- */
.accordion {
    --bs-accordion-border-color: #e9ecef;
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
}

.accordion-item {
    border-top: none;
    border-left: none;
    border-right: none;
    margin-bottom: 0.5rem;
}

.accordion-button {
    font-size: 1.15rem;
    font-weight: 500;
    color: #212529;
    padding: 1.25rem 0.5rem;
    background-color: transparent !important;
    box-shadow: none !important;
    transition: color 0.2s ease;
}

/* Style for expanded/active button */
.accordion-button:not(.collapsed) {
    color: #4a90e2;
    border-bottom: 1px solid #4a90e2;
}

/* Remove default Bootstrap arrow */
.accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.5rem;
    transform: none;
    transition: transform 0.3s ease;
}

/* Custom minus sign for expanded state */
.accordion-button:not(.collapsed)::after {
    content: '';
    color: #4a90e2;
}

.accordion-body {
    padding: 1rem 0.5rem 1.5rem 0.5rem;
    font-size: 1rem;
    color: #495057;
}

/* --- Image Container Styling --- */
.image-container-right {
    padding: 1rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.image-container-right img {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* --- Service Showcase Section --- */
.medeqon-showcase-section {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.medeqon-showcase-inner {
    display: flex;
    max-width: 1200px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.medeqon-image-background {
    flex-grow: 1;
    min-height: 580px;
    background-image: url('assets/image/bg1.jpg');
    background-size: cover;
    background-position: center center;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* --- Service Card Styling - MODIFIED FOR SLIDER --- */
.medeqon-service-card {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    background-color: var(--medeqon-bg-start);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 5;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
}

/* Container for all the slides */
.slider-content-wrapper {
    display: flex;
    width: 100%;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome/Safari/Edge */
.slider-content-wrapper::-webkit-scrollbar {
    display: none;
}

/* Individual Slide Styling */
.slider-slide {
    flex-shrink: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    scroll-snap-align: start;
}

/* Navigation Arrow Styling */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--medeqon-text-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--medeqon-text-dark);
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s;
}

.slider-arrow:hover {
    background: var(--medeqon-blue);
    color: white;
    border-color: var(--medeqon-blue);
}

.arrow-prev {
    left: 10px;
}

.arrow-next {
    right: 10px;
}

/* --- Card Content Styles --- */
.card-image-container {
    padding: 10px 0;
}

.card-price {
    font-size: 1.1rem;
    color: var(--medeqon-tagline-red);
    font-weight: bold;
    margin-bottom: 10px;
}

.card-price span {
    color: var(--medeqon-text-light);
    font-size: 0.9rem;
    font-weight: normal;
}

.card-title {
    font-size: 1.4rem;
    color: var(--medeqon-text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.card-description {
    font-size: 0.9rem;
    color: var(--medeqon-text-light);
    margin-bottom: 25px;
    line-height: 1.5;
}

.card-button {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(to right, var(--ab-blue-light), var(--medeqon-blue));
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.medeqon-medical-device-placeholder {
    width: 100%;
    height: 250px;
    margin: 0 auto;
    background-color: #f0f0f0;
    border-radius: 8px;
    background-image: linear-gradient(to bottom, #d6e8f4, #fff, #d6e8f4);
    border: 1px solid #c9dbe7;
    position: relative;
}

.medeqon-medical-device-placeholder::before {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 180px;
    background-color: #fcfcfc;
    border: 2px solid var(--medeqon-blue);
    border-radius: 5px;
}

.medeqon-medical-device-placeholder::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 30px;
    width: 15px;
    height: 15px;
    background-color: #000;
    border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .medeqon-showcase-inner {
        flex-direction: column;
        align-items: center;
        box-shadow: none;
    }

    .medeqon-image-background {
        width: 100%;
        min-height: 250px;
        border-radius: 10px 10px 0 0;
    }

    .medeqon-service-card {
        position: relative;
        top: 0;
        transform: none;
        width: 100%;
        max-width: 400px;
        border-radius: 0 0 10px 10px;
    }

    .slider-arrow {
        display: none;
    }
}

/* --- Stats Section --- */
.abt-section {
    padding: 60px 20px;
    background-color: #F5F5F5;
    font-family: Arial, sans-serif;
    text-align: center;
}

.abt-header {
    margin-bottom: 50px;
}

.abt-header h2 {
    font-size: 2.5rem;
    color: var(--ab-text-dark);
    margin-bottom: 10px;
    font-weight: bold;
}

.abt-header p {
    font-size: 1.1rem;
    color: var(--ab-gray);
    max-width: 800px;
    margin: 0 auto;
}

.abt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.abt-card {
    background-color: var(--medeqon-bg-start);
    border-radius: 8px;
    padding: 30px;
    text-align: left;
    box-shadow: var(--ab-box-shadow);
    transition: transform 0.3s ease;
}

.abt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to bottom, var(--medeqon-bg-start) 0%, var(--medeqon-bg-end) 100%);
    color: white;
}

.abt-card-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--medeqon-text-light);
    margin-bottom: 15px;
}

.abt-card-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ab-text-dark);
    margin-bottom: 10px;
}

.abt-card-description {
    font-size: 0.95rem;
    color: var(--ab-gray);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .abt-header h2 {
        font-size: 2rem;
    }

    .abt-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* --- Sectors Section --- */
.abt-sectors-section {
    position: relative;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: var(--ab-bg-light);
}

/* Background Image and Overlay */
.abt-sectors-bg {
    background-image: url('assets/image/2.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.abt-sectors-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
}

/* Title Block Styling */
.abt-title-block {
    position: relative;
    z-index: 2;
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin-bottom: 20px;
}

.abt-title-block .tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--medeqon-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
    display: block;
}

.abt-title-block h2 {
    font-size: 1.8rem;
    color: var(--ab-text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.abt-title-block p {
    font-size: 0.9rem;
    color: var(--ab-gray);
    line-height: 1.4;
    font-weight: 300;
}

/* Cards Grid Styling */
.abt-card-grid-container {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 3;
}

.abt-card-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.abt-sector-card {
    background-color: var(--medeqon-bg-start);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    width: 250px;
    text-align: left;
    transition: transform 0.3s ease;
}

.abt-sector-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ICON STYLING */
.abt-card-icon-wrapper {
    float: left;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: linear-gradient(to bottom, var(--medeqon-blue), var(--ab-blue-light));
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 123, 255, 0.2);
}

.abt-card-icon {
    font-size: 1.1rem;
    color: white;
}

/* Title and Subtitle container */
.abt-card-text-header {
    overflow: hidden;
    margin-bottom: 15px;
}

.abt-sector-card h4 {
    font-size: 1rem;
    font-weight: bold;
    color: var(--ab-text-dark);
    line-height: 1.3;
    margin-top: -3px;
    margin-bottom: 0;
}

.abt-sector-card .sub-title {
    font-size: 0.8rem;
    font-weight: normal;
    color: var(--medeqon-text-light);
    margin-bottom: 5px;
}

.abt-sector-card p {
    font-size: 0.8rem;
    color: var(--ab-gray);
    line-height: 1.5;
    margin-bottom: 10px;
    clear: both;
}

.abt-sector-card a {
    font-size: 0.8rem;
    color: var(--medeqon-blue);
    text-decoration: none;
    font-weight: 500;
}

/* Padding for the section following this one */
.section-after-sectors {
    padding-top: 100px;
    min-height: 100px;
    background-color: var(--ab-bg-light);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .abt-card-grid-container {
        bottom: -40px;
    }

    .abt-sectors-bg {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .abt-title-block h2 {
        font-size: 1.6rem;
    }

    .abt-card-grid-container {
        position: static;
        transform: none;
        padding-top: 20px;
    }

    .abt-sectors-bg {
        height: 350px;
        margin-bottom: 0;
        padding-bottom: 20px;
    }

    .abt-sector-card {
        width: 100%;
        max-width: 300px;
    }

    .abt-sectors-section {
        padding-bottom: 40px;
    }

    .section-after-sectors {
        padding-top: 40px;
    }
}

/* --- Contact Us Section Styling --- */
.abt-contact-section {
    padding: 60px 20px 0px;
    background-color: var(--ab-bg-light);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abt-contact-container {
    /* max-width: 1200px; */
    width: 100%;
    display: flex;
    background-color: var(--medeqon-bg-start);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.abt-contact-image-side {
    flex: 1;
    background-image: url('image_a1b2c3.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.abt-contact-form-side {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.abt-contact-form-side h2 {
    font-size: 2rem;
    color: var(--ab-text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.abt-contact-form-side p {
    font-size: 1rem;
    color: var(--ab-gray);
    margin-bottom: 30px;
    line-height: 1.5;
}

.abt-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.abt-form-group {
    margin-bottom: 15px;
}

.abt-form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--medeqon-text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.abt-form-group input[type="text"],
.abt-form-group input[type="email"],
.abt-form-group input[type="tel"],
.abt-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--ab-text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.abt-form-group input:focus,
.abt-form-group textarea:focus {
    border-color: var(--medeqon-blue);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
    outline: none;
}

.abt-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.abt-submit-button {
    display: inline-block;
    width: auto;
    padding: 14px 30px;
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(to right, var(--ab-blue-light), var(--medeqon-blue));
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}

.abt-submit-button:hover {
    background: linear-gradient(to right, var(--ab-blue-dark), var(--medeqon-blue));
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.6);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .abt-contact-container {
        flex-direction: column;
    }

    .abt-contact-image-side {
        min-height: 300px;
    }

    .abt-contact-form-side {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .abt-contact-form-side h2 {
        font-size: 1.5rem;
    }

    .abt-contact-form-side p {
        font-size: 0.9rem;
    }

    .abt-form-group input,
    .abt-form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .abt-submit-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* --- Footer Styling --- */


/* --- WhatsApp Icon Styling --- */
.whatsapp-fixed-icon {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    animation: whatsapp-pulse 2s infinite ease-in-out;
    transform-origin: center;
    border-radius: 50%;
}

.whatsapp-fixed-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-out;
}

.whatsapp-fixed-icon:hover img {
    transform: scale(1.08);
}

/* Keyframes for the pulse animation */
@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .whatsapp-fixed-icon {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
}

/* --- Partner Highlight Section --- */
.partner-highlight {
    background-color: white;
    padding: 40px 20px;
    text-align: center;
}

.partner-logo {
    max-width: 300px;
    margin: 0 auto 20px;
}

.partner-text {
    font-size: 1.2rem;
    color: var(--ab-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* --- Products Section --- */
.products-section {
    padding: 60px 20px;
    background-color: var(--ab-bg-light);
}

.product-category {
    margin-bottom: 40px;
}

.product-category h3 {
    color: var(--ab-blue-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--medeqon-blue);
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--ab-box-shadow);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card h4 {
    color: var(--ab-text-dark);
    margin-bottom: 10px;
}

.product-card p {
    color: var(--ab-gray);
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .product-list {
        grid-template-columns: 1fr !important;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .about-us-heading {
        font-size: 1.3rem;
    }

    .about-us-subtext {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }
}


/* --- Main Footer Area --- */
.abt-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 70px 0 0;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 15px;
}

.abt-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 50px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /* Softer divider */
}

/* --- Headings --- */
.abt-footer-col h5 {
    font-size: 1.1rem;
    color: var(--footer-text);
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

/* Underline accent */
.abt-footer-col h5::after {
    content: '';
    display: block;
    width: 35px;
    height: 3px;
    background: white;
    /* White underline matches theme */
    margin-top: 10px;
    border-radius: 2px;
}

/* --- Brand Column --- */
.logo-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--footer-text);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.tagline {
    color: var(--footer-accent);
    /* Dark Accent for tagline to make it pop */
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.desc {
    color: var(--footer-text-mute);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* --- Links Styling --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--footer-text-mute);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--footer-accent);
    /* Turns Dark Petrol Blue on Hover */
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.2);
    /* Subtle highlight on hover */
    padding-left: 5px;
    border-radius: 3px;
    margin-left: -5px;
    /* Counteract padding shift */
}

/* --- Contact Styling --- */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--footer-text-mute);
    align-items: flex-start;
}

/* Icon circles */
.icon-box {
    width: 30px;
    text-align: center;
    color: var(--footer-bg);
    background: white;
    /* White circle for icon */
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.contact-item address {
    font-style: normal;
    line-height: 1.6;
}

.contact-item a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--footer-accent);
}

.hours {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 3px;
}

/* --- Social Icons --- */
.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--footer-accent);
    transform: translateY(-3px);
}

/* --- Copyright Section --- */
.abt-copyright {
    padding: 25px 20px;
    background-color: var(--medeqon-green);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.abt-copyright,
.abt-copyright a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.abt-copyright a:hover {
    color: white;
    text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .abt-footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .abt-footer-container {
        grid-template-columns: 1fr;

    }



    .contact-item {

        text-align: left;
    }

    .abt-copyright {
        justify-content: center;
        text-align: center;
    }
}

/* product-detail page start */
.page-header {
    padding: 30px 0 20px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 40px;
    background: linear-gradient(to right, var(--medeqon-bg-start), var(--medeqon-bg-end));
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--ab-blue-dark);
    margin-bottom: 10px;
}

.page-header .subtitle {
    font-size: 1.2rem;
    color: var(--ab-gray);
    font-weight: 500;
}

.product-detail-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.product-image-container {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--ab-box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 6px;
    margin-bottom: 20px;
}

.image-placeholder {
   
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid #d1e7f5;
}



.image-placeholder i {
    font-size: 5rem;
    color: var(--ab-blue-light);
    opacity: 0.7;
}

.image-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    background-color: #f1f8ff;
    border: 2px solid #e6f2ff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail.active {
    border-color: var(--medeqon-blue);
}

.thumbnail i {
    font-size: 1.8rem;
    color: var(--ab-blue-light);
}

.product-info-container {
    flex: 1;
    min-width: 300px;
}

.product-title {
    font-size: 2rem;
    color: var(--ab-blue-dark);
    margin-bottom: 15px;
}

.product-subtitle {
    font-size: 1.4rem;
    color: var(--medeqon-green);
    margin-bottom: 20px;
    font-weight: 600;
}

.product-tagline {
    font-size: 1.1rem;
    color: var(--medeqon-tagline-red);
    margin-bottom: 25px;
    font-style: italic;
    padding-left: 15px;
    border-left: 3px solid var(--medeqon-tagline-red);
}

.product-description {
    font-size: 1.05rem;
    color: var(--ab-text-dark);
    margin-bottom: 30px;
    line-height: 1.7;
}

.key-features {
    background-color: var(--ab-bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-top: 25px;
    border-left: 4px solid var(--medeqon-green);
}

.key-features h3 {
    color: var(--ab-blue-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.key-features ul {
    list-style-type: none;
    padding-left: 0;
}

.key-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.key-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--medeqon-green);
    font-weight: bold;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    /* display: flex; */
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--medeqon-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--ab-blue-dark);
}

.btn-secondary {
    background-color: white;
    color: var(--medeqon-blue);
    border: 2px solid var(--medeqon-blue);
}

.btn-secondary:hover {
    background-color: #f0f8ff;
}

.btn-green {
    background-color: var(--medeqon-green);
    color: white;
}

.btn-green:hover {
    background-color: #7ebc3a;
}

/* Tabs Section */
.tabs-section {
    margin-bottom: 60px;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-button {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ab-gray);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-button:hover {
    color: var(--ab-blue-dark);
}

.tab-button.active {
    color: var(--medeqon-blue);
}

.tab-button.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--medeqon-blue);
}

.tab-content {
    display: none;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--ab-box-shadow);
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Overview Content */
.wysiwyg-content {
    font-size: 1.05rem;
    line-height: 1.7;
}

.wysiwyg-content h3 {
    color: var(--ab-blue-dark);
    margin: 25px 0 15px;
    font-size: 1.5rem;
}

.wysiwyg-content h4 {
    color: var(--ab-blue-dark);
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.wysiwyg-content p {
    margin-bottom: 15px;
}

.wysiwyg-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.wysiwyg-content li {
    margin-bottom: 8px;
}

.wysiwyg-content strong {
    color: var(--ab-blue-dark);
}

/* Specifications Table */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.spec-table tr {
    border-bottom: 1px solid #eaeaea;
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-table td {
    padding: 15px 10px;
    vertical-align: top;
}

.spec-table td:first-child {
    width: 35%;
    font-weight: 600;
    color: var(--ab-blue-dark);
}

.spec-table ul {
    padding-left: 20px;
    margin: 0;
}

.spec-table li {
    margin-bottom: 5px;
}


/* Responsive */
@media (max-width: 768px) {
    .product-detail-section {
        flex-direction: column;
    }

    .tabs-header {
        flex-direction: column;
    }

    .tab-button {
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    .tab-button.active:after {
        width: 5px;
        height: 100%;
        bottom: 0;
    }

    .spec-table td:first-child {
        width: 100%;
        display: block;
        padding-bottom: 5px;
    }

    .spec-table td:last-child {
        display: block;
        padding-top: 5px;
        padding-bottom: 15px;
    }

    .spec-table tr {
        display: block;
        border-bottom: 2px solid #eaeaea;
    }
}

/* product-detail page end */

            /* DxU Iris Workcell Overview Styling */
            #overview .tab-content {
                padding: 0;
                background: transparent;
                box-shadow: none;
            }

            /* Intro Content */
            

            .intro-content h1 {
                font-size: 2.8rem;
                color: var(--ab-blue-dark);
              
                margin-bottom: 25px;
                font-weight: 700;
                line-height: 1.2;
            }

            .intro-content .richText-mobile {
                font-size: 1.2rem;
                line-height: 1.8;
                color: var(--ab-text-dark);
               
            }

            .intro-content .richText-mobile a {
                color: var(--medeqon-blue);
                text-decoration: none;
                font-weight: 600;
                position: relative;
                transition: all 0.3s ease;
            }

            .intro-content .richText-mobile a:hover {
                color: var(--ab-blue-dark);
                text-decoration: underline;
            }

            .intro-content .richText-mobile a::after {
                content: '↗';
                font-size: 0.9em;
                margin-left: 3px;
            }

            /* Page Content */
           

            .page-content h2 {
                font-size: 2.2rem;
                color: var(--ab-blue-dark);
                margin-bottom: 20px;
                position: relative;
                padding-bottom: 15px;
            }

            

            .page-content p {
                font-size: 1.1rem;
                line-height: 1.7;
                color: var(--ab-text-dark);
              
                margin: 0 auto 20px;
            }

            /* Triple Showcase Feature */
            .triple-showcase-feature {
                position: relative;
                margin: 60px 0;
                border-radius: 12px;
                overflow: hidden;
                min-height: 600px;
            }

            

           

            

           

            .showcase-feature h2 {
                font-size: 1.5rem;
                color: var(--ab-blue-dark);
                margin-bottom: 15px;
                font-weight: 600;
            }

            .showcase-feature .body-large {
                font-size: 1.1rem;
                font-weight: 500;
                color: var(--medeqon-green);
                margin-bottom: 15px;
            }

            .showcase-feature p {
                font-size: 1rem;
                line-height: 1.6;
                color: var(--ab-text-dark);
                margin-bottom: 15px;
            }

            .showcase-feature ul {
                list-style-type: none;
                padding-left: 0;
                margin-top: 15px;
            }

            .showcase-feature li {
                padding: 10px 0;
                padding-left: 30px;
                position: relative;
                line-height: 1.6;
                border-bottom: 1px solid #f0f0f0;
            }

            .showcase-feature li:last-child {
                border-bottom: none;
            }

            .showcase-feature li::before {
                content: "✓";
                position: absolute;
                left: 0;
                color: var(--medeqon-green);
                font-weight: bold;
                font-size: 1.2rem;
            }

            .showcase-feature strong {
                color: var(--ab-blue-dark);
                font-weight: 600;
            }

            /* Rich Text Mobile Styling */
            .richText-mobile {
                font-size: 1rem;
                line-height: 1.7;
                color: var(--ab-text-dark);
            }

            .richText-mobile h1,
            .richText-mobile h2,
            .richText-mobile h3,
            .richText-mobile h4 {
                color: var(--ab-blue-dark);
                margin-top: 25px;
                margin-bottom: 15px;
                font-weight: 600;
            }

            .richText-mobile h1 {
                font-size: 2.5rem;
            }

            .richText-mobile h2 {
                font-size: 2rem;
            }

            .richText-mobile h3 {
                font-size: 1.5rem;
            }

            .richText-mobile h4 {
                font-size: 1.2rem;
            }

            .richText-mobile p {
                margin-bottom: 15px;
            }

            .richText-mobile ul,
            .richText-mobile ol {
                padding-left: 20px;
                margin-bottom: 15px;
            }

            .richText-mobile li {
                margin-bottom: 8px;
            }

            .richText-mobile a {
                color: var(--medeqon-blue);
                text-decoration: none;
                font-weight: 500;
                border-bottom: 1px solid transparent;
                transition: all 0.3s ease;
            }

            .richText-mobile a:hover {
                color: var(--ab-blue-dark);
                border-bottom-color: var(--medeqon-blue);
            }

            /* Animation for content loading */
            .lazyload.active {
                animation: fadeInUp 0.8s ease forwards;
            }

            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /* Responsive Design */
            @media (max-width: 992px) {
                .intro-content h1 {
                    font-size: 2.3rem;
                }

                .page-content h2 {
                    font-size: 1.8rem;
                }

                .feature-container {
                    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                    gap: 20px;
                }
            }

            @media (max-width: 768px) {
                .intro-content {
                    padding: 30px 0;
                }

                .intro-content h1 {
                    font-size: 2rem;
                }

                .intro-content .richText-mobile {
                    font-size: 1.1rem;
                }

                .page-content {
                    padding: 30px 20px;
                    margin: 40px 0;
                }

                .page-content h2 {
                    font-size: 1.6rem;
                }

                .triple-showcase-feature {
                    min-height: auto;
                }

                .feature-container {
                    grid-template-columns: 1fr;
                    padding: 40px 15px;
                }

                .feature-content {
                    padding: 25px;
                }
            }

            @media (max-width: 480px) {
                .intro-content h1 {
                    font-size: 1.8rem;
                }

                .page-content h2 {
                    font-size: 1.4rem;
                }

                .showcase-feature h2 {
                    font-size: 1.3rem;
                }
            }
