    /* --- Variables and General Setup --- */
:root {
    --dark-blue: #131A28; /* Primary background color */
    --orange: #f2901D;
    --text-color: #FFFFFF;
    --light-text: #B0B0B0;
    --max-width: 1300px;
    --padding-x: 50px;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: var(--dark-blue);
    color: var(--text-color);
}

/* --- Header Styles --- */
.app-header {
    background-color: var(--dark-blue);
    padding: 15px var(--padding-x);
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo img {
    height: 50px /* Adjust as needed */
}

.main-nav a {
    color: var(--light-text);
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.main-nav a.active, .main-nav a:hover {
    color: var(--orange);
}

.contact-btn {
    padding: 10px 20px;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, border-color 0.3s;
}

/* --- Hero Section Styles --- */
.hero-section {
    background-color: var(--dark-blue);
    padding: 80px var(--padding-x) 0;
    position: relative;
    min-height: 700px; /* Ensure space for content */
    overflow: hidden;
}

.hero-content-wrapper {
    display: flex;
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: flex-start;
}

.hero-text-col {
    flex: 0 0 55%;
    padding-right: 50px;
    padding-top: 50px;
}

.hero-tagline {
    font-size: 16px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 60px;
    line-height: 1.3;
    margin: 0 0 20px 0;
    font-weight: 700;
}

    .hero-subtitle {
        /* color: var(--light-text); */
        font-size: 26px;
        line-height: 1.2;
        margin-top: 10%;
    }

.hero-image-col {
    flex: 0 0 45%;
    position: relative;
    height: 600px; /* Defines height for the image/button positioning */
}

.image-container {
    position: absolute;
    top: -50px; /* Lifts the image above the fold line */
    right: -50px;
    width: 100%;
    height: 100%;
}

/* Styling for the circular background behind the man (requires pseudo-element) */
.image-container:before {
    content: "";
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 250px;
    height: 250px;
    background-color: #383e4a; /* Darker circle color */
    border-radius: 50%;
    z-index: -1;
}

.cta-button-banner {
    position: absolute;
    bottom: 22%;
    right: 18%;
    background-color: #f2901D;
    color: var(--text-color);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 100px;
    font-size: 16px;
}

.cta-button .arrow {
    margin-left: 10px;
}

/* --- Contact Bar Styles --- */
.contact-bar {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 50px; /* Space between bar and page bottom */
}

.contact-item {
    flex: 1;
    padding: 20px 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.border-left {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.border-right {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.orange-bg {
    background-color: #EF5A08;
    border: none;
}
         /* --- About Us Section Styles --- */
     .about-us-section {
         background-color: #EFEFEF; /* Light gray background */
         padding: 100px var(--padding-x); /* Top/bottom padding, using existing side padding variable */
         display: flex; /* Use flexbox to center content vertically if needed */
     }

    .about-us-title {
        font-size: 48px;
        color: var(--dark-blue); /* Assuming a dark text color for headings */
        margin-bottom: 30px;
        font-weight: 700;
    }

    .about-us-description {
        font-size: 26px;
        line-height: 1.6;
        color: #4A4A4A; /* Darker gray for paragraph text */
        margin-bottom: 50px;
    }

    .about-us-button {
        display: inline-block; /* Make it behave like a block but only take up content width */
        background-color: #f2901D;
        color: var(--text-color); /* White text */
        padding: 15px 35px;
        text-decoration: none;
        font-weight: bold;
        border-radius: 100px;
        font-size: 17px;
        transition: background-color 0.3s ease;
    }

    .about-us-button:hover {
        background-color: #e65c00; /* Slightly darker orange on hover */
    }

    .about-us-button .arrow {
        margin-left: 10px;
        font-size: 18px;
    }
    /* --- Service Section Styles --- */
    .services-section {
        padding: 100px 0;
        text-align: center;
        background-color: #FFFFFF; /* White background */
    }
    .hs-new-section-wrapper {
        margin: 0 auto;
    }

    /* 1. The "Our Services" Pill Tag */
    .hs-new-tag {
        display: inline-block;
        padding: 8px 20px;
        border: 1px solid #333; /* Dark border */
        border-radius: 50px; /* Fully rounded ends */
        font-size: 14px;
        font-weight: 500;
        color: #111;
        margin-bottom: 24px;
        background-color: transparent;
    }

    /* 2. The Main Headline */
    .hs-new-heading {
        font-size: 42px; /* Large text */
        line-height: 1.2;
        font-weight: 700;
        color: #0f172a; /* Deep Navy/Black */
        margin-bottom: 24px;
        margin-top: 0;
    }

    /* 3. The Description Text */
    .hs-new-desc {
        font-size: 18px;
        line-height: 1.6;
        color: #475569; /* Muted Grey text */
        margin-bottom: 40px;
        max-width: 90%;
    }

    /* 4. The Orange Button */
    .hs-new-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #f59e0b; /* Match the orange in image */
        color: #ffffff;
        padding: 14px 32px;
        border-radius: 50px; /* Pill shape */
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: background-color 0.3s ease;
    }

    .hs-new-btn:hover {
        background-color: #d97706; /* Darker orange on hover */
        color: #ffffff;
    }

    .hs-new-arrow {
        margin-left: 8px;
        font-size: 18px;
    }

    /* 5. The Image Styling */
    .hs-new-img-wrapper {
        margin-top: 60px; /* Space between button and image */
        width: 100%;
    }

    .hs-new-img {
        width: 100%;
        height: auto;
        border-radius: 20px; /* Rounded corners on image */
        display: block;
        object-fit: cover;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .hs-new-heading {
            font-size: 32px;
        }
        .hs-new-desc {
            font-size: 16px;
        }
    }

    /* --- Header Styles --- */
    .services-header {
        max-width: 700px;
        margin: 0 auto 60px;
        padding: 0 var(--padding-x); /* Use existing padding variable for side spacing */
    }

    .section-title {
        font-size: 48px;
        color: var(--dark-blue);
        margin-bottom: 20px;
        font-weight: 700;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 1.5;
        color: #666666;
    }

    /* --- Service Grid Styles --- */
    .services-grid {
        display: flex;
        justify-content: center;
        gap: 30px; /* Space between cards */
        max-width: 1200px;
        margin: 0 auto 50px;
        padding: 0 var(--padding-x);
    }

    .service-card {
        flex: 0 0 300px; /* Fixed width for card */
        padding: 40px 30px;
        text-align: center;
        border: 1px solid #EEEEEE;
        border-radius: 10px;
        transition: transform 0.3s, box-shadow 0.3s;
        background-color: #FFFFFF;
    }

    .service-card:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .highlighted-card {
        background-color: var(--orange);
        border-color: var(--orange);
        color: var(--text-color); /* White text for highlighted card */
        box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
        transform: translateY(-5px); /* Lift the highlighted card slightly */
    }

    .highlighted-card .card-title,
    .highlighted-card .card-description {
        color: var(--text-color);
    }

    .card-icon-wrapper {
        margin-bottom: 20px;
        /* Styles for the icon placeholder */
        font-size: 40px;
        height: 70px;
        width: 70px;
        line-height: 70px;
        margin: 0 auto 20px;
        border-radius: 50%;
        /* Background for non-highlighted cards */
        background-color: #FFF2E6;
        color: var(--orange);
    }

    .highlighted-card .card-icon-wrapper {
        background-color: rgba(255, 255, 255, 0.2); /* Light transparent background for icon */
        color: var(--text-color);
    }

    .card-title {
        font-size: 20px;
        margin-bottom: 10px;
        color: var(--dark-blue);
        font-weight: 600;
    }

    .card-description {
        font-size: 14px;
        line-height: 1.5;
        color: #777777;
    }

    /* --- All Services Button --- */
    .all-services-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 20px 0 80px;
        padding: 10px 30px;
        border: 1px solid #CCCCCC;
        border-radius: 30px;
        color: var(--dark-blue);
        text-decoration: none;
        font-size: 16px;
        transition: background-color 0.3s, border-color 0.3s;
    }

    .all-services-btn:hover {
        color: #f2901D;
    }

    .all-services-btn .arrow {
        margin-left: 10px;
    }

    /* --- Video Section Styles --- */
    .video-container {
        margin: 0 auto;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }

    .video-poster {
        width: 100%;
        height: auto;
        display: block;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.2); /* Slight dark overlay */
    }

    .play-button {
        width: 70px;
        height: 70px;
        background-color: var(--orange);
        border-radius: 50%;
        position: relative;
        opacity: 0.9;
        transition: opacity 0.3s;
    }

    .play-button:hover {
        opacity: 1;
    }

    /* Triangle for the play icon */
    .play-button::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 55%;
        transform: translate(-50%, -50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #FFFFFF;
    }
    /* --- Growth Partner / Stats Section Styles --- */
    .growth-partner-section {
        padding: 100px var(--padding-x);
        background-color: #fcfcfc; /* Very light background for contrast */
    }

    .growth-partner-wrapper {
        display: flex;
        gap: 30px;
    }

    /* --- Left Card: Text and Headline --- */
    .growth-text-card {
        flex: 1; /* Takes up approximately half the space */
        background-color: var(--dark-blue); /* Assuming the dark background from before */
        color: var(--text-color);
        padding: 60px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .tag-button {
        display: inline-block;
        background: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: var(--text-color);
        padding: 8px 20px;
        border-radius: 30px;
        text-transform: capitalize;
        font-size: 14px;
        margin-bottom: 30px;
        width: fit-content;
    }

    .growth-title {
        font-size: 48px;
        line-height: 1.2;
        margin: 0;
        font-weight: 700;
    }

    /* --- Right Grid: Stats --- */
    .stats-grid-container {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 20px;
        background: #EFEFEF;
        border-radius: 15px;
    }
    .stats-grid-container-product{
        flex: 1;
        display: grid;
        /*grid-template-columns: repeat(2, 1fr);*/
        gap: 30px;
        padding: 20px;
        background: #EFEFEF;
        border-radius: 15px;
    }

    .stat-card {
        background-color: #FFFFFF;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03); /* Subtle shadow */
        border: 1px solid #EDEDED;
    }

    .stat-number {
        font-size: 40px;
        font-weight: 700;
        color: var(--orange); /* Use primary orange for numbers */
        margin: 0 0 10px 0;
        line-height: 1.1;
    }

    /* Specific color for the 4.9/5 stat */
    .score-color {
        color: var(--dark-blue);
    }

    .stat-description {
        font-size: 15px;
        color: #666666;
        margin: 0;
    }
    /* --- Products Section Styles --- */
    .products-section {
        padding: 100px 0;
        text-align: center;
        background-color: #FFFFFF;
    }

    /* --- Header Styles (Reusing section-title/subtitle) --- */
    .products-header {
        max-width: 800px;
        margin: 0 auto 60px;
        padding: 0 var(--padding-x);
    }

    .section-title {
        /* Styles inherited from previous sections */
        font-size: 48px;
        color: var(--dark-blue);
        margin-bottom: 20px;
    }

    .section-subtitle {
        /* Styles inherited from previous sections */
        font-size: 16px;
        line-height: 1.5;
        color: #666666;
    }

    /* --- Comparison Grid Styles --- */
    .product-comparison-wrapper {
        display: flex;
        justify-content: center;
        gap: 0; /* Cards are flush against each other visually */
        max-width: 1100px;
        margin: 0 auto 50px;
        padding: 0 var(--padding-x);
    }

    .product-card {
        flex: 1; /* Each card takes equal width */
        padding: 40px 30px;
        text-align: center;
        border: 1px solid #EEEEEE;
        background-color: #FFFFFF;
        transition: all 0.3s;
        z-index: 1; /* Ensure highlighted card sits on top */
        /* Define rounded corners for the outer cards */
    }

    /* Ensure outer cards have rounded corners */
    .product-card:first-child {
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
        border-right: none;
    }

    .product-card:last-child {
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
        border-left: none;
    }

    /* --- Highlighted Card (Hospital Management) --- */
    .highlighted-product {
        background-color: var(--orange);
        color: var(--text-color);
        padding: 60px 40px; /* More vertical padding for prominence */
        transform: scale(1.1); /* Make it visually bigger */
        border: none;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(255, 102, 0, 0.5);
        z-index: 10;
    }

    /* Reset border for highlighted card adjacent elements */
    .product-comparison-wrapper > .product-card:first-child,
    .product-comparison-wrapper > .product-card:last-child {
        border-radius: 0;
        border: 1px solid #EEEEEE;
    }
    .product-comparison-wrapper > .product-card:first-child { border-right: none; }
    .product-comparison-wrapper > .product-card:last-child { border-left: none; }


    .product-icon {
        height: 120px;
        margin-bottom: 20px;
    }

    .product-icon img {
        max-height: 100%;
    }

    .product-name {
        font-size: 24px;
        font-weight: 600;
        margin: 0 0 5px 0;
        color: var(--dark-blue);
    }

    .highlighted-product .product-name {
        color: var(--text-color);
    }

    .product-tag {
        font-size: 16px;
        color: #666666;
        margin-bottom: 30px;
    }

    .highlighted-product .product-tag {
        color: rgba(255, 255, 255, 0.8);
    }

    /* --- Features List --- */
    .product-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .feature-item {
        font-size: 16px;
        text-align: left;
        margin-bottom: 15px;
        position: relative;
        padding-left: 30px;
        color: #4A4A4A;
    }

    .highlighted-product .feature-item {
        color: var(--text-color);
    }

    /* Custom Checkmark (using a pseudo-element) */
    .feature-item.checked::before {
        content: "✓"; /* Or use a more sophisticated check icon/font */
        position: absolute;
        left: 0;
        font-weight: bold;
        color: var(--orange);
    }

    .highlighted-product .feature-item.checked::before {
        color: var(--text-color);
    }


    /* --- More Button (Reusing styles from previous button) --- */
    .more-products-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 50px 0 0;
        padding: 10px 30px;
        border: 1px solid #CCCCCC;
        border-radius: 30px;
        color: var(--dark-blue);
        text-decoration: none;
        font-size: 16px;
        transition: background-color 0.3s;
    }
    .more-products-btn:hover{
        color: #f2901D;
    }

    .more-products-btn .arrow {
        margin-left: 10px;
    }
    /* --- Projects Section Styles --- */
    .projects-section {
        padding: 100px var(--padding-x);
        text-align: center;
        background-color: #FFFFFF; /* White background */
    }

    /* --- Header Styles --- */
    .projects-header {
        max-width: 1200px;
        margin: 0 auto 60px;
        text-align: left; /* Title alignment matches the screenshot */
    }

    .section-title {
        /* Styles inherited from previous sections, reset alignment */
        font-size: 48px;
        color: var(--dark-blue);
        margin: 0;
        font-weight: 700;
        text-align: center;
    }

    /* --- Project Cards Grid --- */
    .projects-grid {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto 60px;
    }

    .project-card {
        flex: 1; /* Each card takes equal width */
        padding: 40px 30px;
        text-align: center;
        background-color: #FFFFFF;
        border-radius: 15px;
        border: 1px solid #F0F0F0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    }

    /*.project-icon-circle {
        width: 100px;
        height: 100px;
        background-color: var(--dark-blue);*/ /* Dark circle color */
        /*border-radius: 50%;
        margin: 0 auto 30px;
    }*/

.project-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    margin: 0 auto 20px;
}

    .project-icon-circle img {
        width: 60%; 
        height: 60%;
        object-fit: contain;
    }


    .project-name {
        font-size: 20px;
        font-weight: 600;
        color: var(--dark-blue);
        margin: 0 0 15px 0;
    }

    .project-description {
        font-size: 14px;
        line-height: 1.6;
        color: #777777;
        text-align: center; /* Content is justified in the image, but center is safer default */
    }

    /* --- CTA Buttons --- */
    .project-cta-buttons {
        display: flex;
        /*justify-content: center; !* This centers the buttons horizontally *!*/
        gap: 20px;
        margin-top: 50px;
    }

    .cta-button {
        padding: 10px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        transition: background-color 0.3s, color 0.3s, opacity 0.3s;
    }

    .primary-cta {
        background-color: var(--orange);
        color: var(--text-color);
        border: 2px solid var(--orange);
    }

    .secondary-cta {
        background-color: #E0E0E0;
        color: var(--dark-blue);
        border: 2px solid #E0E0E0;
    }

    .primary-cta:hover {
        opacity: 0.9;
    }

    .secondary-cta:hover {
        background-color: #CCCCCC;
    }

    .primary-cta .arrow {
        margin-left: 10px;
        font-size: 18px;
    }
    /* --- Testimonial Section Styles --- */
    .testimonial-section {
        padding: 100px 0;
        background-color: #FFFFFF; /* White background */
    }

    .testimonial-wrapper {
        display: flex;
        margin: 0 auto;
        gap: 30px;
    }

    /* --- Left Column: Header --- */
    .testimonial-header-col {
        flex: 0 0 350px; /* Fixed width for the title block */
        padding-right: 50px;
    }

    .testimonial-title {
        font-size: 56px;
        line-height: 1.1;
        color: var(--dark-blue);
        margin: 0 0 20px 0;
        font-weight: 700;
        text-align: left;
    }

    .testimonial-description {
        font-size: 16px;
        line-height: 1.6;
        color: #666666;
        text-align: left;
    }

    /* --- Right Column: Grid --- */
    .testimonial-grid-col {
        flex: 1; /* Takes up remaining space */
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two columns for testimonials */
        gap: 25px;
    }

    .testimonial-card {
        background-color: #FFFFFF;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        border: 1px solid #F0F0F0;
        text-align: left;
    }

    /* Specific styling for the top-most simple card that breaks the pattern */
    .simple-top-card {
        grid-column: 2 / span 1; /* Forces it to start in the second column */
        /* Adjust styles if needed */
    }

    /* Specific styling for the bottom-most simple card */
    .simple-bottom-card {
        grid-column: 2 / span 1; /* Forces it to start in the second column */
    }

    .stars {
        color: #FFC107; /* Yellow/Gold for stars */
        font-size: 16px;
        margin-bottom: 10px;
    }

    .review-text {
        font-size: 15px;
        line-height: 1.6;
        color: #4A4A4A;
        margin: 0 0 15px 0;
    }

    .reviewer-info {
        display: flex;
        align-items: center;
        margin-top: 20px;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        background-color: #E0E0E0; /* Placeholder color for avatars */
        border-radius: 50%;
        margin-right: 10px;
        /* Styles for the actual image if used: */
        /* background-image: url('path/to/image.jpg'); background-size: cover; */
    }

    .reviewer-name {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: var(--dark-blue);
    }

    .reviewer-title {
        display: block;
        font-size: 13px;
        color: #777777;
    }
    /* --- CTA Bar Styles (Orange Top Section) --- */
    .footer-cta-bar {
        background-color: #f2901D;
        padding: 60px var(--padding-x);
    }

    .footer-cta-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cta-text-group {
        text-align: left;
    }

    .cta-heading {
        font-size: 38px;
        font-weight: 700;
        color: var(--text-color);
        margin: 0;
    }

    .cta-subtext {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.85);
        margin: 5px 0 0 0;
    }

    .cta-get-started-btn {
        background-color: var(--text-color); /* White background */
        color: var(--orange); /* Orange text */
        padding: 15px 35px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    .cta-get-started-btn:hover {
        color: #f2901D
    }

    .cta-get-started-btn .arrow {
        margin-left: 5px;
        font-size: 18px;
    }

    /* --- Main Footer Styles (Dark Blue Section) --- */
    .main-footer {
        background-color: var(--dark-blue);
        padding: 70px var(--padding-x) 20px;
        color: var(--text-color);
    }

    .footer-wrapper {
        display: flex;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto 50px;
        text-align: left;
    }

    .footer-col {
        width: 25%; /* Divide into roughly four columns */
        padding-right: 20px;
    }

    .footer-logo img {
        max-height: 50px;
        margin-bottom: 20px;
    }

    .footer-heading {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 20px;
        color: var(--text-color);
    }

    .footer-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-list li {
        margin-bottom: 12px;
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
    }

    .footer-list a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-list a:hover {
        color: var(--orange);
    }

    .contact-list .icon {
        margin-right: 10px;
    }

    /* --- Newsletter Form --- */
    .newsletter-form {
        display: flex;
        margin-bottom: 25px;
        border-radius: 5px;
        overflow: hidden;
    }

    .newsletter-form input {
        flex-grow: 1;
        padding: 12px 15px;
        border: none;
        background-color: rgba(255, 255, 255, 0.15); /* Darker input background */
        color: var(--text-color);
        font-size: 14px;
    }

    .newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .subscribe-btn {
        background-color: #f2901D;
        color: var(--text-color);
        padding: 12px 20px;
        border: none;
        cursor: pointer;
        font-weight: 600;
        transition: opacity 0.3s;
    }

    .subscribe-btn:hover {
        opacity: 0.9;
    }

    /* --- Social Icons --- */
    .social-links {
        display: flex;
        gap: 10px;
    }

    .social-icon {
        display: block;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: var(--text-color);
        text-align: center;
        line-height: 35px;
        /* Placeholder for actual icons (use FontAwesome or similar in a real project) */
        background-color: rgba(255, 255, 255, 0.05);
    }

    .social-icon:hover {
        background-color: var(--orange);
        border-color: var(--orange);
    }

    /* --- Copyright Bar --- */
    .footer-copyright {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-copyright p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        margin: 0;
    }

    /*ABOUT US PAGE*/
    .cta-button-banner-page {
        position: absolute;
        bottom: 34%;
        right: 13%;
        background-color: #f2901D;
        color: var(--text-color);
        padding: 15px 30px;
        text-decoration: none;
        font-weight: bold;
        border-radius: 100px;
        font-size: 16px;
    }
    /*How We Work Page*/
    /* --- How We Do It Section Styles --- */
    .how-we-do-it-section {
        background-color: var(--dark-blue); /* Dark background */
        padding: 100px var(--padding-x);
        text-align: center;
        color: var(--text-color);
    }

    .how-we-do-it-header {
        max-width: 800px;
        margin: 0 auto 80px;
    }

    .how-we-do-it-header .section-title {
        color: var(--text-color); /* White title */
        margin-bottom: 20px;
    }

    .how-we-do-it-header .section-subtitle {
        color: rgba(255, 255, 255, 0.7); /* Lighter subtitle text */
    }

    /* --- Process Flow Container (The main circular layout) --- */
    .process-flow-container {
        /*max-width: 1100px; !* Adjust based on desired overall width *!*/
        margin: 0 auto;
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr; /* Two columns */
        grid-template-rows: auto auto; /* Two rows */
        gap: 150px 150px; /* Large gap to create space for center icon and connect lines */
        justify-items: center;
        align-items: center;
        padding: 50px 0; /* Vertical padding to space cards from edges */
    }

    .process-card {
        background-color: #FFFFFF;
        color: var(--dark-blue);
        padding: 30px;
        border-radius: 50px;
        text-align: left;
        width: 300px; /* Fixed width for cards */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: relative;
        border: 3px solid #f2901D;
    }

    .step-number {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        background-color: var(--orange);
        color: var(--text-color);
        border-radius: 50%;
        font-weight: bold;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .step-title {
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 10px 0;
        color: var(--dark-blue);
    }

    .step-description {
        font-size: 15px;
        line-height: 1.5;
        color: #666666;
        margin-bottom: 20px;
    }

    .step-details {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .step-details li {
        position: relative;
        padding-left: 20px;
        font-size: 14px;
        color: #777777;
        margin-bottom: 8px;
    }

    .step-details li::before {
        content: "•"; /* Bullet point */
        position: absolute;
        left: 0;
        color: var(--orange);
        font-size: 1.2em;
        line-height: 1;
    }

    /* Positioning for each step to create the flow */
    .step-1 { grid-area: 1 / 1 / 2 / 2; } /* Top-Left */
    .step-2 { grid-area: 1 / 2 / 2 / 3; } /* Top-Right */
    .step-3 { grid-area: 2 / 2 / 3 / 3; } /* Bottom-Right */
    .step-4 { grid-area: 2 / 1 / 3 / 2; } /* Bottom-Left */


    /* --- Central Icon --- */
    .process-center-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100px;
        height: 100px;
        background-color: var(--orange); /* Orange background for the circle */
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2; /* Ensure it's above the lines */
        /* Add an actual icon here if you have one, e.g., using an SVG or background-image */
    }

    /* Styles for the arrow icon inside the circle */
    /*.process-center-icon::before {*/
    /*    content: "↻"; !* Unicode for a clockwise arrow, or use an image/SVG *!*/
    /*    font-size: 50px;*/
    /*    color: var(--text-color);*/
    /*    line-height: 1;*/
    /*}*/


    /* --- Connecting Lines (using pseudo-elements on the container or background-image) --- */
    .process-flow-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* This creates the dotted line pattern in the background */
        background-image:
                radial-gradient(circle, rgba(255,255,255,0.2) 2px, transparent 2px);
        background-size: 40px 40px; /* Size of each dot and gap */
        opacity: 0.1; /* Make the dots subtle */
        z-index: 0;
        border-radius: 20px; /* Match outer container if needed */
    }
    /*Products in Section Page*/
    /* --- Products In Action Section Styles --- */
    .products-in-action-section {
        background-color: #EFEFEF; /* Light gray background */
        padding: 100px var(--padding-x);
        text-align: center;
    }

    .products-in-action-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .products-in-action-content .section-title {
        color: var(--dark-blue); /* Dark text for title */
        margin-bottom: 20px;
    }

    .products-in-action-content .section-subtitle {
        color: #666666; /* Darker gray for subtitle */
        margin-bottom: 40px;
        font-size: 18px;
        line-height: 1.6;
    }

    .free-demo-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--dark-blue); /* Dark blue background for button */
        color: var(--text-color); /* White text */
        padding: 15px 80px;
        border-radius: 100px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: background-color 0.3s, opacity 0.3s;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .free-demo-btn:hover {
        opacity: 0.9;
        background-color: #2a3447; /* Slightly lighter dark blue on hover */
    }

    .free-demo-btn .arrow {
        margin-left: 10px;
        font-size: 18px;
    }
    /*ERP PAGE*/
    /* --- Core Modules & Features Section Styles --- */
    .modules-features-section {
        background-color: #FFFFFF; /* White background */
        padding: 100px var(--padding-x);
        text-align: center;
    }

    .modules-features-header {
        max-width: 900px;
        margin: 0 auto 60px;
    }

    .modules-features-header .section-title {
        color: var(--dark-blue);
        margin-bottom: 20px;
    }

    .modules-features-header .section-subtitle {
        color: #666666;
        font-size: 16px;
        line-height: 1.6;
    }

    /* --- Modules Grid --- */
    .modules-grid {
        display: flex;
        justify-content: center;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .module-card {
        flex: 1; /* Each card takes equal width */
        background-color: #FFFFFF;
        border: 1px solid #EEEEEE;
        border-radius: 15px;
        padding: 40px 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
        text-align: left;
    }

    .module-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 30px;
        /* Placeholder for icons, in a real project you'd use img tags or SVGs */
        /* Example background for icon */
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    /* You'd replace these with actual image paths or SVGs */
    /*
    .module-card:nth-child(1) .module-icon { background-image: url('path/to/dollar-icon.png'); }
    .module-card:nth-child(2) .module-icon { background-image: url('path/to/pie-chart-icon.png'); }
    .module-card:nth-child(3) .module-icon { background-image: url('path/to/monitor-icon.png'); }
    */

    .module-name {
        font-size: 22px;
        font-weight: 600;
        color: var(--dark-blue);
        margin: 0 0 10px 0;
        text-align: center; /* Name centered below icon */
    }

    .module-description {
        font-size: 15px;
        line-height: 1.6;
        color: #777777;
        margin-bottom: 30px;
        text-align: center; /* Description centered below name */
    }

    .module-features-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .module-features-list .feature-item {
        position: relative;
        padding-left: 25px;
        font-size: 15px;
        color: #4A4A4A;
        margin-bottom: 12px;
    }

    .module-features-list .feature-item.checked::before {
        content: "✓"; /* Checkmark */
        position: absolute;
        left: 0;
        color: var(--orange); /* Orange checkmark */
        font-weight: bold;
    }
    /* --- Industries We Serve Section Styles --- */
    .industries-section {
        background-color: #F8F8F8; /* Light gray background */
        padding: 100px var(--padding-x);
        text-align: center;
    }

    .industries-header {
        max-width: 900px;
        margin: 0 auto 60px;
    }

    .industries-header .section-title {
        color: var(--dark-blue);
        margin-bottom: 20px;
    }

    .industries-header .section-subtitle {
        color: #666666;
        font-size: 16px;
        line-height: 1.6;
    }

    /* --- Main Image --- */
    .industries-image-wrapper {
        max-width: 1200px; /* Adjust max width of image container */
        margin: 0 auto 60px;
        border-radius: 15px; /* Rounded corners for the image */
        overflow: hidden; /* Ensures image respects border-radius */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .industries-main-image {
        width: 100%;
        height: auto;
        display: block;
    }

    /* --- Industries Grid --- */
    .industries-grid {
        display: flex;
        justify-content: center;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .industry-card {
        flex: 1; /* Each card takes equal width */
        background-color: #FFFFFF;
        border: 1px solid #EEEEEE;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
        text-align: left;
    }

    .industry-title {
        font-size: 22px;
        font-weight: 600;
        color: var(--orange); /* Orange title color */
        margin: 0 0 10px 0;
    }

    .industry-description {
        font-size: 15px;
        line-height: 1.6;
        color: #777777;
        margin: 0;
    }
    /*Contact Us Section*/
    /* --- Contact Section Styles --- */
    .contact-section {
        padding: 100px var(--padding-x);
        text-align: center;
        background-color: #FFFFFF;
    }

    .contact-header {
        max-width: 600px;
        margin: 0 auto 50px;
    }

    .contact-header .section-title {
        color: var(--dark-blue);
        margin-bottom: 10px;
    }

    .contact-header .section-subtitle {
        color: #666666;
        font-size: 16px;
    }

    /* --- Form Wrapper and Dotted Border Effect --- */
    .contact-form-wrapper {
        position: relative;
    }

    /* Dotted Border Effect using a background image on the wrapper */
    .contact-form-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* Create the dotted circle/dash line effect */
        background-image:
                radial-gradient(circle, #D0D0D0 1px, transparent 1px),
                radial-gradient(circle, #D0D0D0 1px, transparent 1px);
        background-size: 20px 20px;
        opacity: 0.8;
        z-index: 0;
        border-radius: 50px;
        /* For a more circular/dashed look, using a custom SVG or border-image is more reliable */
    }

    .contact-form-grid {
        display: grid;
        grid-template-columns: 200px 1fr; /* Label column (fixed width) and Input column (flexible) */
        gap: 20px 30px; /* Vertical and horizontal gap between items */
        position: relative;
        z-index: 1; /* Keep form elements above the dotted border */
    }

    /* --- Form Labels --- */
    .form-label {
        background-color: var(--dark-blue);
        color: var(--text-color);
        padding: 15px 20px;
        border-radius: 25px;
        font-size: 16px;
        font-weight: 600;
        height: 100%; /* Ensure label covers full height of input */
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    /* --- Form Inputs --- */
    .form-input {
        background-color: #F5F5F5; /* Light gray input background */
        border: none;
        padding: 15px 20px;
        border-radius: 25px;
        font-size: 16px;
        color: var(--dark-blue);
        width: 100%;
        box-sizing: border-box;
    }

    .form-input::placeholder {
        color: #AAAAAA;
    }

    /* Specific styling for the Message textarea */
    .form-textarea {
        resize: none; /* Disable resizing */
        padding-top: 20px;
        height: 150px; /* Height adjustment */
    }

    /* --- Inquiry Dropdown Styling --- */
    .custom-select-wrapper {
        position: relative;
    }

    .custom-select {
        appearance: none; /* Hide default dropdown arrow */
        -webkit-appearance: none;
        -moz-appearance: none;
        cursor: pointer;
        background-image: url("data:image/svg+xml;utf8,<svg fill='%23666666' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
        background-repeat: no-repeat;
        background-position: right 15px center;
        padding-right: 40px;
        padding-top: 4px !important; 
    }

    /* --- Submit Button --- */
    .form-submit-row {
        grid-column: 1 / span 2; /* Span both columns */
        display: flex;
        justify-content: flex-end; /* Push button to the right */
        margin-top: 10px;
    }

    .submit-btn {
        background-color: #f2901D;
        color: var(--text-color);
        padding: 15px 40px;
        border: none;
        border-radius: 100px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: opacity 0.3s;
    }

    .submit-btn:hover {
        opacity: 0.9;
    }

    .submit-btn .arrow {
        margin-left: 10px;
        font-size: 18px;
    }