*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.brann{
    width: 100%;
    height:100vh;
    background-image: linear-gradient(rgba(12, 3, 51, 0.484),rgba(12,3,51,0.6));
    position: relative; 
    padding: 0% 6%;
    display: flex; 
    align-items: center;
    justify-content: center;

}

nav{
    width: 100%;
    position: absolute;
    top: -70;
    left: 0;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    
   
}

nav .logo{
    width: 250px;
    cursor: pointer;
    align-items: left;

}

nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 50px; 
    max-width: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.25); /* Black with 25% opacity */
    
}

nav ul li a{
    text-decoration: none;
    color: #fff;
    text-transform: uppercase; 
    font-size: 20px;
    white-space: normal;
    font-weight: bold;
}

nav ul li::after{
    content: '';
    width: 0%;
    height: 2px; 
    background: #f44336; 
    display: block; 
    margin: auto; 
    transition: 0.7s; 
}

nav ul li:hover::after{
    width: 100%;

}

nav ul li .dropdown-navbar{
    display: none;
    position: absolute;
    background-color: #706a6a51;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

nav ul li .dropdown-navbar a{
    color: rgb(255, 248, 248);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

nav ul li:hover .dropdown-navbar{
    display: block;
}

.content{
    text-align: center;
    height: 100%;

}


.content h1 {
    font-size: 60px;
    color: #fff;
    font-weight: 600;
    margin-top: 20%;
    font-family: 'Playfair Display SC', serif;



 }
.content a{
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 24px;
    border: 2px solid #fff; 
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 200% auto 0; 


}

.content p{
    margin: 30% auto 0;
    font-weight: 100;
    line-height: 20px; 
    color: #fff;
}

.backvideo {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1; 

}


@keyframes slideUpButton {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-80px); /* Adjust to desired distance */
    }
}

@media (min-aspect-ratio: 16/9){
    .backvideo{
        width:100%;
        height: auto; 
    }
}
@media (max-aspect-ratio: 16/9){
    .backvideo{
        width:auto;
        height: 100%; 
    }
}



.book-button {
    display: inline-block;
    text-decoration: none;
    color:#fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative; 
    cursor: pointer; 
    top: 380px; 
    animation: slideUpButton 3s forwards;
}

.book-button a{
    padding-top: 70px;
}

.book-button:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s; 
    transform: scale(1.05); /* Slight zoom on hover */
}


/*____________________________________________________________________HOMEPAGE-section-2________________________________________________*/
.brann-2 {
    display: flex;
    justify-content: space-between;
    background-color: #1C1C1C; 
    padding: 100px 100px;

  }
  
  /* Common styles for all content divs */
  .content-2, .content-3, .content-4 {
    flex: 1;
    text-align: center;
    padding: 0 20px; /* Some padding between each content div for spacing */
  }
  
  
  .content-2 img, .content-3 img, .content-4 img {
    width: 80px; 
    margin-bottom: 20px;
  }
  
  .content-2 h2, .content-3 h2, .content-4 h2 {
    color: #FFFFFF;
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Playfair Display SC', serif;
  }
  
  .content-2 p, .content-3 p, .content-4 p {
    color: #d8cece;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
    font-family: 'Playfair Display SC', serif;
    font-family: 'Roboto Slab', serif;
  }



  /*_________________________________________________HOMEPAGE-2.1-flip cards__________________________*/

.index-poseidon-flipcards {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, rgb(27, 27, 44), #000000);
    padding: 10px;
    display: flex; 
}
.index-poseidon-cards{
    width: 800px;
    height: 650px;
    margin: 100px auto 0; 
    perspective: 1000px;
}

.index-poseidon-cards-inner{
    width: 100%;
    height: 100%; 
    position: relative;
    transition: transform 1s;
    transform-style: preserve-3d;
}

.index-poseidon-cards-front, .index-poseidon-cards-back{
    width: 100%;
    height: 100%;
    border-radius: 15px;
    position: absolute;
    backface-visibility: hidden;

}
.index-poseidon-cards-front{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('imgs/index-psoidens-card.jpeg');
    background-size: cover;
    background-position: center;
    padding: 100px 35px 35px;
    display: flex; 
    flex-direction: column;
    justify-content: flex-end;
}
.index-poseidon-cards-front h2{
        font-weight: bold;
        color: #fff;
        font-family: 'Playfair Display SC', serif;
       
}

