    .limited-content {
          display: -webkit-box;
          -webkit-line-clamp: 6;
          /* jitni line chahiye */
          -webkit-box-orient: vertical;
          overflow: hidden;
          position: relative;
    }

    .limited-content::after {
          content: "...";
          position: absolute;
          right: 0;
          bottom: 0;
          background: #fff;
          padding-left: 5px;
    }

    .content {
          padding-bottom: 0px !important;
    }

    /* ===== FILTER SIDEBAR FIXES ===== */
    .filter-sidebar {
          position: sticky;
          top: 80px;
          height: calc(100vh - 85px);
          overflow-y: auto;
          padding: 25px;
          border-radius: 20px;
          background: linear-gradient(180deg, #3a3a3a 10%, #4a4a4a 90%);
          /*margin: 20px 0 0 0;*/
          width: 100%;
          max-width: 280px;
          flex-shrink: 0;
          scrollbar-width: thin;
          scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
    }

    /*.filter-sidebar::-webkit-scrollbar {*/
    /*    width: 1px;*/
    /*}*/

    /*.filter-sidebar::-webkit-scrollbar-track {*/
    /*    background: transparent;*/
    /*}*/

    /*.filter-sidebar::-webkit-scrollbar-thumb {*/
    /*    background: rgba(255,255,255,0.2);*/
    /*    border-radius: 10px;*/
    /*}*/

    /*.filter-sidebar .form-check {*/
    /*    padding-left: 28px;*/
    /*    margin-bottom: 4px;*/
    /*}*/

    .filter-sidebar .form-check-input {
          margin-top: 4px;
          cursor: pointer;
    }

    .filter-sidebar .form-check-label {
          font-size: 0.9rem;
          cursor: pointer;
    }

    .filter-sidebar .form-check-label:hover {
          color: #fff;
    }


    .filter-sidebar .filter-group {
          border-bottom: 1px solid rgba(255, 255, 255, 0.08);
          padding-bottom: 14px;
          margin-bottom: 16px !important;
    }

    .filter-sidebar .filter-group:last-of-type {
          border-bottom: none;
    }

    .filter-sidebar .filter-group .form-label {
          color: rgba(255, 255, 255, 0.6);
          font-size: 0.7rem !important;
          text-transform: uppercase;
          letter-spacing: 0.5px;
          margin-bottom: 8px;
    }

    /* ===== MAIN LAYOUT FIX ===== */
    .content {
          display: flex;
          flex-direction: column;
          padding: 20px 30px 40px 20px;
          width: 100%;
    }



    .results-list {
          flex: 1;
          min-width: 0;
    }

    /* ===== PAGE HEAD FIXES ===== */
    .page-head {
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
          flex-wrap: wrap;
          gap: 15px;
          margin-bottom: 28px;
    }

    .page-head h1 {
          font-size: 1.8rem;
          font-weight: 700;
          color: #1a1a2e;
          margin-bottom: 4px;
    }

    .page-head h1 span {
          font-size: 1.6rem;
    }

    .page-head p {
          color: #6c757d;
          font-size: 0.95rem;
          margin-bottom: 0;
    }

    /* ===== RESPONSIVE FIXES ===== */
    @media (max-width: 992px) {
          .packages-shell {
                flex-direction: column;
          }

          .filter-sidebar {
                position: relative;
                top: 0;
                height: auto;
                max-height: 400px;
                max-width: 100%;
                margin: 0 0 20px 0;
                padding: 18px 16px;
          }

          .content {
                padding: 15px;
          }
    }

    @media (max-width: 576px) {
          .filter-sidebar {
                max-height: 250px;
                padding: 14px 12px;
                border-radius: 16px;
                margin: 0 0 16px 0;
          }

          .filter-sidebar .form-check-label {
                font-size: 0.82rem;
          }

          .filter-group {
                padding-bottom: 10px;
                margin-bottom: 12px !important;
          }
    }

    /* ===== PRICE RANGE STYLING ===== */
    .filter-sidebar .form-range {
          background-color: transparent;
          height: 6px;
          padding: 0;
    }

    .filter-sidebar .form-range::-webkit-slider-thumb {
          background: #0d6efd;
          border: none;
          width: 16px;
          height: 16px;
          border-radius: 50%;
          cursor: pointer;
    }

    .filter-sidebar .form-range::-webkit-slider-runnable-track {
          height: 4px;
          border-radius: 4px;
          background: rgba(255, 255, 255, 0.15);
    }

    /* ===== RESET BUTTON ===== */
    .filter-sidebar #clearFiltersBtn {
          border-color: rgba(255, 255, 255, 0.2);
          color: #fff;
          padding: 8px;
          font-size: 0.85rem;
          border-radius: 12px;
          transition: all 0.3s ease;
          background: rgba(255, 255, 255, 0.05);
          margin-top: 10px !important;
    }

    .filter-sidebar #clearFiltersBtn:hover {
          background: rgba(255, 255, 255, 0.12);
          border-color: rgba(255, 255, 255, 0.3);
    }

    /* ===== COLLAPSIBLE FILTER ON MOBILE ===== */
    @media (max-width: 768px) {
          .filter-toggle {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                padding: 10px 16px;
                background: #3a3a3a;
                border-radius: 12px;
                color: #fff;
                border: none;
                margin-bottom: 12px;
          }

          .filter-sidebar {
                display: none;
                max-height: none;
                margin: 0 0 16px 0;
          }

          .filter-sidebar.open {
                display: block;
          }
    }

    /* ===== AJAX PAGINATION ===== */
    .pkg-pagination {
          padding: 14px 4px 0;
    }

    .pkg-pagination .btn {
          border-radius: 10px;
          font-size: 0.85rem;
    }

    /* ===== GREEN THEME OVERRIDES ===== */
    .image-overlay {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          background: linear-gradient(transparent, rgba(0, 80, 0, 0.3));
          padding: 20px;
    }

    .overlay-content {
          display: flex;
          justify-content: space-between;
    }

    .overlay-duration {
          background: rgba(255, 255, 255, 0.9);
          backdrop-filter: blur(10px);
          padding: 6px 16px;
          border-radius: 20px;
          font-size: 13px;
          font-weight: 600;
          color: #1a202c;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* Title Section */
    .title-section {
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
          margin-bottom: 12px;
    }

    .enhanced-title {
          font-size: 14px;
          font-weight: 700;
          color: #1a202c;
          margin: 0;
          flex: 1;
          line-height: 1.3;
    }

    .rating-section {
          display: flex;
          align-items: center;
          gap: 6px;
          flex-shrink: 0;
          margin-left: 12px;
    }

    .rating-badge {
          background: #e6f7e6;
          padding: 4px 10px;
          border-radius: 12px;
          font-size: 13px;
          font-weight: 600;
          color: #004015;
    }

    .review-count {
          font-size: 12px;
    }

    /* Tour Types */
    .tour-types-section {
          display: flex;
          flex-wrap: wrap;
          gap: 6px;
          margin-bottom: 14px;
    }

    .tour-type-pill {
          background: #e6f7e6a6;
          padding: 4px 10px;
          border-radius: 12px;
          font-size: 10px;
          font-weight: 500;
          color: #006722;
          display: inline-flex;
          align-items: center;
          gap: 2px;
    }

    .tour-type-pill i {
          font-size: 11px;
          color: #004015;
    }

    /* Sightseeing */
    .sightseeing-section {
          background: #f1af1114;
          padding: 12px 14px;
          border-radius: 12px;
          margin-bottom: 16px;
          border-left: 3px solid #f1af11;
    }

    .sightseeing-label {
          display: flex;
          align-items: center;
          gap: 6px;
          font-size: 12px;
          font-weight: 600;
          color: #004015;
          margin-bottom: 8px;
    }

    .sightseeing-tags {
          display: flex;
          flex-wrap: wrap;
          gap: 6px;
    }

    .sightseeing-tag {
          background: white;
          padding: 4px 10px;
          border-radius: 10px;
          font-size: 12px;
          color: #1a4a2a;
          display: inline-flex;
          align-items: center;
          gap: 4px;
          box-shadow: 0px 2px 0px #c4d2c1;
    }

    .sightseeing-tag i {
          font-size: 10px;
          color: #004015;
    }

    .more-tag {
          background: #d4edda;
          color: #004015;
          font-weight: 600;
    }

    /* Stay Locations */
    .stay-locations-section {
          background: #ffffff;
          border: 1px solid #c8e6c9;
          border-radius: 12px;
          padding: 14px;
          margin-bottom: 16px;
    }

    .locations-header {
          display: flex;
          align-items: center;
          gap: 8px;
          font-size: 13px;
          font-weight: 600;
          margin-bottom: 10px;
    }

    .location-count {
          margin-left: auto;
          background: #e6f7e6;
          padding: 2px 10px;
          border-radius: 10px;
          font-size: 10px;
    }

    .locations-grid {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 8px;
    }

    .location-item {
             display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: #f7fcf7;
    border-radius: 4px;
    box-shadow: 0px 1px 0px #c4d2c1;
    border: 1px solid #e6f7e6;
    }

    .location-info {
          display: flex;
          /*flex-direction: column;*/
          gap: 5px;
          min-width: 0;
    }

    .location-name {
          font-size: 12px;
          font-weight: 500;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
    }

    .location-days {
          font-size: 10px;
          display: flex;
          align-items: center;
          gap: 4px;
    }

    .location-days i {
          font-size: 10px;
          color: #004015;
    }

    /* Inclusions */
    .inclusions-section {
          background: #f1af1114;
          border-radius: 12px;
          padding: 10px;
          margin-bottom: 10px;
          border: 1px solid #f2b011;
    }

    .inclusions-header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 10px;
    }

    .header-left {
          display: flex;
          align-items: center;
          gap: 8px;
          font-size: 13px;
          font-weight: 600;
    }

    .inclusions-count {
          font-size: 10px;
          background: white;
          padding: 2px 10px;
          border-radius: 10px;
          border: 1px solid #c8e6c9;
    }

    .inclusions-grid {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
          gap: 5px;
    }

    .inclusion-item {
          display: flex;
          align-items: center;
          gap: 4px;
          background: white;
          padding: 4px 8px;
          box-shadow: 0px 1px 0px #c4d2c1;
          border-radius: 4px;
          transition: all 0.2s ease;
          border: 1px solid #e6f7e6;
    }

    .inclusion-item:hover {
          transform: translateX(3px);
          box-shadow: 0px 3px 1px #c4d2c1;
          border-color: #2d8f4e;
    }

    .inclusion-icon {
          width: 24px;
          height: 24px;
          background: #d4edda;
          border-radius: 6px;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
    }

    .inclusion-icon i {
          color: #004015;
          font-size: 10px;
    }

    .inclusion-text {
          font-size: 9px;
          font-weight: 500;
          color: #004015;
    }

    /* ===== ADD GREEN BUTTONS & PRICING ===== */
    .pricing-section {
          display: flex;
          align-items: center;
          justify-content: space-between;
          margin-top: 8px;
          padding-top: 12px;
          border-top: 1px solid #d4edda;
    }

    .price-block {
          display: flex;
          align-items: baseline;
          gap: 8px;
    }

    .current-price {
          font-size: 22px;
          font-weight: 700;
          color: #004015;
    }

    .original-price {
          font-size: 14px;
          color: #7a8a7a;
          text-decoration: line-through;
    }

    .discount-badge {
          background: #d4edda;
          color: #1a6a2a;
          font-size: 11px;
          font-weight: 600;
          padding: 2px 8px;
          border-radius: 12px;
    }

    .btn-primary-action {
          background: #004015;
          color: white;
          border: none;
          padding: 8px 20px;
          border-radius: 30px;
          font-weight: 600;
          font-size: 14px;
          transition: all 0.2s ease;
          cursor: pointer;
    }

    .btn-primary-action:hover {
          background: #0f5a2a;
          transform: scale(1.02);
          box-shadow: 0 4px 12px rgba(26, 122, 58, 0.3);
    }

    .btn-secondary-action {
          background: transparent;
          color: #004015;
          border: 2px solid #004015;
          padding: 8px 18px;
          border-radius: 30px;
          font-weight: 600;
          font-size: 14px;
          transition: all 0.2s ease;
          cursor: pointer;
    }

    .btn-secondary-action:hover {
          background: #e6f7e6;
    }

    .action-buttons {
          display: flex;
          gap: 10px;
          align-items: center;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {


          .locations-grid {
                grid-template-columns: 1fr;
          }

          .inclusions-grid {
                grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
          }

          .pricing-section {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
          }

          .action-buttons {
                width: 100%;
                justify-content: stretch;
          }

          .btn-primary-action,
          .btn-secondary-action {
                flex: 1;
                justify-content: center;
          }

          .title-section {
                flex-direction: column;
                gap: 8px;
          }

          .rating-section {
                margin-left: 0;
          }
    }

    @media (max-width: 480px) {
          .enhanced-img-wrap {
                height: 180px;
          }

          .enhanced-title {
                font-size: 14px;
          }

          .current-price {
                font-size: 19px;
          }
    }



    /* any card or container */


    /* star rating */
    .stars {
          color: #f5b342;
    }

    .stars i {
          color: #004015;
          font-size: 13px;
    }

    /* utility green text */
    .text-green {
          color: #004015;
    }

    .bg-green-soft {
          background: #e6f7e6;
    }

    .border-green {
          border-color: #2d8f4e;
    }

    :root {
          --primary-modal: #003404;
          --secondary-modal: #a44f00;
          --accent-modal: #F4B400;
          --success-modal: #16A34A;
          --glass-bg-modal: rgba(255, 255, 255, 0.82);
          --glass-border-modal: rgba(255, 255, 255, 0.4);
          --success-modal-main: 0 30px 80px rgba(0, 0, 0, 0.18);
          --font-inter: 'Inter', sans-serif;
          --font-poppins: 'Poppins', sans-serif;
          --bg-soft-modal: #f4f7fc;
          --card-radius-modal: 24px;
    }

    .bg-primary {
          background-image: linear-gradient(165deg, #1ea702 0%, #000 100%);
    }

    .text-primary {
          color: #00970c !important;
    }

    /*.bg-primary:hover {*/
    /*      background-image: linear-gradient(165deg, #000 0%, #1ea702 100%);*/
    /*      color: #fff;*/
    /*}*/

    .font-poppins {
          font-family: var(--font-poppins);
    }

    /* ----- MODAL & GLASS ----- */
    .modal-fullscreen-custom {
          width: 99% !important;
          max-width: 1600px !important;
          height: 10vh !important;
          /*margin: 2.5vh auto !important;       */
         /*font-family: times new roman !important;*/

    }

    .glass-modal {
          background: rgba(245, 248, 252, 0.88) !important;
          backdrop-filter: blur(25px) saturate(180%);
          -webkit-backdrop-filter: blur(25px) saturate(180%);
          border: 1px solid rgba(255, 255, 255, 0.6);
          box-shadow: var(--success-modal-main);
          border-radius: 32px !important;
    }

    .btn-close-custom {
          position: absolute;
          top: 20px;
          right: 20px;
          z-index: 1055;
          width: 42px;
          height: 42px;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.8);
          backdrop-filter: blur(10px);
          border: 1px solid rgba(255, 255, 255, 0.5);
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          transition: 0.3s ease;
    }

    .btn-close-custom:hover {
          background: #fff;
          transform: rotate(90deg) scale(1.1);
    }

    .glass-card {
          background: var(--glass-bg-modal);
          backdrop-filter: blur(12px);
          -webkit-backdrop-filter: blur(12px);
          border: 1px solid var(--glass-border-modal);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
          transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        font-family: times new roman !important;

    }

    .hover-lift:hover {
          transform: translateY(-5px);
          box-shadow: 0 20px 40px rgba(15, 76, 129, 0.12);
          border-color: rgba(0, 150, 199, 0.4);
    }

    .custom-scrollbar::-webkit-scrollbar {
          width: 6px;
    }

    .custom-scrollbar::-webkit-scrollbar-track {
          background: rgba(0, 0, 0, 0.02);
    }

    .custom-scrollbar::-webkit-scrollbar-thumb {
          background: rgba(15, 76, 129, 0.2);
          border-radius: 10px;
    }

    /* ----- HERO SECTION (SMALLER) ----- */
    .hero-section {
          min-height: 280px;
          /* reduced from 380px */
          background-color: #0b2545;
          border-bottom-left-radius: 28px;
          border-bottom-right-radius: 28px;
          position: relative;
          overflow: hidden;
    }

    .hero-bg-overlay {
          position: absolute;
          inset: 0;
          background: linear-gradient(135deg, #0a2e00 0%, #000000a6 100%);
          z-index: 2;
    }

    .hero-bg-image {
          position: absolute;
          inset: 0;
          background-size: cover;
          background-position: center;
          z-index: 1;
          filter: scale(1.05);
    }

    .glass-card-hero {
          background: rgba(255, 255, 255, 0.12);
          backdrop-filter: blur(16px);
          -webkit-backdrop-filter: blur(16px);
          border: 1px solid rgba(255, 255, 255, 0.25);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .hero-route-pill {
          background: rgba(255, 255, 255, 0.12);
          backdrop-filter: blur(4px);
          border: 1px solid rgba(255, 255, 255, 0.15);
          color: white;
    }

    .hero-animations-layer {
          position: absolute;
          inset: 0;
          z-index: 2;
          pointer-events: none;
          overflow: hidden;
    }

    .animated-cloud {
          position: absolute;
          background: rgba(255, 255, 255, 0.15);
          border-radius: 50px;
          backdrop-filter: blur(4px);
    }

    .cloud-1 {
          width: 120px;
          height: 40px;
          top: 20%;
          left: -150px;
          animation: moveCloud 35s linear infinite;
    }

    .cloud-2 {
          width: 180px;
          height: 50px;
          top: 60%;
          left: -200px;
          animation: moveCloud 48s linear infinite 5s;
    }

    @keyframes moveCloud {
          0% {
                transform: translateX(0);
          }

          100% {
                transform: translateX(110vw);
          }
    }

    .animated-plane {
          position: absolute;
          top: 30%;
          left: -50px;
          font-size: 1.8rem;
          color: rgba(255, 255, 255, 0.7);
          transform: rotate(12deg);
          animation: flyPlane 25s linear infinite;
    }

    @keyframes flyPlane {
          0% {
                transform: translateX(0) translateY(0) rotate(10deg);
          }

          50% {
                transform: translateX(50vw) translateY(-30px) rotate(15deg);
          }

          100% {
                transform: translateX(110vw) translateY(-60px) rotate(10deg);
          }
    }

    .floating-icon {
          position: absolute;
          color: rgba(255, 255, 255, 0.2);
          font-size: 1.5rem;
          animation: floatUpDown 4s ease-in-out infinite alternate;
    }

    .icon-1 {
          top: 15%;
          right: 15%;
          animation-delay: 0s;
    }

    .icon-2 {
          bottom: 20%;
          left: 45%;
          animation-delay: 1.5s;
    }

    .icon-3 {
          top: 50%;
          right: 35%;
          animation-delay: 3s;
    }

    @keyframes floatUpDown {
          0% {
                transform: translateY(0px) rotate(0deg);
          }

          100% {
                transform: translateY(-15px) rotate(10deg);
          }
    }

    /* smaller hero text */
    .hero-title {
          font-size: 2.6rem !important;
                  font-family: times new roman !important;

    }

    /* was display-3 */
    .hero-section .display-5 {
          font-size: 2rem !important;
                  font-family: times new roman !important;

    }
    

    /* ----- VERTICAL TIMELINE ----- */
    .vertical-timeline-container {
          padding: 20px 0;
          position: relative;
    }

    .timeline-central-line {
          position: absolute;
          top: 0;
          bottom: 0;
          left: 50%;
          width: 3px;
          background: linear-gradient(180deg, var(--primary-modal) 0%, var(--secondary-modal) 50%, var(--accent-modal) 100%);
          transform: translateX(-50%);
          border-radius: 2px;
    }

    .timeline-block {
          position: relative;
          margin-bottom: 45px;
          width: 100%;
          display: flex;
    }

    .timeline-block.day-left {
          justify-content: flex-start;
          padding-right: calc(50% + 30px);
    }

    .timeline-block.day-right {
          justify-content: flex-end;
          padding-left: calc(50% + 30px);
    }

    .timeline-node {
          position: absolute;
          top: 20px;
          left: 50%;
          transform: translateX(-50%);
          width: 44px;
          height: 44px;
          border-radius: 50%;
          background: linear-gradient(145deg, #f2b011, #d92c2c);
          color: #fff;
          font-weight: 700;
          font-size: 0.85rem;
          display: flex;
          align-items: center;
          justify-content: center;
          z-index: 10;
          box-shadow: 0 0 0 6px rgba(15, 76, 129, 0.15);
          transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    /* car effect: when scrolled into view, the node moves & glows */
    .timeline-node.scrolled {
          transform: translateX(-50%) scale(1.15);
          box-shadow: 0 0 0 10px #ca66001c, 0 0 30px #ff010157;
          background: linear-gradient(145deg, #ffb400, #d92c2c);
    }


    .pulse-node::after {
          content: '';
          position: absolute;
          inset: -4px;
          border-radius: 50%;
          border: 2px solid var(--secondary-modal);
          animation: pulseGlow 2s infinite;
    }

    @keyframes pulseGlow {
          0% {
                transform: scale(0.95);
                opacity: 1;
          }

          100% {
                transform: scale(1.4);
                opacity: 0;
          }
    }

    .day-img-wrapper img {
          height: 200px;
          object-fit: cover;
          transition: transform 0.5s ease;
          width: 100%;
    }

    .day-card:hover .day-img-wrapper img {
          transform: scale(1.05);
    }

    .sub-timeline {
          border-left: 2px dashed rgba(15, 76, 129, 0.2);
          padding-left: 15px;
          margin-left: 10px;
    }

    .sub-event {
          position: relative;
          margin-bottom: 15px;
    }

    .sub-event::before {
          content: '';
          position: absolute;
          left: -20px;
          top: 5px;
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background: var(--secondary-modal);
    }

    .sub-event .time {
          font-size: 0.75rem;
          font-weight: 700;
          color: var(--secondary-modal);
    }

    /* ----- SIDEBAR / WIDGETS ----- */
    .sticky-top-sidebar {
          position: sticky;
          top: 20px;
          z-index: 100;
    }

    .profile-img {
          width: 48px;
          height: 48px;
          object-fit: cover;
    }

    .gradient-payment-card {
          background: linear-gradient(135deg, #0F4C81 0%, #1e3c72 100%);
    }

    .progress-thin {
          height: 6px;
          border-radius: 10px;
    }

    .essential-box {
          transition: 0.2s ease;
    }

    .essential-box:hover {
          transform: translateY(-3px);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .sticky-bottom-footer {
          border-bottom-left-radius: 32px;
          border-bottom-right-radius: 32px;
    }

    /* ----- FONT SIZE ADJUSTMENTS (MEDIUM) ----- */
    .fs-7 {
          font-size: 0.9rem;
    }

    .fs-8 {
          font-size: 0.8rem;
    }

    .display-5 {
          font-size: 2rem !important;
    }

    p {
          margin: 0px;
    }

    h1.display-3 {
          font-size: 2.6rem !important;
    }

    h3.fw-bold {
          font-size: 1.5rem !important;
    }

    h4.fw-bold {
          font-size: 1.2rem !important;
    }

    h5.fw-bold {
          font-size: 1.05rem !important;
    }

    .hero-section .badge {
          font-size: 0.75rem !important;
    }

    /* ----- RESPONSIVE ----- */
    @media (max-width: 991.98px) {
          .modal-fullscreen-custom {
                width: 100% !important;
                height: 100vh !important;
                margin: 0 !important;
                border-radius: 0 !important;
          }

          .glass-modal {
                border-radius: 0 !important;
          }

          .sticky-top-sidebar {
                position: relative;
                top: 0;
          }

          .timeline-central-line {
                left: 20px;
          }

          .timeline-block.day-left,
          .timeline-block.day-right {
                padding-left: 55px;
                padding-right: 0;
                justify-content: flex-start;
          }

          .timeline-node {
                left: 20px;
          }
    }

    .btn-ripple {
          transition: 0.2s;
    }

    .btn-ripple:active {
          transform: scale(0.96);
    }

    .max-h-300 {
          max-height: 300px;
    }

    .max-h-250 {
          max-height: 250px;
    }

    .text-white-75 {
          color: rgba(255, 255, 255, 0.75);
    }

    .text-white-90 {
          color: rgba(255, 255, 255, 0.9);
    }

    .backdrop-blur {
          backdrop-filter: blur(4px);
    }

    .bg-opacity-20 {
          background-color: rgba(255, 255, 255, 0.2);
    }

    .modal-backdrop {
          z-index: 1050 !important;
    }

    .modal {
          z-index: 999999 !important;
    }