/* .journey-section{
    background-color: #ffffff; 
    min-height: 100vh ;
    display: flex;
    padding-top: 20px;
    justify-content: center;
    position: relative;
    align-items: center;
    padding-bottom: 30px;
 } */
.journey-section{
    background: url('/assets//images//home/slide-1.jpg') no-repeat center center/cover; 
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 30px;
    position: relative; 
 }
 .journey-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); 
    z-index: 1; 
 }
 
 .journey-paragraph{
     /* margin-left: 300px;
     margin-right: 300px; */
     max-width: 1000px; 
     padding: 15px;
     position: relative;
     z-index: 2;
     /* padding-bottom: 100px; */
 }
 .journey-paragraph p{
     text-align: justify;
     font-size: 17px;
 }
 
 .journey-header{
     margin-bottom: 30px;
 }
 .journey-header h2{
     font-size: 34px;
 }
 
 
 .explore-button {
     padding: 12px 20px;
     background: #070707;
     color: #fff;
     font-weight: bold;
     position: absolute;
     left: 40px;
     bottom: 50px; 
     font-size: 1rem;
     border: none;
     cursor: pointer;
     transition: background 0.3s ease;
     /* margin-top: 20px; */
   } 
   
   .explore-button:hover {
     background: #141414;
   }
 
   
   
 
 
 
 
   @media (max-width: 1180px) {
     .journey-paragraph{
         max-width: 800px; 
         padding: 15px;
     }
     .journey-section{
      height: auto;
      margin-bottom: 40px;
   }
   .explore-button {
    /* left: 15px; */
    bottom: 0; 
  } 
   }
 
   @media (max-width: 768px) {
     .journey-header h2{
         font-size: 27px;
     }
     .journey-paragraph p{
         font-size: 17px;
     }
     .explore-button {
      left: 15px;
    } 
   }

   @media (max-width: 530px) {
     .journey-section{
         height: auto;
         margin-bottom: 30px;
      }

      
   }