.index-poseidon-cards-front p{
    font-weight: bold;
    color: #fff;
    font-size: 13px;
}

.index-poseidon-cards-front button{
    width: 120px;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 50px;
    padding: 8px 20px;
    cursor: pointer;
    margin-top: 20px; 
    color: white; 
    font-weight: bold;
}

.index-poseidon-cards-back{
    background:   linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    color: #fff;
    padding: 20px 40px;
    transform: rotateY(180deg); 
}

.index-poseidon-cards-back h1{
    font-size: 50px;
    line-height: 55px;
    margin: 0;
    justify-content: center;
    display: flex;
   
}

.index-poseidon-cards-back p{
    font-size: 14px;
    font-family: 'Playfair Display SC', serif;
    font-family: 'Roboto Slab', serif;
}


.index-poseidon-cards-back img{
    width: 140px; 
}

.index-poseidon-header h1{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display SC', serif;
}

.poseidon-info-table {
    width: 50%; /* Or a fixed width, depending on your layout */
    margin-top: 10px; /* Adjust as needed */
    border-collapse: collapse;
    color: #fff;
}

.poseidon-info-table td {
    padding: 5px; /* Adjust as needed */
}

.poseidon-info-table td strong {
    display: block; /* Makes 'strong' behave like a block-level element, giving it its own line */
    font-weight: bold;
}

.index-poseidon-highlights {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end; /* This will align the ul to the right */
    text-align: justify;
}

.index-poseidon-highlights ul {
    padding-left: 0;
    list-style-position: inside;
}

.index-poseidon-highlights li {
    margin-bottom: 10px;
}



.index-poseidon-cards-button{
    display: flex;
    align-items: right;
    text-align: right;
    margin-top: 30px;
    justify-content: right;
    cursor: pointer;
}


.index-poseidon-back-button{
    background: #7800ad;
    color: #fff;
    border: 0;
    outline: 0;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 25px;
    margin-right: 5px;
    box-shadow: 0px 8px 10px rgba(120, 0, 173, 0.3); 
    align-self: center;
}

.index-poseidon-cards:hover .index-poseidon-cards-inner{
    transform: rotateY(180deg);
}


/*_________________________________________________HOMEPAGE-2.2-MEDUSA FLIP__________________________*/

.index-medusa-flipcards {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, rgb(27, 27, 44), #000000);
    padding: 10px;
    display: flex; 
}
.index-medusa-cards{
    width: 800px;
    height: 650px;
    margin: 100px auto 0; 
    perspective: 1000px;
}

.index-medusa-cards-inner{
    width: 100%;
    height: 100%; 
    position: relative;
    transition: transform 1s;
    transform-style: preserve-3d;
}

.index-medusa-cards-front, .index-medusa-cards-back{
    width: 100%;
    height: 100%;
    border-radius: 15px;
    position: absolute;
    backface-visibility: hidden;

}
.index-medusa-cards-front{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('imgs/medusa-index-img1.jpeg');
    background-size: cover;
    background-position: center;
    padding: 100px 35px 35px;
    display: flex; 
    flex-direction: column;
    justify-content: flex-end;
}
.index-medusa-cards-front h2{
        font-weight: bold;
        color: #fff;
        font-family: 'Playfair Display SC', serif;
       
}

.index-medusa-cards-front p{
    font-weight: bold;
    color: #fff;
    font-size: 13px;
}

.index-medusa-cards-front button{
    width: 120px;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 50px;
    padding: 8px 20px;
    cursor: pointer;
    margin-top: 20px; 
    color: white; 
    font-weight: bold;
}

.index-medusa-cards-back{
    background:   linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    color: #fff;
    padding: 20px 40px;
    transform: rotateY(180deg); 
}

.index-medusa-cards-back h1{
    font-size: 50px;
    line-height: 55px;
    margin: 0;
    justify-content: center;
    display: flex;
   
}

.index-medusa-cards-back p{
    font-size: 14px;
    font-family: 'Playfair Display SC', serif;
    font-family: 'Roboto Slab', serif;
}


