   /* Scrollable Chips Container */
   .types-scroll-container {
       overflow-x: auto;
       white-space: nowrap;
       padding: 15px 0;
       scrollbar-width: thin;
       -webkit-overflow-scrolling: touch;
       display: flex;
       gap: 10px;
       margin: 0 -15px;
       padding-left: 15px;
       padding-right: 15px;
   }

   .types-scroll-container::-webkit-scrollbar {
       height: 4px;
   }

   .types-scroll-container::-webkit-scrollbar-thumb {
       background: #dee2e6;
       border-radius: 10px;
   }

   .type-chip {
       border: 1.5px solid #dee2e6;
       background-color: white;
       color: #333;
       border-radius: 50px;
       padding: 10px 24px;
       font-weight: 500;
       font-size: 0.9rem;
       transition: all 0.3s ease;
       min-width: fit-content;
       text-decoration: none;
       display: inline-block;
       flex-shrink: 0;
   }

   .type-chip.active,
   .type-chip:hover {
       background-color: var(--brand-blue) !important;
       border-color: var(--brand-blue) !important;
       color: white !important;
       box-shadow: 0 4px 12px rgba(15, 52, 83, 0.25);
       transform: translateY(-2px);
   }

   /* Mobile Optimization */
   @media (max-width: 768px) {
       .types-scroll-container {
           gap: 8px;
           padding: 12px 0;
           margin: 0 -12px;
           padding-left: 12px;
           padding-right: 12px;
       }

       .type-chip {
           padding: 8px 20px;
           font-size: 0.85rem;
           border-width: 1.5px;
       }

       .type-chip.active {
           font-weight: 600;
       }

       /* Reduce gaps between sections on mobile */
       section.py-3 {
           padding-top: 0.75rem !important;
           padding-bottom: 0.5rem !important;
       }

       /* Improve card spacing */
       .row.g-4 {
           --bs-gutter-y: 1.25rem;
           --bs-gutter-x: 1rem;
       }

       /* Fix breadcrumb margin */
       .breadcrumb {
           margin-bottom: 0.5rem !important;
       }
   }

   .single-title {
       font-size: 28px;
       line-height: 42px;
       color: var(--brand-blue);
       margin-bottom: 20px;
   }

   .breadcrumb-item+.breadcrumb-item::before {
       float: right;
       padding-left: 0.5rem;
       padding-right: 0.5rem;
       color: #6c757d;
       content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='currentColor'/%3E%3C/svg%3E");
       transform: rotate(180deg);
   }

   .breadcrumb-item a {
       color: #0f3453;
       text-decoration: none;
       font-weight: 500;
   }

   /* Fix alignment issues */
   .container-custom {
       padding-right: 15px;
       padding-left: 15px;
   }

   @media (max-width: 768px) {
       .container-custom {
           padding-right: 12px;
           padding-left: 12px;
       }

       /* Remove unwanted padding on mobile */
       section[style*="padding-right: 48px"] {
           padding-right: 12px !important;
       }
   }

   .project-card {
       border: none;
       border-radius: 25px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
       overflow: hidden;
       transition: transform 0.3s ease;
   }

   @media (max-width: 768px) {
       .project-card {
           border-radius: 20px;
       }
   }

   .card-img-top {
       height: 200px;
       object-fit: cover;
   }

   .unit-control {
       border: 1px solid #dee2e6;
       border-radius: 8px;
       display: flex;
       align-items: center;
   }

   .unit-control button {
       border: none;
       background: #f8f9fa;
       padding: 5px 12px;
       font-weight: bold;
   }

   .unit-control input {
       width: 40px;
       text-align: center;
       border: none;
       border-left: 1px solid #dee2e6;
       border-right: 1px solid #dee2e6;
       outline: none;
       font-size: 14px;
   }

   .donate-btn {
       background-color: #0f3453;
       color: white;
       border-radius: 12px;
       padding: 10px 0;
       font-weight: 400;
       flex-grow: 1;
       font-size: 14px;
   }

   .amount-box {
       background-color: #f8f9fa;
       border: 1px solid #eee;
       border-radius: 8px;
       padding: 8px 15px;
       font-weight: bold;
   }

   .progress-card {
       border-radius: 20px !important;
       overflow: hidden;
   }

   .btn-outline-brand {
       border-color: var(--brand-blue);
       color: var(--brand-blue);
   }

   .btn-outline-brand.active {
       /* background-color: var(--brand-blue); */
       /* color: white; */
       font-weight: bold;
   }

   .icon-btn-simple {
       color: #6c757d;
       cursor: pointer;
       transition: color 0.3s ease;
       display: inline-flex;
       align-items: center;
       justify-content: center;
       border: none;
       background: none;
       padding: 0;
   }

   .icon-btn-simple:hover {
       color: var(--brand-blue);
   }

   .custom-pagination {
       direction: ltr;
       padding-right: 0;
       list-style: none;
   }

   .custom-pagination .page-item {
       margin: 0 4px;
   }

   .custom-pagination .page-link {
       border: none;
       background-color: #f8f9fa;
       color: #0f3453;
       padding: 10px 18px;
       font-weight: 500;
       transition: all 0.2s ease;
       border-radius: 4px !important;
       display: block;
       text-decoration: none;
   }

   .custom-pagination .page-item.active .page-link {
       background-color: #0f3453 !important;
       color: #ffffff !important;
   }

   /* RTL specific overrides for pagination in some cases */
   .pagination {
       display: flex;
       padding-left: 0;
       list-style: none;
   }

   :root {
       --brand-blue: #0f3453;
       /* Matches your project badge and buttons */
       --text-gray: #6c757d;
   }

   .top-header {
       background-color: #ffffff;
       font-size: 16PX;
       font-weight: 400 !important;
   }

   .navbar-brand img {
       height: 45px;
   }



   .header-utility-icons i {
       font-size: 1.2rem;
       cursor: pointer;
       color: #004a7c;
   }

   .cart-wrapper {
       position: relative;
       display: inline-block;
   }

   .cart-badge-custom {
       position: absolute;
       top: -8px;
       right: -8px;
       background-color: #004a7c;
       color: white;
       font-size: 10px;
       border-radius: 50%;
       padding: 2px 6px;
   }

   .navbar-brand img {
       height: 55px;
       width: auto;
   }

   @media (max-width: 991px) {
       .navbar-collapse {
           background: #fff;
           padding: 1rem;
       }
   }

   .hero-section {
       border-radius: 15px;
       color: white;
   }

   .hero-title {
       font-size: 4rem;
       font-weight: bold;
   }

   .custom-footer {
       background-color: #F8F7F8;
       border-radius: 20px;
       padding: 40px;
       margin: 40px 20px;
       text-align: right;
   }

   .footer-title {
       color: var(--primary-blue);
       font-weight: bold;
       margin-bottom: 20px;
       font-size: 14px;
       text-align: right;
   }

   .payment-methods img {
       height: 30px;
       margin: 5px;
       filter: grayscale(0.5);
       transition: 0.3s;
   }

   .payment-methods img:hover {
       filter: grayscale(0);
   }

   .social-icons a {
       font-size: 1.5rem;
       color: #666;
       margin: 0 10px;
   }

   .copy-right {
       font-size: 0.9rem;
       padding-bottom: 20px;
   }

   .brand-bg {
       background-color: #0f3453;
   }

   .brand-text {
       color: #0f3453;
   }

   .project-card {
       border: none;
       border-radius: 25px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
       overflow: hidden;
       transition: transform 0.3s ease;
   }

   .card-img-top {
       height: 200px;
       object-fit: cover;
   }

   .unit-control {
       border: 1px solid #dee2e6;
       border-radius: 8px;
       display: flex;
       align-items: center;
   }

   .unit-control button {
       border: none;
       background: #f8f9fa;
       padding: 5px 12px;
       font-weight: bold;
   }

   .unit-control input {
       width: 40px;
       text-align: center;
       border: none;
       border-left: 1px solid #dee2e6;
       border-right: 1px solid #dee2e6;
       outline: none;
   }

   .donate-btn {
       background-color: #0f3453;
       color: white;
       border-radius: 12px;
       padding: 10px 0;
       font-weight: 400;
       flex-grow: 1;
       font-size: 14px;
   }


   .amount-box {
       background-color: #f8f9fa;
       border: 1px solid #eee;
       border-radius: 8px;
       padding: 6px 15px;
       font-weight: bold;
   }

   .hero-wrapper {
       position: relative;
   }

   .hero-arrow-btn {
       position: absolute;
       top: 50%;
       transform: translateY(-50%);
       width: 40px;
       height: 40px;
       background-color: #ffffff;
       border: none;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       color: #0f3453;
       font-size: 1rem;
       cursor: pointer;
       transition: all 0.3s ease;
       box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
       z-index: 10;
   }

   .hero-arrow-btn i {
       -webkit-text-stroke: 1px #0f3453;
   }

   .right-arrow {
       right: 35px;
   }

   .left-arrow {
       left: 35px;
   }

   .hero-arrow-btn:hover {
       background-color: #f8f9fa;
       transform: translateY(-50%) scale(1.1);
       box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
       color: #004a7c;
   }

   @media (max-width: 768px) {
       .hero-arrow-btn {
           width: 40px;
           height: 40px;
           font-size: 1.2rem;
       }

       .right-arrow {
           right: 15px;
       }

       .left-arrow {
           left: 15px;
       }
   }

   .quick-links-title {
       color: var(--brand-blue);
       font-weight: 700;
       font-size: 2rem;
       position: relative;
       display: inline-block;
       padding-bottom: 10px;
   }

   .flaticon-wrapper {
       width: 75px;
       height: 75px;
       margin: 0 auto;
       display: flex;
       align-items: center;
       justify-content: center;
       transition: transform 0.3s ease;
   }

   .custom-icon {
       width: 100%;
       height: auto;
       filter: invert(62%) sepia(89%) saturate(2955%) hue-rotate(181deg) brightness(58%) contrast(94%);
       margin-bottom: 24px;

   }

   .custom-icon-without-filter {
       width: 100%;
       height: auto;
       margin-bottom: 24px;

   }

   .item-title {
       color: var(--brand-blue);
       font-weight: 600;
       margin-top: 15px;
       font-size: 1.25rem;
   }

   .item-subtitle {
       color: var(--text-gray);
       font-size: 0.95rem;
       font-weight: 400;
   }

   .quick-link-item:hover .flaticon-wrapper {
       transform: translateY(-10px);
       cursor: pointer;
   }

   .quick-link-item:hover .item-title {
       color: #004a7c;
   }

   @media (max-width: 576px) {
       .flaticon-wrapper {
           width: 60px;
           height: 60px;
       }

       .item-title {
           font-size: 1.1rem;
       }
   }



   .progress-card {
       border-radius: 20px !important;
       overflow: hidden;
   }

   .brand-text {
       color: var(--brand-blue);
   }

   .btn-outline-brand {
       border-color: var(--brand-blue);
       color: var(--brand-blue);
   }

   .btn-outline-brand.active {
       background-color: transparent;
       border-width: 2px;
       font-weight: bold;
   }

   .donate-btn-dark {
       background-color: var(--brand-blue);
       color: white;
       border-radius: 10px;
       font-weight: 600;
   }

   .donate-btn-dark:hover {
       background-color: #0a253b;
       color: white;
   }

   .icon-btn-outline {
       color: var(--brand-blue);
       cursor: pointer;
   }

   .icon-btn-simple {
       color: #6c757d;
       cursor: pointer;
   }

   .icon-btn-simple:hover {
       color: var(--brand-blue);
   }

   .input-group-text {
       color: var(--brand-blue);
       font-weight: bold;
   }

   .category-scroll-container {
       display: flex;
       gap: 10px;
       overflow-x: auto;
       white-space: nowrap;
       padding: 10px 15px 20px 15px;
       scrollbar-width: thin;
       -ms-overflow-style: auto;
   }

   .category-scroll-container::-webkit-scrollbar {
       height: 4px;
   }

   .category-scroll-container::-webkit-scrollbar-thumb {
       background: #dee2e6;
       border-radius: 10px;
   }

   .category-btn {
       flex: 0 0 auto;
       min-width: max-content;
       padding: 8px 20px;
       font-size: 0.9rem;
       border-radius: 50px;
       border: 1px solid #dee2e6;
       text-decoration: none;
       color: #333;
       transition: all 0.3s ease;
   }

   .category-btn.active,
   .category-btn:hover {
       background-color: var(--brand-blue);
       color: white;
       border-color: var(--brand-blue);
   }

   .awards-section {
       padding: 60px 0;
   }

   .section-title {
       font-weight: 800;
       font-size: 1.5rem;
       margin-bottom: 40px;
       color: #000;
   }

   .award-card {
       background: #fff;
       border: 1px solid #eee;
       /* Subtle border around images */
       padding: 10px;
       transition: transform 0.3s ease;
       height: 100%;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .award-card img {
       max-width: 100%;
       height: auto;
       display: block;
   }

   /* Hover effect (optional but recommended for web) */
   .award-card:hover {
       box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
   }
        .phone-class {
            margin-top: 1.5rem !important;
            margin-bottom: 1rem !important;
        }
    
        .phone-class label {
            display: block;
            margin-bottom: 0.75rem;
            font-weight: 600;
            color: #0f3453;
            font-size: 0.9rem;
            text-align: right;
        }
    
        .phone-input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            width: 100%;
        }
    
        .phone-input-wrapper i {
            position: absolute;
            right: 15px;
            color: #adb5bd;
            font-size: 1.2rem;
            z-index: 5;
        }
    
        .phone-input-wrapper .form-control {
            padding-right: 48px !important;
            padding-left: 15px !important;
            height: 52px;
            border-radius: 14px;
            border: 2px solid #f1f3f5;
            background-color: #f8f9fa;
            font-size: 1rem;
            transition: all 0.3s ease;
            width: 100%;
            color: #212529;
            text-align: left;
            direction: ltr;
        }
    
        .phone-input-wrapper .form-control:focus {
            border-color: #0f3453;
            background-color: #fff;
            box-shadow: 0 8px 20px rgba(15, 52, 83, 0.08);
            outline: none;
        }
    
        .phone-input-wrapper .form-control::placeholder {
            color: #adb5bd;
            font-weight: 400;
            font-size: 0.9rem;
            text-align: right;
            direction: rtl;
        }
    
        .phone-input-wrapper .form-control:focus+i {
            color: #0f3453;
        }
                  .brand-blue-text {
                      color: #0f3453;
                  }
        
                  .payment-card {
                      transition: all 0.2s ease;
                      cursor: pointer;
                      border-color: #eee !important;
                  }
        
                  .payment-card.selected {
                      border-color: #0f3453 !important;
                      border-width: 2px !important;
                  }
        
                  .custom-radio {
                      width: 20px;
                      height: 20px;
                      border-color: #0f3453;
                  }
        
                  .custom-radio:checked {
                      background-color: #0f3453;
                      border-color: #0f3453;
                  }
        
                  /* Thumbnails */
                  .badge.bg-secondary {
                      background-color: #6c757d !important;
                      font-size: 0.6rem;
                  }
        
                  /* Typography Adjustments */
                  .x-small {
                      font-size: 12px;
                  }
        
                  .text-light-gray {
                      color: #adb5bd;
                  }
        
                  /* Filter to turn the Samsung Pay logo white for the button */
                  .filter-white {
                      filter: brightness(0) invert(1);
                  }
        
                  /* Button style to match "Pay with Samsung Pay" */
                  .btn-dark {
                      background-color: #000;
                      border-radius: 4px;
                      font-size: 1.1rem;
                  }