     
:root {
    --ubl-green: #007a3e;
    --ubl-dark-green: #005a2e;
    --ubl-blue-accent: #0091ea; /* The blue border color */
}


.hero-image-container {
        position: relative;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
    }

    .hero-image-container img {
        max-width: 100%;
        height: auto;
        max-height: 400px;
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    }
    
    /* Fix SVG scaling in flex container */
    .hero-image-container svg {
        max-width: 100%;
        height: auto;
        max-height: 400px;
    }
    /* Carousel Indicators */
    .carousel-indicators {
        bottom: 20px;
        z-index: 10;
    }
    .carousel-indicators button {
        background-color: var(--ubl-green) !important;
        width: 12px !important;
        height: 12px !important;
        border-radius: 50%;
        margin: 0 5px !important;
        border: none;
        opacity: 0.5;
        transition: opacity 0.3s;
    }
    .carousel-indicators button.active {
        opacity: 1;
        transform: scale(1.2);
    }


    /* App Section */
    .app-section {
        background: linear-gradient(135deg, #007a3e 0%, #005c2f 100%);
        color: white;
        position: relative;
        overflow: hidden;
    }
    .store-btn img {
        height: 40px;
        margin-right: 10px;
    }


/* ----------------------------------------------------- */
    /* START: PRODUCTS & NEWS SECTION STYLES (Copy this) */
    /* ----------------------------------------------------- */
    
    .product-card {
        background-color: white;
        border: 1px solid #eee;
        border-radius: 8px;
        overflow: hidden;
        height: 100%;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s;
    }
    
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .card-image-wrapper {
        height: 160px;
        background-color: #e0f2f1;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .card-image-wrapper svg {
        width: 80%;
        height: auto;
    }

    .product-body {
        padding: 20px;
    }

    .product-title {
        font-size: 0.95rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
        min-height: 40px; /* Aligns buttons if titles vary */
    }

    .feature-list {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
    }

    .feature-list li {
        font-size: 0.85rem;
        color: #555;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
    }

    .feature-list li i {
        color: var(--ubl-green);
        margin-right: 8px;
        font-size: 1rem;
    }
    
    .btn-know-more {
        border: 1px solid #aaa;
        color: #333;
        background: transparent;
        padding: 5px 15px;
        font-size: 0.85rem;
        border-radius: 4px;
        text-decoration: none;
        transition: 0.3s;
    }

    .btn-know-more:hover {
        background-color: var(--ubl-green);
        border-color: var(--ubl-green);
        color: white;
    }

    /* News Widget Styles */
    .news-widget {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        border: 1px solid #eee;
        overflow: hidden;
        height: 100%;
    }

    .news-header {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .news-header h5 {
        margin: 0;
        font-size: 1rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .btn-view-more {
        font-size: 0.75rem;
        color: var(--ubl-green);
        border: 1px solid var(--ubl-green);
        padding: 2px 8px;
        border-radius: 4px;
        text-decoration: none;
    }
    
    .btn-view-more:hover {
        background-color: var(--ubl-green);
        color: white;
    }

    .news-list {
        list-style: none;
        padding: 0;
        margin: 0;
        max-height: 600px; /* Optional: Scrollable if too long */
        overflow-y: auto;
    }

    .news-item {
        display: flex;
        align-items: flex-start;
        padding: 15px;
        border-bottom: 1px solid #f5f5f5;
        transition: background 0.2s;
    }
    
    .news-item:last-child {
        border-bottom: none;
    }

    .news-item:hover {
        background-color: #f9fdfa;
    }

    .news-date {
        background-color: var(--ubl-dark-green);
        color: white;
        width: 70px;
        text-align: center;
        border-radius: 4px;
        padding: 5px;
        flex-shrink: 0;
        margin-right: 15px;
    }

    .news-date .day {
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1;
        display: block;
    }
    
    .news-date .month-year {
        font-size: 0.65rem;
        display: block;
        margin-top: 2px;
    }

    .news-content {
        font-size: 0.85rem;
        color: #333;
        line-height: 1.4;
    }
    
    .news-content a {
        color: #333;
        text-decoration: none;
    }
    
    .news-content a:hover {
        color: var(--ubl-green);
    }

    /* ----------------------------------------------------- */
    /* END: PRODUCTS & NEWS SECTION STYLES */
    /* ----------------------------------------------------- */


     .digital-services-section {
    background-color: #fff;
    padding: 60px 0;
    font-family: 'Roboto', sans-serif;
}

.section-title {
    text-align: center;
    font-weight: 700;
    color: #000;
    margin-bottom: 50px;
    font-size: 1.8rem;
}

/* Service Card Styles */
.service-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px; /* Slightly rounded corners */
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    color: var(--ubl-green);

}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #e0e0e0;
    border: 1px solid #007a3e;
    transform: translateY(-3px);
    cursor: pointer;
    }

.service-icon {
    font-size: 3rem; /* Large icon size */
    margin-bottom: 20px;
    /* Specific styling to match the thin line style in image */
    font-weight: 300; 
}

.service-name {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    max-width: 90%;
}

/* "Know More" Button */
.btn-digital-more {
    border: 1px solid #888;
    background: transparent;
    color: #333;
    padding: 6px 25px;
    font-size: 0.85rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    transition: 0.3s;
    font-weight: 500;
}

.btn-digital-more:hover {
    background-color: var(--ubl-green);
    border-color: var(--ubl-green);
    color: white;
}

/* Stats Bar Styles */
.stats-bar {
    background-color: var(--ubl-green);
    border-top: 5px solid var(--ubl-blue-accent); /* The blue top border */
    padding: 35px 0;
    color: white;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.stat-icon {
    font-size: 3rem;
    opacity: 1;
}

.stat-info {
    text-align: left;
}

.stat-info h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.stat-info p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
    margin-top: 5px;
}

/* SVG Illustration Styling */
.illustration-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-left: 20px;
}

@media (max-width: 991.98px) {
  .product-card {
    margin-bottom: 20px;
  }
  .news-widget {
    margin-top: 30px;
  }
  .illustration-container {
    padding-left: 0;
    margin-top: 30px;
  }
}

@media (max-width: 767.98px) {
  .products-news-section .col-lg-8,
  .products-news-section .col-lg-4 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .digital-services-section {
    padding: 40px 15px;
  }
  .service-card {
    padding: 20px 10px;
  }
  .stats-bar {
    padding: 25px 0;
  }
  .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .stat-info h3 {
    font-size: 1.5rem;
  }
  .stat-info p {
    font-size: 0.8rem;
  }
  .stat-icon {
    font-size: 2rem;
  }
  .app-section {
    text-align: center;
  }
  .app-section .d-flex.gap-3 {
    justify-content: center;
  }
  .news-date {
    width: 60px;
    padding: 4px;
  }
  .news-date .day {
    font-size: 1rem;
  }
  .news-date .month-year {
    font-size: 0.6rem;
  }
  .product-body {
    padding: 15px;
  }
  .product-title {
    font-size: 0.9rem;
    min-height: auto;
    margin-bottom: 10px;
  }
  .feature-list li {
    font-size: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .stat-item {
    width: 50%;
    margin: 0 auto 20px;
  }
  .service-card {
    margin-bottom: 15px;
  }
  .product-title {
    min-height: auto;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .news-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-date {
    margin-right: 0;
    margin-bottom: 10px;
    width: auto;
    padding: 5px 10px;
  }
}