.index-medusa-cards-back img{
    width: 140px; 
}

.index-medusa-header h1{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display SC', serif;
}

.medusa-info-table {
    width: 50%; /* Or a fixed width, depending on your layout */
    margin-top: 10px; /* Adjust as needed */
    border-collapse: collapse;
    color: #fff;
}

.medusa-info-table td {
    padding: 5px; /* Adjust as needed */
}

.medusa-info-table td strong {
    display: block; /* Makes 'strong' behave like a block-level element, giving it its own line */
    font-weight: bold;
}

.index-medusa-highlights {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end; /* This will align the ul to the right */
    text-align: justify;
}

.index-medusa-highlights ul {
    padding-left: 0;
    list-style-position: inside;
}

.index-medusa-highlights li {
    margin-bottom: 10px;
}



.index-medusa-cards-button{
    display: flex;
    align-items: right;
    text-align: right;
    margin-top: 30px;
    justify-content: right;
    cursor: pointer;
}


.index-medusa-back-button{
    background: #7800ad;
    color: #fff;
    border: 0;
    outline: 0;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 25px;
    margin-right: 5px;
    box-shadow: 0px 8px 10px rgba(120, 0, 173, 0.3); 
    align-self: center;
}

.index-medusa-cards:hover .index-medusa-cards-inner{
    transform: rotateY(180deg);
}

/*_________________________________________________HOMEPAGE-3__________________________*/ 

.room-img h2{
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #fff; 
    margin-bottom: 50px;
    display: flex; 
    align-items: flex-start;
    

}
.row p{
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    padding: 10px; 

}

.row{
    top: 500px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center; 

}

.room-img{
    background-color: #1C1C1C;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    
}

.games-col {
    width: 48%;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px; 
    box-sizing: border-box;
    transition: 0.5s;
    text-align: center; 
    margin-right: 2%;
    
}

.game-1 {
    width: 500px;
    height: 400px;
    border-radius: 10px; 
    flex: none; 
}

.book-button2{
    display: inline-block;
    text-decoration: none;
    color:#fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 14px;
    background: transparent;
    position: relative; 
    cursor: pointer;
    margin: 10px 5px; 
    font-weight: bold;
}

.book-button2:hover {
    background-color: #f44336; /* Darker red for hover effect */
    transform: scale(1.05); /* Slight zoom on hover */
}

.learn-more{
    display: inline-block;
    text-decoration: none;
    color:#fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 14px;
    background: transparent;
    position: relative; 
    font-weight: bold;
    cursor: pointer;
}

.learn-more:hover {
    background-color: #000; /* Darker red for hover effect */
    transform: scale(1.05); /* Slight zoom on hover */
}

h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0; 
    color: #fff;

}

.games-col:hover{
    box-shadow: 10px 10px 10px 10px rgba(84, 3, 3, 0.881);

}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}


/*-----------------------------REVIEWS----------------------*/

.reviews h2{
    text-align: center; 
    padding-top: 60px;
    padding-bottom: 30px;
    color: #fff;
    font-weight: bold;
}


.revie-img{
    width: 600px !important;     /* Set to a specific pixel width */
    height: 500px !important;
    align-items: center; 
    justify-content: center; 
    margin-left: auto;
    margin-right: auto;
}

.reviews{
    padding: 2rem; 
    background-color: #000;

}

.slider-wrapper {
    position: relative;
    max-width: 70rem;
    margin: 0 auto;
}

.slider {
    display: flex; 
    aspect-ratio: 16/9; 
    overflow-x: auto;
    scroll-snap-type: x-mandatory; 
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;

}

.slider img{
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
    width: 800px;
    height: 700px;

}

.slider-nav {
    display: flex; 
    column-gap: 1rem;
    position: absolute; 
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1; 
}

.slider-nav a {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 1;
    transition: opacity ease 250ms; 
}

.slider-nav a:hover {
    opacity: 1.25; 
}

/*____________________________________FOOTER___________________________*/



