html,
    body {
      position: relative;
      height: 80vh;
    }

    body {
      background: #eee;
      font-family: "Montserrat";
      font-size: 14px;
      color: #000;
      margin: 0;
      padding: 0;
    }
    .swiper-slide {
        position: relative;
        width: 100vw;
        height: 500px; 
    }
    .swiper-slide::after {
        content: '';
        position: absolute;
        top: 0; 
        left: 40%;
        width: 100%;
        height: 100%; /* Covers the lower half of the carousel */
        /* background: linear-gradient(to left, rgba(255, 0, 0, 1), rgba(255, 0, 0, 0) 100%); */
            
        pointer-events: none; /* Ensures overlay doesn’t interfere with clicks */
        z-index: 1; /* Ensures it stays above the image */
    }
    
    
    .swiper-slide img {
        width: 100%;
        /* height: 100%; */
        object-fit: cover;
    }
    
    .description-overlay {
        position: absolute;
        top: 50px;
        right: 10%;
        /* transform: translate(-50%, -50%); */
        width: 350px;
        height: 350px; 
        background-color: rgba(0, 0, 0, 0);
        color: white;
        padding: 20px;
        text-align: center;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center; /* Centers content */
    }
    .rhombus{
      
    }
    .description-overlay img {
        max-width: 100%; /* Ensure the image doesn't overflow */
        height: auto;
        z-index: 2;
        margin-top: 10px; /* Adds space between text and image */
        opacity: .6;
        /* border-top: #eee 2px solid; */
      
        
    }
    
    .description-overlay h2
     {
        position: absolute;
        padding-top: 26px;
        padding-left: 50px;
        padding-right: 20px;
        text-align: left;
    
    
        z-index: 3;
    
    }
    .description-overlay p{
         position: absolute;
         /* transform: translate(0%, 60%); */
         top: 96px;
         padding: 30px;
         padding-left: 50px;
         padding-right: 30px;
         z-index: 3;
         text-align: left;
         font-size: 17px;
    
    }
    
    .know-more-btn {
        position: absolute;
        top: 240px;
        left: 50px;
    
        background-color: #D42027;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 25px;
    
        font-size: 14px;
        cursor: pointer;
        margin-top: 10px; /* Adds space between the image and button */
        z-index: 2; /* Ensure it stays on top */
    }
    
    .know-more-btn:hover {
        background-color: #ff5a5f;
    }
    
    .know-more-btn:hover {
        background-color: #ff5a5f;
    }
    

    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .swiper {
      margin-left: auto;
      margin-right: auto;
    }
   