    
  /*  
  @import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

  .rs-counter-area {
    --rs-primary: #252e6f;
    --rs-secondary: #116735;
    --rs-text-dark: #1e293b;
    --rs-bg-light: #ffffff;
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  }
  
  .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
  }
  
  .container.has-large {
    max-width: 1500px;
  }
  
  .row.five-in-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
    gap: 0;
  }
  
  .row.five-in-row > .col {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 0.75rem;
    box-sizing: border-box;
  }
  
  .rs-counter-item {
    height: 100%;
    transition: all 0.35s ease;
  }
  
  .rs-counter-inner {
    background: var(--rs-bg-light);
    border-radius: 1.75rem;
    padding: 2rem 0.75rem;
    text-align: center;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(37, 46, 111, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .rs-counter-item:hover .rs-counter-inner {
    transform: translateY(-6px);
    box-shadow: 0 28px 40px -16px rgba(0, 0, 0, 0.12);
    border-color: rgba(37, 46, 111, 0.2);
    background: #ffffff;
  }
  
  .rs-counter-number-wrapper {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.125rem;
    margin-bottom: 0.75rem;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  
  .rs-counter-number {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--rs-primary) 0%, var(--rs-secondary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    display: inline-block;
  }
  
  .prefix {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--rs-primary) 20%, var(--rs-secondary) 80%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1.2;
    display: inline-block;
    margin-left: 0.1rem;
  }
  
  .rs-counter-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.02em;
    font-family: 'Inter', system-ui, sans-serif;
    margin-top: 0.25rem;
    text-transform: uppercase;
  }
  
 
  @media (min-width: 1200px) {
    .row.five-in-row > .col {
      flex: 1 1 0;
      min-width: 0;
    }
    
    .rs-counter-number {
      font-size: 3.2rem;
    }
    
    .prefix {
      font-size: 2.5rem;
    }
    
    .rs-counter-title {
      font-size: 1rem;
    }
    
    .rs-counter-inner {
      padding: 2rem 0.5rem;
    }
  }
  
  @media (min-width: 992px) and (max-width: 1199px) {
    .row.five-in-row > .col {
      flex: 1 1 0;
      min-width: 0;
    }
    
    .rs-counter-number {
      font-size: 2.6rem;
    }
    
    .prefix {
      font-size: 2rem;
    }
    
    .rs-counter-title {
      font-size: 0.85rem;
    }
    
    .rs-counter-inner {
      padding: 1.5rem 0.5rem;
    }
    
    .rs-counter-number-wrapper {
      gap: 0.1rem;
    }
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
    .row.five-in-row {
      gap: 0.5rem;
    }
    
    .row.five-in-row > .col {
      flex: 1 1 0;
      min-width: 0;
    }
    
    .rs-counter-number {
      font-size: 2rem;
    }
    
    .prefix {
      font-size: 1.6rem;
    }
    
    .rs-counter-title {
      font-size: 0.7rem;
      letter-spacing: 0.01em;
    }
    
    .rs-counter-inner {
      padding: 1.2rem 0.3rem;
      border-radius: 1.25rem;
    }
    
    .container {
      padding: 0 1rem;
    }
    
    .rs-counter-area {
      padding: 3rem 0;
    }
    
    .rs-counter-number-wrapper {
      white-space: nowrap;
    }
  }
  
  @media (min-width: 577px) and (max-width: 767px) {
    .row.five-in-row {
      display: flex;
      flex-wrap: wrap;
      margin: -0.5rem -0.75rem;
    }
    
    .row.five-in-row > .col {
      flex: 0 0 auto;
      width: 33.333%;
      padding: 0.5rem 0.75rem;
    }
    
    .rs-counter-number {
      font-size: 2rem;
    }
    
    .prefix {
      font-size: 1.6rem;
    }
    
    .rs-counter-title {
      font-size: 0.75rem;
    }
    
    .rs-counter-inner {
      padding: 1.2rem 0.5rem;
    }
    
    .container {
      padding: 0 1.25rem;
    }
    
    .rs-counter-area {
      padding: 3rem 0;
    }
    
    .rs-counter-number-wrapper {
      white-space: nowrap;
    }
  }
  
  @media (max-width: 576px) {
    .row.five-in-row {
      display: flex;
      flex-wrap: wrap;
      margin: -0.5rem -0.5rem;
    }
    
    .row.five-in-row > .col {
      flex: 0 0 auto;
      width: 50%;
      padding: 0.5rem 0.5rem;
    }
    
    .rs-counter-number {
      font-size: 1.8rem;
    }
    
    .prefix {
      font-size: 1.4rem;
    }
    
    .rs-counter-title {
      font-size: 0.7rem;
    }
    
    .rs-counter-inner {
      padding: 1rem 0.3rem;
      border-radius: 1rem;
    }
    
    .container {
      padding: 0 0.75rem;
    }
    
    .rs-counter-area {
      padding: 2.5rem 0;
    }
    
    .rs-counter-number-wrapper {
      white-space: nowrap;
    }
  }
  
  @media (max-width: 400px) {
    .rs-counter-number {
      font-size: 1.5rem;
    }
    
    .prefix {
      font-size: 1.2rem;
    }
    
    .rs-counter-title {
      font-size: 0.6rem;
    }
    
    .rs-counter-inner {
      padding: 0.8rem 0.2rem;
    }
  }
  
  .rs-counter-number {
    display: inline-block;
  }
  
  .rs-counter-item:hover .rs-counter-number {
    text-shadow: 0 2px 8px rgba(17, 103, 53, 0.15);
  }
  
  .rs-counter-item {
    display: flex;
  }
  
  .rs-counter-inner {
    width: 100%;
  }

*/

 





    /* Breadcrumb Area Styling */
    .rs-breadcrumb-area {
        --rs-primary: #252e6f;
        --rs-secondary: #116735;
        --rs-white: #ffffff;
        --rs-text-light: #e2e8f0;
        position: relative;
        overflow: hidden;
        padding: 5rem 0;
        z-index: 1;
    }
    
    /* Background with gradient overlay - no image needed */
    .rs-breadcrumb-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--rs-primary) 0%, #1a2350 40%, var(--rs-secondary) 100%);
        z-index: -1;
    }
    
    .rs-breadcrumb-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(17, 103, 53, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 50% 80%, rgba(37, 46, 111, 0.1) 0%, transparent 40%);
        z-index: 0;
    }
    
    .rs-breadcrumb-bg::after {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.05);
        z-index: 0;
    }
    
    .rs-breadcrumb-one {
        padding: 4.5rem 0;
    }
    
    .p-relative {
        position: relative;
    }
    
    .container {
        width: 100%;
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 1.5rem;
        box-sizing: border-box;
    }
    
    .row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -0.75rem;
    }
    
    .col-xxl-6,
    .col-xl-8,
    .col-lg-8 {
        padding: 0 0.75rem;
    }
    
    @media (min-width: 1400px) {
        .col-xxl-6 {
            flex: 0 0 auto;
            width: 50%;
        }
    }
    
    @media (min-width: 1200px) and (max-width: 1399px) {
        .col-xl-8 {
            flex: 0 0 auto;
            width: 66.666667%;
        }
    }
    
    @media (min-width: 992px) and (max-width: 1199px) {
        .col-lg-8 {
            flex: 0 0 auto;
            width: 66.666667%;
        }
    }
    
    @media (max-width: 991px) {
        .col-lg-8 {
            flex: 0 0 auto;
            width: 100%;
        }
    }
    
    /* Content Wrapper */
    .rs-breadcrumb-content-wrapper {
        position: relative;
        z-index: 2;
        padding: 1rem 0;
    }
    
    /* Title Styling */
    .rs-breadcrumb-title-wrapper {
        margin-bottom: 0.75rem;
    }
    
    .rs-breadcrumb-title {
        font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--rs-white);
        margin: 0 0 0.5rem 0;
        line-height: 1.2;
        letter-spacing: -0.02em;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Breadcrumb Menu / Navigation */
    .rs-breadcrumb-menu nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.25rem;
    }
    
    .rs-breadcrumb-menu nav ul li {
        display: flex;
        align-items: center;
        font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
        font-size: 1rem;
        font-weight: 500;
        color: var(--rs-text-light);
    }
    
    
    
    .rs-breadcrumb-menu nav ul li span a:hover {
        color: #ffffff;
    }
    
    /* Underline animation on hover for home link */
    .rs-breadcrumb-menu nav ul li span a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.8);
        transition: width 0.3s ease;
    }
    
    .rs-breadcrumb-menu nav ul li span a:hover::after {
        width: 100%;
    }
    
    .rs-breadcrumb-menu nav ul li:last-child span {
        color: #ffffff;
        font-weight: 600;
        opacity: 0.9;
    }
    
    /* ============================================ */
    /* RESPONSIVE STYLES                           */
    /* ============================================ */
    
    /* Tablet and below */
    @media (max-width: 991px) {
        .rs-breadcrumb-area {
            padding: 3.5rem 0;
        }
        
        .rs-breadcrumb-title {
            font-size: 2.2rem;
        }
        
        .container {
            padding: 0 1.25rem;
        }
    }
    
    /* Mobile devices */
    @media (max-width: 767px) {
        .rs-breadcrumb-area {
            padding: 2.8rem 0;
        }
        
        .rs-breadcrumb-title {
            font-size: 1.8rem;
        }
        
        .rs-breadcrumb-menu nav ul li {
            font-size: 0.9rem;
        }
        
        .rs-breadcrumb-content-wrapper {
            padding: 0.5rem 0;
        }
    }
    
    /* Small mobile */
    @media (max-width: 480px) {
        .rs-breadcrumb-area {
            padding: 2.2rem 0;
        }
        
        .rs-breadcrumb-title {
            font-size: 1.5rem;
        }
        
        .rs-breadcrumb-menu nav ul li {
            font-size: 0.8rem;
        }
        
        .rs-breadcrumb-title-wrapper {
            margin-bottom: 0.5rem;
        }
    }
    
    /* Extra large screens */
    @media (min-width: 1400px) {
        .rs-breadcrumb-title {
            font-size: 3.2rem;
        }
        
        .rs-breadcrumb-area {
            padding: 6rem 0;
        }
    }