footer{
   width: 100%;
   position: absolute;
   bottom: 0;
   background: linear-gradient(to right, #7a090769, #571701);
   margin-top: auto; 
   position: relative;
   color: #fff;
   padding: 100px 0 30px;
   border-top-left-radius: 125px;
   font-size: 13px;
   line-height: 20px; 
}

.footer-section{
    background-color: #000;
}

.row-footer{
    width: 85%;
    margin: auto;
    display: flex; 
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col-footer{
    flex-basis: 25%;
    padding: 10px; 
}

.col:nth-child(2),
.col:nth-child(3) {
    flex-basis: 15%;

}

.col-footer h3{
    width: fit-content; 
    margin-bottom: 40px;
    position: relative; 
    font-size: 40px;
}

.col-footer ul li{
    list-style: 12px;
    margin-bottom: 12px;
}

.col-footer a,
.col-footer p {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
}

.email-id{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0; 
}

.logo-footer{
    width: 300px;
    margin-bottom: 30px; 
}

.form-footer{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;

}

.form-footer input{
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}


hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;

}

.footer-copyright{
    text-align: center;
}

.footer-h3{
    width: 100%;
    height: 5px;
    background: #f2ebeb61;
    border-radius: 3px;
    position: absolute;
    top: 35px;
    left: 0;
}

.footer-h3 span{
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top:0;
    left: 10px;
    animation: moving 3s linear infinite;
}

@keyframes moving{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}

/*______________________________PG-2 ESCAPE ROOM ____________________________________*/

.pg-escaperoom-body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a; /* Adjusted color to match the image background */
    color: #FFF; /* Light text color */
}

/* Header Styles */
.escaperoom-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('imgs/pg-escaperoom-img1.jpeg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 15% 20%;

}


.escaperoom-header img {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    height: auto;
}

/*_____ Page Styles_____ */
.pg-escaperoom {
    width: 100%;
    padding: 70px 0; 

}

.escaperoom-1 {
    text-align: center;
    padding-bottom: 70px;
    margin-bottom: 10%;
}

.escaperoom-1 p {
    color: #c0bebe;
    font-size: 20px;
    margin: auto;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 3%;
}



.escaperoom-1 h2 {
    color: #fff; /* Contrast color for headings */
    font-size: 50px;
    margin: 0;
    text-align: center;
    letter-spacing: 2px;
    padding: 5%;
}

.escaperoom-1-box {
        width: 80%;
        margin: auto;
        display: flex; 
        flex-wrap: wrap;
        align-items: center;
        text-align: center;
        align-items: flex-start;
}


.escaperoom-1-physical{
        flex-basis: 50%;
}

.escaperoom-1-physical-img{
    flex-basis: 50%;
    margin: auto;
}

.maze-race-img-1{
    width: 28%;
    height: auto;
    border-radius: 20px;
    top: -650px;
    right: -60%;
    position: relative;
    transition: transform 0.3s ease;
    margin-top: 8%;
}

.maze-race-img-1:hover {
    transform: scale(1.15);
}


.interactive-tile-img-1 {
    width: 40%;
    height: auto; 
    border-radius: 20px;
    margin-top: 12%;
    top: -360px;
    position: relative;
    transition: transform 0.3s ease;

}

.interactive-tile-img-1:hover {
    transform: scale(1.15);
}

.wallclimbing-img-1{
    width: 20%;           /* Auto-adjust the width */
    height: auto;          /* Auto-adjust the height */
    object-fit: cover;     /* Ensures the aspect ratio is maintained without stretching */
    border-radius: 20px;
    margin-top: 7%;
    top: -280px;
    right: -35%;
    display: flex;
    position: relative;
    transition: transform 0.3s ease;
}

.wallclimbing-img-1:hover{
    transform: scale(1.15);
}

.escaperoom-1-physical h1{
    text-align: left;
    margin-bottom: 10px;
    font-weight: 100;
    color: #fff; 
}

.escaperoom-desc{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}


.escaperoom-page-text-1 p{
    padding: 10px 20px;
    text-align: initial;

}
@media screen and (max-width: 770px) {
    .escaperoom-1 h1{
        font-size: 35px;
    }
    .escaperoom-1-physical{
            flex-basis: 100%;
    }
    .escaperoom-1-physical-img{
            flex-basis: 100%; 
    }
    .maze-race-img-1{
        width: 100%;
        
    }
}

