 /* .tab2Home-container {
     padding: 0 5px;
     margin: auto;
     width: 50%;
     box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);

 }

 .tab2Home-dropdown {
     display: flex;
     justify-content: space-between;
     align-items: center;
     border-bottom: 0.1px solid #0074d9;
     padding-bottom: 3px;
     flex-wrap: wrap;
 }

 .tab2Home-dropdown select {
     padding: 4px 8px;
     border: 1px solid #0074d9;
     border-radius: 4px;
     background-color: #fff;
     color: #0074d9;
 }

 .tab2Home-title {

     font-weight: 600;
     color: #0074d9;
 }

 .tab2Home-text span {
     font-size: var(--smallPara);
 }

 .tab2Home-content {
     margin-top: 0;
     max-height: 250px;
     overflow-y: auto;
     position: relative;
     min-height: 250px;
     overflow-x: hidden;
 }

 .tab2Home-section {
     display: none;
     flex-wrap: wrap;
     min-height: 240px;
     gap: 10px;
     background-color: #fff;
     border-radius: 8px;
     padding: 8px 4px;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
     position: relative;
     flex-direction: column;
 }

 .tab2Home-text,
 .tab2Home-image {
     flex: 1 1 100%;
 }

 .tab2Home-text img {
     margin: 0 auto;
 }

 .tab2Home-text img {
     max-width: 100% !important;
     height: auto;
     display: block;
     object-fit: cover;
     margin: 0 auto !important;
     transition: .2s ease-in-out;
     overflow-X: hidden;
 }


 .tab2Home-text {
     font-size: var(--smallPara);
     max-width: 100%;
 }



 .tab2Home-button {
     float: right;
     cursor: pointer;

 }

 .tab2Home-button:hover {
     background-color: #005fa3;
 }

 .tab2HomeLabel {
     display: flex;
     justify-content: space-between;
     width: 100%;
     align-items: center;
 }

 .tab2HomeBtnParent {
     right: 5px;
     bottom: 9px;
     border: none;
     border-radius: 4px;
     transition: background-color 0.3s;
     white-space: nowrap;
     z-index: 10;     position: sticky;
     width: 100%;
 }

 @media(max-width:1001px) {
     .tab2HomeBtnParent {
         bottom: -1px;
         height: auto;
     }

     .tab2Home-container {
         width: 100%;
     }

     #tab2Home-select {
         width: 100%;
     }
 }

 @media(max-width:600px) {
     .tab2HomeLabel {
         flex-direction: column;
         align-items: start;
     }
 }


 @media(min-width:1001px) {
     .tab2Home-text img {
         top: 0;
         position: absolute;
         opacity: 0;
         transition: opacity 0.3s ease;
  
         backdrop-filter: blur(0.6px);
         background: #00000096;
     }

     .tab2Home-text:hover img {
         opacity: 1;
     }
 }



 @media (min-width: 768px) {

     .tab2Home-text,
     .tab2Home-image {
         flex: 1 1 48%;
     }
 }

 @media (min-width: 1001px) and (max-width: 1100px) {
     .tab2Home-title {
         display: none !important;
     }

     .tab2Home-content {
         max-height: 210px;
         min-height: 210px;
     }
 } */



 .cardHsptll-container {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
     padding: 20px 0;
     justify-content: space-between;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .cardHsptll-card {
     flex: 1 1 250px;
     max-width: 300px;
     min-width: 250px;
     height: 400px;
     /* Increased height to accommodate image */
     background: white;
     border-radius: 12px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     display: flex;
     flex-direction: column;
     transition: all 0.3s ease;
     position: relative;
 }

 .cardHsptll-cardTow {
     flex: 1 1 250px;
     max-width: 100%;
     min-width: 100%;
     height: 500px;
     /* Increased height to accommodate image */
     background: white;
     border-radius: 12px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     display: flex;
     flex-direction: column;
     transition: all 0.3s ease;
     position: relative;
 }

 .cardHsptll-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
 }

 .cardHsptll-cardTow:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
 }

 .cardHsptll-image {
     width: 100%;
     height: 150px;
     object-fit: cover;
     border-top-left-radius: 12px;
     border-top-right-radius: 12px;
     transition: transform 0.3s ease;
 }

 .cardHsptll-card:hover .cardHsptll-image {
     transform: scale(1.05);
 }

 .cardHsptll-cardTow:hover .cardHsptll-image {
     transform: scale(1.05);
 }

 .cardHsptll-header {
     box-shadow: 0px -1px 4px rgba(0, 0, 0, 0.2);
     padding: 15px 2px;
     background: linear-gradient(135deg, #0391FF, #003d96);
     color: white;
     font-size: var(--sixteenPx);
     text-align: center;
 }

 .cardHsptll-content {
     padding: 15px 20px;
     flex-grow: 1;
     overflow-y: auto;
     line-height: 1.5;
     color: #555;
 }

 .cardHsptll-content::-webkit-scrollbar {
     width: 5px;
 }

 .cardHsptll-content::-webkit-scrollbar-thumb {
     background: #ddd;
     border-radius: 10px;
 }

 .cardHsptll-footer {
     padding: 15px 20px;
     display: flex;
     justify-content: flex-end;
     border-top: 1px solid #eee;
 }

 .cardHsptll-button:hover {
     transform: scale(1.05);
     box-shadow: 0 5px 15px rgba(107, 126, 251, 0.4);
 }

 @media (max-width: 768px) {
     .cardHsptll-card {
         flex: 1 1 100%;
         max-width: 100%;
     }

     .cardHsptll-cardTow {
         flex: 1 1 100%;
         max-width: 100%;
     }
 }