/* Footer Link Hover Effects - White Color */
.rs-footer-two .rs-footer-widget-links ul li a:hover,
.rs-footer-two .rs-footer-widget-links.has-theme-cyan ul li a:hover {
    color: #ffffff !important;
}

.rs-footer-two .rs-footer-widget-address a:hover,
.rs-footer-two .rs-footer-widget-address a:focus {
    color: #ffffff !important;
}

.rs-footer-two .rs-footer-widget-contact-info .rs-footer-widget-number span a:hover,
.rs-footer-two .rs-footer-widget-contact-info .rs-footer-widget-number span a:focus {
    color: #ffffff !important;
}

.rs-footer-two .rs-footer-widget-email a:hover,
.rs-footer-two .rs-footer-widget-email a:focus {
    color: #ffffff !important;
}

.rs-footer-two .rs-footer-widget-meta a:hover,
.rs-footer-two .rs-footer-widget-meta a:focus {
    color: #ffffff !important;
}

.rs-footer-two .rs-footer-copyright p a:hover,
.rs-footer-two .rs-footer-copyright a:hover {
    color: #ffffff !important;
}

/* Social Icons Hover Effect */
.rs-footer-two .rs-theme-social a:hover i {
    color: #ffffff !important;
}

.rs-footer-two .rs-theme-social a:hover {
    color: #ffffff !important;
}

/* Any remaining links in footer */
.rs-footer-two a:hover {
    color: #ffffff !important;
}






/* Brand Logo Size Increase */
.rs-brand-area .rs-brand-item .rs-brand-thumb {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.rs-brand-area .rs-brand-item .rs-brand-thumb img {
    max-width: 190px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.rs-brand-area .rs-brand-item:hover .rs-brand-thumb img {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .rs-brand-area .rs-brand-item .rs-brand-thumb img {
        max-width: 120px;
        max-height: 70px;
    }
}

@media (max-width: 767px) {
    .rs-brand-area .rs-brand-item .rs-brand-thumb img {
        max-width: 100px;
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .rs-brand-area .rs-brand-item .rs-brand-thumb img {
        max-width: 90px;
        max-height: 55px;
    }
}






 