/*________pg-MINI GAMES-section-2____________*/

.escaperoom-page-section2{
    width: 100%;
    padding: 50px 0;
    background: #1a1a1a; 
    margin-top: -500px;

} 

.escaperoom-section2-games{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
}

.escaperoom-section2-services{
    flex-basis: 48%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    margin-top: -10%;
    margin-bottom: 10%;
}

.escaperoom-section2-services img{
    width: 80%;
    margin-bottom: 10%;

}

.escaperoom-section2-overlay{
    width: 100%;
    height: 100%;
    position: absolute; 
    top: 0;
    border-radius: 20px;
    cursor: pointer;
    background: linear-gradient(rgba(0,0,0,0.5),#69aba4);
    opacity: 0;
    transition: 1s;
}
.escaperoom-section2-services:hover .escaperoom-section2-overlay{
    opacity: 1;
}

.escaperoom-section2-text{
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 1s;
    cursor: pointer;
    font-weight: bold;
}
.escaperoom-section2-text p{
    font-size: 20px;
    color: #fff;
}

.escaperoom-section2-services:hover .escaperoom-section2-text{
    opacity: 1;
    bottom: 40%; 
}


.escaperoom-section2-text hr{
        background: #fff;
        height: 2px;
        border: 0;
        margin: 15px auto;
        width: 60%;

}

/*__________psoidens-page_______________*/ 

.psoidens-header{
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),url('imgs/psoidens-tirent-pg-img1.jpeg');
    background-size: contain;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 20% 15%;
}


.psoidens-pg-section1 {
    display: flex;
    justify-content: space-between;
    background-color: #1C1C1C; /* This is an estimation of the background color. Adjust if needed */
    padding: 100px 100px;
    flex-direction: row; /* Stacking children vertically */
    align-items: center; /* Center children horizontally */
    width: 100%; /* Occupy full width */

  }

.psoidens-pg-room-features {
    flex: 1;
    text-align: center;
    padding: 0 10px; /* Some padding between each content div for spacing */
}

.psoidens-pg-room-features h2{
    color: #fff; 
    padding: 5%;
}

.psoidens-pg-room-features hr{
    background: #fff;
    height: 2px;
    border: 0;
    margin: 10px auto;
    width: 60%;
}

.psoidens-pg-room-features p{
    color: #fff; 
    font-size: 120%;
}

#group-logo-2{
    width: 35%;
    margin-bottom: 0%;
}

/*______________________psoidens-page-section2______________________*/

.psoidens-pg-section2{
    font-family: 'Arial', sans-serif;
    color: #fff;
    line-height: 1.6;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    height: auto;
    position: relative;
    overflow: hidden; 
    
    
}

.poseidons-trident {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    height: auto;
    
}

.poseidons-trident video{
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    width: 700%;
    height: auto;
    object-fit: contain;
    z-index: -1;
    background-size: cover;

}

