    .navbar {
        background: linear-gradient(90deg, #327bbf 0%, #42ab42 100%);
        filter: brightness(1.15);
    }

    .hero-text {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-weight: 800;
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .icons-row img {
        width: 70px;
        height: 70px;
        object-fit: contain;
    }


    /* MAKE RESPONSIVE FOR 540px */
    @media (max-width: 412px) {
        .logotext {
            font-size: 15px !important;
        }


    
    }


    
 .marquee-container {
      width: 100%;
      overflow: hidden;
      position: relative;
      background: white;
      padding: 20px 0;
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: scroll-left 40s linear infinite;
    }

    .marquee-track img {
      height: 180px;
      width: auto;
      margin: 0 15px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    @keyframes scroll-left {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }


    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    /* Services Dropdown Hover Style */
    .navbar-nav .dropdown-menu .dropdown-item {
        transition: all 0.3s ease;
        color: #333;
        /* default text color */
    }

    .navbar-nav .dropdown-menu .dropdown-item:hover {
        background-color: #398ddc;
        /* theme color */
        color: #fff;
        /* white text on hover */
        border-radius: 5px;
        /* slight rounding for nice look */
        transform: translateX(5px);
        /* subtle slide effect */
    }


    /* MAKE RESPONSIVE FOR 540px */
    @media (max-width: 540px) {
        .hero-text h1 {
            font-size: 1.8rem;
        }

        .hero-text p {
            font-size: 1rem;
        }

        .icons-row img {
            width: 50px;
            height: 50px;
        }
    }

    .process-title {
        color: #327bbf;
        font-weight: 700;
        text-transform: uppercase;
    }

    .process-sub {
        color: #42ab42;
        font-weight: 600;
    }

    /* MINIMAL CUSTOM CSS: Only for specific colors and the dash line effect */

    :root {
        /* Custom Brand Colors - Bootstrap cannot create classes for these specific hex codes */
        --lc-blue: #327bbf;
        --lc-green: #42ab42;
        --lc-dark-header: #0b3d0b;
    }

    /* 1. Custom Color Utility Classes */

    .bg-lc-green-light {
        background-color: rgba(66, 171, 66, 0.1) !important;
    }



    /* 2. Step Path Styling (Only needed for the horizontal line) */
    /* Note: We use Bootstrap's 'lg' breakpoint for the line */
    @media (min-width: 992px) {
        .step-path {
            position: relative;
            z-index: 1;
        }

        .step-path:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50px;
            /* Aligns with the center of the 100px icon */
            left: 50%;
            width: 100%;
            height: 0;
            /* Making it just a border for simplicity */
            border-bottom: 2px dashed var(--lc-green);
            z-index: -1;
        }
    }

    .diff-icon {
        font-size: 35px;
        color: #327bbf;
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }

    .diff-box {
        background: #ffffff;
        border-radius: 12px;
        padding: 20px;
        transition: 0.3s ease;
        text-align: center;
    }

    .diff-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    }

    .queries-section {
        position: relative;
        padding: 60px 20px;
        background: linear-gradient(180deg, #42ab42 0%, #ffffff 100%);
        overflow: hidden;
    }

    .queries-section h2 {
        color: #327bbf;
        text-align: center;
        margin-bottom: 30px;
    }

    .query-box {
        background: #ffffff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
    }

    .query-box:hover {
        transform: translateY(-5px);
    }

    /* Responsive */
    @media(max-width: 768px) {
        .query-box {
            margin-bottom: 20px;
        }
    }

    /* Wave SVG */
    .wave {
        position: absolute;
        top: -80px;
        left: 0;
        width: 100%;
        height: 150px;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23327bbf" fill-opacity="0.2" d="M0,128L48,138.7C96,149,192,171,288,197.3C384,224,480,256,576,250.7C672,245,768,203,864,176C960,149,1056,139,1152,154.7C1248,171,1344,213,1392,234.7L1440,256L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 0;
    }

    .card-hover:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }

    .overflow-auto {
        scroll-behavior: smooth;
    }

    @media (max-width:768px) {
        .d-inline-block {
            width: 200px !important;
        }
    }

    @media (max-width:576px) {
        .d-inline-block {
            width: 160px !important;
        }
    }