 .custom-services-section {
   background-color: #112129;
   position: relative;
   width: 100%;
   padding: 5vw 10vw;
   margin: 0 auto;
   text-align: left;
 }

 .custom-services-section h2 {
   color: #FFFFFF;
   margin-bottom: 5px;
   font-size: 50px;
   line-height: 55px;
   font-family: PolySans-Median;
   font-weight: 600;
 }

 .custom-services-section p {
   color: #1EADD3;
   margin-bottom: 28px;
   font-size: 18px;
   line-height: 22px;
   font-weight: 400;
   font-family: Inter-Regular;
 }

 .custom-slider-container {

   overflow: hidden;
 }

 .custom-slider-track {
   display: flex;
   gap: 2.5rem;
   transition: transform 0.5s ease-in-out;
 }

 .custom-service-card {
   min-width: 30%;
   max-width: 374px;
   border-radius: 10px;
   flex-shrink: 0;
 }

 .custom-service-card img {
   width: 100%;
   height: 369px;
   object-fit: cover;
   border-radius: 10px
 }

 .custom-card-content {
   padding: 20px 2px 15px 2px;
 }

 .custom-card-content h3 {
   margin: 0;
   font-size: 18px;
   color: #FFFFFF;
   font-size: 20px;
   line-height: 22px;
   font-weight: 700;
   font-family: Inter-Bold;
 }

 .custom-card-content p {
   font-size: 18px;
   line-height: 22px;
   font-weight: 400;
   font-family: Inter-Regular;
   margin-top: 15px;
   color: #FFFFFF;
 }

 .custom-btn {
   display: inline-block;
   padding: 8px 15px;
   width: 120px;
   height: 35px;
    font-family: Inter-Regular;
   text-align: center;
   background-color: transparent;
   color: #1EADD3;
   border: 1px solid #1EADD3;
   border-radius: 20px;
   cursor: pointer;
   text-decoration: none;
   font-size: 13px;
   font-weight: 400;
   transition: background 0.3s;
 }

 .custom-btn:hover {
   background-color: #1EADD3;
   color: #fff;
 }

 .custom-nav-buttons {

   display: flex;
   justify-content: space-between;
   margin-right: 25px;

 }

 .slider-top-container {
   display: flex;
   justify-content: space-between;
   align-items: center;
 }

 .custom-nav-buttons button {
   background-color: transparent;
   border: 1px solid #FFFFFF;

   color: #fff;
   height: 45px;
   width: 45px;

   cursor: pointer;
   border-radius: 50%;
   margin: 0 5px;
   transition: background 0.3s;
 }

 .custom-nav-buttons button:hover {
   border: 1px solid #1EADD3;
   color: #1EADD3;
 }

 @media (max-width:768px) {
   .custom-services-section {
     display: none;
   }

 }


 /* Hide by default */
 .unique-services-section {
   display: none;
 }

 /* Mobile View Only */
 @media screen and (max-width: 768px) {
   .unique-services-section {
     display: block;
     padding: 30px;
     /* ✅ Fixed padding */

     background: #fff;
    font-family: Inter-Regular;
   }

   .unique-services-header h2 {
     font-size: 30px;
     font-family: PolySans-Median;
     color: #002b36;
     margin-bottom: 5px;

   }

   .unique-services-subtext {
     font-size: 15px;
     font-family: Inter-Light;
     color: #1EADD3;
     margin-bottom: 25px;

   }

   .unique-services-grid {
     display: grid;
     grid-template-columns: repeat(2, 157px);
     /* Fixed card width */
     justify-content: center;
     /* ✅ Centers the cards horizontally */
     gap: 10px;
   }

   .unique-service-card {
     background: #FFFFFF;
     border: 1px solid #CDE3EC;
     border-radius: 40px;
     text-align: center;
     padding: 12px;
     width: 157px;
     height: 204px;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     transition: transform 0.2s ease;
   }

   .unique-service-card img {
     margin-bottom: 8px;
             height: 120px;
   }

   .unique-service-card p {
     font-size: 14px;
     font-family: Inter-Semibold;
     line-height: 22px;
     font-weight: 500;
     color: #112129;
     margin: 0;
   }

   .unique-service-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
   }
 }

 @media screen and (max-width: 340px) {
   .unique-services-grid {
     grid-template-columns: repeat(2, 137px);
     /* ✅ Adjusts for smaller screens */
   }

   .unique-service-card {
     width: 137px;
     height: 194px;
     border-radius: 30px;
   }
 }