.step {
    display: flex;
    margin: 50px 0;
    background: #444;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


.psoidens-section2-image img {
    width: 95%;
    border-radius: 20px;
    height: auto;
    flex: 1;
    padding: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.psoidens-section2-image img:hover {
    transform: scale(1.05); /* Slightly increase the size */
    opacity: 0.9; /* Slightly reduce opacity */
}

.psoidens-map{
    border-radius: 30px !important;
    width: 90% !important;

}

.psoidens-section2-text-container1{
    display: flex; /* Use flex to center the content vertically */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    margin-right: 5%; /* Add some right margin for spacing */
}
.psoidens-section2-text-container1 h2 {
    text-align: center;
    font-size: 180%;
    color: #fff;
    padding: 1%;
    font-weight: bold;
}
.psoidens-section2-text-container1 ul {
    list-style-position: inside; /* Ensures bullets appear inside the list item's block */
}

.psoidens-section2-text-container1 ul li {
    text-align: center; /* Centers the text inside each list item */
    font-weight: bold;
    margin-bottom: 10px; /* Adds space between list items */
    font-size: 20px;
}

@media screen and (max-width: 768px) {
    .step {
        flex-direction: column;
    }
}

/*_________________________________PAGE-MEDUSA_____________________________*/

.medusa-header{
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),url('imgs/medusa-pg-backimg1.jpeg');
    background-size: contain;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 20% 15%;
}

.medusa-pg-section1{
    display: flex;
    justify-content: space-between;
    background-color: #1C1C1C; /* This is an estimation of the background color. Adjust if needed */
    padding: 100px 100px;
    flex-direction: row; /* Stacking children vertically */
    align-items: center; /* Center children horizontally */
    width: 100%; /* Occupy full width */

}

.medusa-pg-room-features{
    flex: 1;
    text-align: center;
    padding: 0 20px; /* Some padding between each content div for spacing */

}

.medusa-pg-room-features h2{
    color: #fff; 
    padding: 5%;
}

.medusa-pg-room-features hr{
    background: #fff;
    height: 2px;
    border: 0;
    margin: 1px auto;
    width: 60%;
}

.medusa-pg-room-features p{
    color: #fff; 
    font-size: 120%;
}


/*______________________medusa-page-section2______________________*/

.medusa-pg-section2{
    font-family: 'Arial', sans-serif;
    color: #fff;
    line-height: 1.6;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    overflow: hidden;
    position: relative;
}

.medusa-trident {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.medusa-section2-backvideo{
    position: absolute;
    right: 0;
    bottom: 50%;
    top: 0;
    left: 0;
    width: 740%;
    height: 740%;
    object-fit: cover;
    z-index: -1; 
    background-size: contain;
    

}

.step {
    display: flex;
    margin: 50px 0;
    background: #444;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


.medusa-section2-image img {
    width: 95%;
    border-radius: 30px;
    height: auto;
    flex: 1;
    padding: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.medusa-section2-image img:hover {
    transform: scale(1.05); /* Slightly increase the size */
    opacity: 0.9; /* Slightly reduce opacity */
}

.medusa-map{
    border-radius: 30px !important;
    width: 90% !important;

}
.medusa-section2-text-container1{
    display: flex; /* Use flex to center the content vertically */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    margin-right: 5%; /* Add some right margin for spacing */
}
.medusa-section2-text-container1 h2 {
    text-align: center;
    font-size: 180%;
    color: #fff;
    padding: 1%;
    font-weight: bold;
}
.medusa-section2-text-container1 ul {
    list-style-position: inside; /* Ensures bullets appear inside the list item's block */
}

.medusa-section2-text-container1 ul li {
    text-align: center; /* Centers the text inside each list item */
    font-weight: bold;
    margin-bottom: 30px; /* Adds space between list items */
    font-size: 20px;
}
/*_______________________________PAGE-5 CONTACT US FORM______________________*/
#inquiry-form {
    max-width: 800px;
    margin: 0% auto;
    padding: 1em;
    background: linear-gradient(to right, #7a090769, #571701);;
    border-radius: 3px;   
    margin-bottom: 20%;
}

  .form-body{
    background-color: #333;
  }

.form-container{
    margin-top: 15%;
    flex-grow: 1;
}
.form-container img{
    width: 10%;
    display: flex; 
    align-items: right;
    margin-left: auto;
  
}
  .form-container input[type="text"],
  .form-container input[type="email"],
  .form-container select,
  .form-container textarea {
    width: 100%;
    padding: .5em;
    border: 1px solid #ccc;
    border-radius: 3px;
}
  .form-container h1{
       text-align: center;
        color: #fff;
        font-size: 300%;
        font-weight: bold;
        padding-bottom: 5%;
  }
  .form-container h2{
    text-align: center;
        color: #fff;
        font-size: 200%;
        font-weight: bold;
        padding-top: 2%;
        padding-bottom: 2%;
  }
  
  
  #inquiry-form h2 {
    text-align: center;
    color: #fff;
  }
  
  .form-group {
    margin-bottom: 1em;
  }
  
  .form-group label {
    display: block;
    margin-bottom: .5em;
    color: #fff;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: .5em;
    border: 1px solid #ccc;
    border-radius: 3px;
  }
  
  .form-group button {
    width: 100%;
    padding: .7em;
    border: none;
    background: #007BFF;
    color: white;
    border-radius: 3px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.25); /* Black with 25% opacity */
  }
  
  .form-group button:hover {
    background: #0056b3;
  }
  
