.curtain {
    width: 100%;
    height: 300vh; /* Determines how long the user scrolls to open the curtain */
    position: relative;
    
}

.curtain-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    /* overflow: hidden; Crucial: Hides panels when they slide off-screen */
}



/* The moving panels */
.curtain__panel {
    /* margin-top: -1px; */
    background: linear-gradient( #000000,#1f1f1f);
    background-size: 100vw 100vh;
    width: 50%;
    height: 100vh;
    width: calc(50% + .5px);
    position: absolute; /* Replaces float:left for perfect stacking */
    top: 0;
    display: flex;
    align-items: center;
    z-index: 2; /* Sits in front of the service-content */
    position: absolute;
    overflow: hidden;

    
    
}

.curtain__panel--left {
    left: 0;
    justify-content: flex-end;
    transform: translateX(0);
    background-position: left center;
    
}

.curtain__panel--right {
    right: 0;
    justify-content: flex-start;
    transform: translateX(0);
    background-position: right center;
}
  
/* 570 x 600 */

/* .founder-quotes{

    list-style: none;
    display: flex;

} */

/* .quotes{

    
    width: 600px;
    height: 570px;
    background-image: url('../assets/images/distance.jpg');
    background-size: cover; /* Ensures image covers the whole area */
    /* background-position: center center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex; */
    /* justify-content: flex-end; */
    /* align-items: end; */
    
    
    

/* } */ 

    
    
/* #David-N{

    margin-right: 15px;
}
#Derrick-C{
    margin-left: 15px;
}
.quotes::before {
  content: ""; 
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px); 
  -webkit-backdrop-filter: blur(5px);

  background-color: rgba(128, 128, 128, 0.283);
  z-index: 1; /* Place the tint above the background image */

/* 

 .quotes img{

    width: 45px;
    background: blue;
    border-radius: 20px;
    padding: 10px;
    /* position: absolute;
    z-index: 3; 
    background-color: rgb(219, 234, 254);
    border-radius: 25%;

}
.quote-container{

    width: 100%;
    
    /* margin-left: 45px; 
    position: absolute;
    z-index: 3;
    color: white;
    position:relative;
    padding: 10px; /* Adjust based on your layout 
    overflow: visible; /* Prevents the container from clipping the SVG 

}


.quote-container p{

 
 /* border-bottom: 1px solid black;
 font-size: 20px;

}

.side-bar{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 5px;
    height: 100%;
    z-index: 2;
    
    background: grey
    



}

.bar-bottom{

    border-bottom: 1px solid rgba(215, 215, 215, 0.803);

} */


.split-logo {
    position: absolute;
    top: 50%;
    
    /* THE SCALING MAGIC */
    width: 80vw; /* Takes up 80% of the screen width on phones */
    max-width: 600px; /* Stops it from getting too massive on desktop monitors */
    max-height: 40dvh;
    object-fit: contain;
    height: auto;
    z-index: 10;
}

/* Shift the left logo so its right half bleeds off the panel */
.split-logo-left {
    right: 0;
    transform: translate(50%, -50%); 
}

/* Shift the right logo so its left half bleeds off the panel */
.split-logo-right {
    left: 0;
    transform: translate(-50%, -50%);
}

@media (max-width: 900px) {

  .quote-container p {
        font-size: 16px;  /* Smaller font so it fits better */
    }

}