* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'cormorant_regular';
    src: url('fonts/CormorantGaramond-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'radley';
    src: url('fonts/Radley-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'EB';
    src: url('fonts/EBGaramond-VariableFont_wght.ttf') format('truetype');
}
html{
    caret-color: transparent;
}
body {
    font-family: cormorant_regular;
    font-weight: lighter;
    color: #FBFADA !important;
    line-height: 1.6;
    background-color: #436850;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
    max-width: 100%;
}
.main{
 height: 100%;
 width: 100%;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:#436850;
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    z-index: 10;
    border-bottom: #ADBC9F 3px solid;

}
.navbar.unscrolled {
    background-color: #436850;
}

.navbar.scroll-circle {
    /* animation-name: change-color; */
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-bottom: none;
    background-color: #12372A;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
    /* animation-duration: 3s;
    animation-fill-mode: forwards; */
}
@keyframes change-color{
    from{
        background-color: #436850;
    }
    to{
        background-color: #12372A;
    }
}
.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: white;
    font-size: 45px;
    transition: opacity 0.3s ease;
}

.navbar-brand *{
    display: inline-flex;
    color: #FBFADA;
}

.navbar-links {
    display: flex;
    list-style: none;
    font-size: 28px;
    font-weight: 200;
    color: #FBFADA;
}

.navbar-links li {
    margin: 0 15px;
    cursor: pointer;
    transition: transform 0.1 ease-in;
    -webkit-transition: transform 0.1 ease-in;
    -moz-transition: transform 0.1 ease-in;
    -ms-transition: transform 0.1 ease-in;
    -o-transition: transform 0.1 ease-in;
}

.navbar-links li:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.navbar-links a {
    text-decoration: none;
    color: #FBFADA ;
    transition: color 0.3s ease;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: #fff;
    margin: 3px 0;
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
        flex-direction: column;
        background-color: #333;
        width: 100%;
        position: absolute;
        top: 90px;
        left: 0;
    }

    .navbar-links.active {
        display: flex;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-links li {
        margin: 15px 0;
    }

    .navbar-links a {
        padding: 10px 20px;
    }
}


.content {
    padding: 20px;
    margin-top: 80px; 
}

section {
    margin: 40px 0;
}

h1, h2 {
    margin-bottom: 15px;
    color: #333;
}

.consultancy-button{
    padding: 20px;
    border-radius: 20px;
    position: fixed;
    z-index: 1;
    left: 540px;
    top: 52%;
    translate: -50% -50%;
    backdrop-filter: blur(5px);
    border: 3px #ffffff44 solid;
    color: white;
    font-size: 32px;
    font-weight: 700;
    background-color: #30324513;
    transition: all 0.3s;
    width: 400px;
    height: 120px;
    cursor: grab;
}
.consultancy-button span{
    color:gold;
}
.consultancy-button.ini{
    display: none;
}
.consultancy-button.show{
    animation: scale-up 0.5s forwards;
}
.consultancy-button.hide{
    animation: scale-down1 0.5s forwards;
}
@keyframes scale-up{
    from{width: 0px;font-size: 0px;scale: 0;}
    20%{scale: 1;}
    70%{font-size: 0px;}
    to{width: 400px; font-size: 32px;}
}

@keyframes scale-down1{
    from{width: 400px; font-size: 32px;}
    30%{font-size: 0px;}
    80%{scale: 1;}
    to{width: 0px;font-size: 0px;scale: 0;}
}

.consultancy-button:hover{
    scale: 1.1;
}
.animation{
    top: 0;
    height: 100%;
    width: 100vw;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
    -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
    transition: opacity 0.01s ease-in-out;
    -webkit-transition: opacity 0.01s ease-in-out;
    -moz-transition: opacity 0.01s ease-in-out;
    -ms-transition: opacity 0.01s ease-in-out;
    -o-transition: opacity 0.01s ease-in-out;
    position: fixed;
    object-fit: cover;
    object-position: right;
    
}

.home-bg-container{
    width: 100%;  /* Fill the available width */
    height: 100%; /* Fill the available height */
    display: flex;
    position: fixed;
    
}
.animation.hidden{
    opacity: 0;
}
.the-space{
    min-height: 100vh;
    min-width: 100vw;
}
.pads{
    background-color: #436850e1;
    /* background-color: #083d2dd8; */
    /* background-color: #12372ad7; */
    max-height: max-content;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
    text-align: center; 
}
 /* #services-pad{
    animation-name: up;
    animation-duration: 1.5s;
} */
/* @keyframes up{
    from{
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
}
    to{
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
}
} */

.booking-pad {
    margin-top: 0%;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
}

.booking-pad{
    display: inline-flex;
    height: 400px;
    width: 350px;
    margin: 2%;
    background-color: #ADBC9F;
    /*background-color: #436850;
    */position: relative;
    align-items:last baseline;
    justify-content: last baseline;
    box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.4);
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transition: all 0.5s ease-in;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    
}

@keyframes border-show{
    from{border: #ADBC9F solid 0px;}
    to{border: #ADBC9F solid 5px;}
}

.book-text {
 
}

.booking-pad .fill{
    z-index: -1;
}

.fill{
    height: 60%;
    width: 15%;
    background-color: #12372A;
    /*background-color: white;*/
    z-index: 10;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .8s ease-in-out;
    -webkit-transition: all .8s ease-in-out;
    -moz-transition: all .8s ease-in-out;
    -ms-transition: all .8s ease-in-out;
    -o-transition: all .8s ease-in-out;
}
.booking-pad:hover .fill{
    scale: 30;
}
.booking-pad:hover{
}
.booking-pad:hover .inside-para{
    color: #FBFADA;
}
.booking-pad:hover .inside-text{
    color: #FBFADA;
}

.booking-pad.in-view{
    animation: pop 0.5s forwards ease-out;
    -webkit-animation: pop 1s forwards ease-out;
}

@keyframes pop{
    0% {
        opacity: 0;
        transform: scale(0.5); 
      }
      60% {
        opacity: 0.5;
        transform: scale(1.2); 
      }
      100% {
        opacity: 1;
        transform: scale(1); 
      }
}

h1{
    padding: 3% 4%;
    font-family: radley;
    font-weight:lighter;
    font-size: 50px;
    color:#FBFADA;

}

.booking{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60%;
    width: 15%;
    background-color: #12372A;
    margin: 0;
    gap: 0;
}
.inside-text{
    position: absolute;
    font-family: EB;
    font-size: 30px;
    font-weight: 600;
    text-align: left;
    top: 5%;
    margin-left:4%;
    color: #12372A;
    /*color: #FBFADA;
    */transition: all 0.5s ease-in-out;
    /*opacity: 0;
     */
}
.inside-para{
    position: absolute;
    margin-left: 15%;
    margin-bottom: 10%;
    font-size: 23px;
    font-family: radley;
    /*max-height: 100px;
    */min-width: 100px;
    width: 80%;
    color: #12372A;
    /*color: #FBFADA;
    */transition: all 0.5s ease-in-out;
    /*opacity: 0;
     */
}
#modal-description{
    color: #12372A;
    font-size: 25px;
    font-family: radley;
}
/* .inside-para:hover, .inside-text:hover{
    opacity: 1;
} */
.book-text{
    height: min-content;
    width: min-content;
    background-color: transparent;
    font-family: radley;
    font-size: 30px;
    font-weight: 600;
    transform: rotate(-90deg);
    transform-origin: center;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transition:0.3 ease;
    -webkit-transition:0.3 ease;
    -moz-transition:0.3 ease;
    -ms-transition:0.3 ease;
    -o-transition:0.3 ease;
}
/* .book-text:hover{
    text-decoration: underline;
} */
.book-text::after {
    content: "";
    position: absolute;
    left: 50%;
    padding-bottom: 5%;
    bottom: 0;
    width: 0;
    height: 2px; 
    background-color: #FBFADA ; 
    transition: width 0.4s ease, left 0.4s ease; 
}

.book-text:hover::after {
    width: 100%;
    left: 0;
  }
.book-text:hover{
    cursor: pointer;
}

.product-pad{
   display: inline-flex;
   height: 400px;
   width: 350px;
   background-color: black;
   align-items: last baseline;
   justify-content: last baseline;
   opacity: 0;
   margin: 2%;
    flex-wrap: wrap;
   overflow: hidden;
   box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.4);
   border-top-left-radius: 5px;
   border-top-right-radius: 5px;
   border-bottom-left-radius: 13px;
   border-bottom-right-radius: 13px;
}
#services-pad h1{
   
}
#product-pad{
    margin-top: 10%;
}
.pad-bot{
    width: 100%;
    height: 30%;
    background-color: #ADBC9F;
    display: flex;
    align-items:center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
    gap: 0;
    font-size: 18px;
    font-weight: 500;
    z-index: -2;
}
.pad-bot *{
    flex: 1 1 100%;
}
.pad-bot p{
    font-size: 25px;
    font-family: radley;
    font-weight: 600;
    color:#12372A;
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
}
.fill-prod{
    position: absolute;
    bottom: 2.5%;
    height: 15%;
    width: 79%;
    border-radius: 8px;
    background-color: #12372A;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    z-index: -1;
    transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
}
.pad-bot:hover .fill-prod{
    transform: scale(4.5);
    -webkit-transform: scale(4.5);
    -moz-transform: scale(4.5);
    -ms-transform: scale(4.5);
    -o-transform: scale(4.5);
}
.pad-bot:hover p{
    color: #FBFADA;
}
.see-more{
    text-align: center;
    background-color: #12372A;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4%;
    padding-left: 30%;
    padding-right: 30%;
    font-size: 25px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.see-more:hover{
    text-decoration: underline;
}
.product-pad.in-view:nth-child(4){
    animation: slide-out3 0.5s forwards ;
    -webkit-animation: slide-out3 0.5s forwards ;
}
.product-pad.in-view:nth-child(3){
    animation: slide-out4 0.5s forwards ;
    -webkit-animation: slide-out4 0.5s forwards ;
}
.product-pad.in-view:nth-child(2){
    animation: slide-out1 0.8s forwards;
    -webkit-animation: slide-out1 0.8s forwards;
    animation-delay: 0.6s;
}

.product-pad.in-view:nth-child(5){
    animation: slide-out2 0.8s forwards;
    -webkit-animation: slide-out2 0.8s forwards;
    animation-delay: 0.6s;
}

@keyframes slide-out4 {
    from {
      opacity: 0;
      transform: translateX(50%);
      -webkit-transform: translateX(50%);
      -moz-transform: translateX(50%);
      -ms-transform: translateX(50%);
      -o-transform: translateX(50%);
}
    to {
      opacity: 1;
      transform: translateX(0); 
    }
  }
  @keyframes slide-out3 {
    from {
      opacity: 0;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
}
    to {
      opacity: 1;
      transform: translateX(0); 
    }
  }


@keyframes slide-out1 {
    from {
      opacity: 0;
      transform: translateX(100%);
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
}
    to {
      opacity: 1;
      transform: translateX(0); 
    }
  }

  @keyframes slide-out2 {
    from {
      opacity: 0;
      transform: translateX(-100%);
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      -o-transform: translateX(-100%);
}
    to {
      opacity: 1;
      transform: translateX(0); 
    }
  }

#testimonial-pad{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 250px;
}
#testimonial-image{
    height: 500px;
    width: 500px;
}
#testimonial-image img{
    height: 500px;
    width: 500px;
}
.testimonial-container{
    height: 500px;
    width: 452px;
    text-wrap: nowrap;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    flex: none;
    display: block;
}
.testimonial-container::-webkit-scrollbar{
    display: none;
}
.testimonial{
    height: 500px;
    width: 450px;
    display: inline-block;
    scroll-snap-align: start;
    text-wrap: wrap;
    text-align: center;
    justify-content: center;
}
.testimonial img{
    height: 90px;
    width: 90px;
}
.testimonial p{
    margin-top: 100px;
    font-size: 18px;
    width: 400px;
    text-align: center;
    align-items: center;
    justify-self: center;
}

.testimonial h2{
    color: white;
    margin-top: 30px;
}

#location{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ADBC9F;
    max-height: 900px;
    max-width: 1000px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    margin-top: 5%;
}
#location-pad{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    padding-bottom: 5%;
}
#location iframe{
    margin: 2%;
    margin-left: 6%;
}
#location h3{
    position: absolute;
    background-color: #ADBC9F;
    color: white;
    font-family: radley;
    padding: 1.5%;
    padding-left: 6%;
    border-radius: 30px;
    left: 0;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
iframe{
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
#lower-img{
    height:400px;
    width: 100%;
    max-width: 100%;
}
#lower-img .low-image{
    object-fit: cover;
    object-position: right;
    object-position: top;
}
#info-pad{
    display: flex;
    align-items:flex-start;
    justify-content: center;
    padding-top: 2%;
    background-color: #12372A;
}
@font-face {
    font-family: 'CursiveFont';
    src: url('fonts/Bristany.otf') format('opentype');
}
.info{
    font-family: 'CursiveFont', sans-serif;
    color: white;
    font-size: 30px;
    font-weight: 300;
    width: 20%;
    margin: 1%;
    display: flex;
    flex-wrap: wrap;
}
.info *{
    flex: 1 1 100%;
}

.info-heads{
    font-family: 'CursiveFont', sans-serif;
    color: white;
    font-size: 30px;
    font-weight: 300;
}
.info-para{
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-size: 15px;
    font-weight:100;
}
.info-options{
    margin-top: 6%;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-size: 20px;
    font-weight:600;
    cursor: pointer;
}

.info:nth-child(1){
    margin-left: 1.2%;
}
.info span{
    margin-right: 1.3%;
}
.social-pad{
    margin-top: 5%;
}
.social-pad a{
    text-decoration: none;
}
.contact-pad{
    min-height: 100%;
    width: 100%;
    position: fixed;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
}

.contact-pad.in-view{
    animation: pop 0.5s forwards ease-out;
    -webkit-animation: pop 0.5s forwards ease-out;
}


/* .form{
    position: fixed;
    min-height: 60%;
    width: 40%;
    background-color: #12372A;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 30px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.4);
} */
/* .contact input{
    font-size: 20px;
    background-color: transparent;
    border: transparent;
    border-bottom: rgb(255, 255, 255) 3px solid;
    height: 40%;
    width: 100%;
   
} */


  .form {
    background-color: #ADBC9F;
    border-radius: 20px;
    box-sizing: border-box;
    height: 650px;
    padding: 50px;
    width: 650px;
  }
  
  .title {
    color: black;
    font-family: sans-serif;
    font-size: 36px;
    font-weight: 600;
    margin-top: 30px;
  }
  
  .subtitle {
    color: black;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
  }
  
  .input-container {
    height: 50px;
    position: relative;
    width: 100%;
  }
  
  .ic1 {
    margin-top: 40px;
  }
  
  .ic2 {
    margin-top: 30px;
  }
  
  .input {
    background-color: #303245;
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: #eee;
    font-size: 18px;
    height: 100%;
    outline: 0;
    padding: 4px 20px 0;
    width: 100%;
  }
  
  .cut {
    background-color: #ADBC9F;
    border-radius: 10px;
    height: 20px;
    left: 20px;
    position: absolute;
    top: -20px;
    transform: translateY(0);
    transition: transform 200ms;
    width: 76px;
  }
  
  .cut-short {
    width: 50px;
  }
  
  .input:not(select):focus ~ .cut,
  .input:not(select):not(:placeholder-shown) ~ .cut {
    transform: translateY(8px);
  }
  
  .placeholder {
    color: #ADBC9F;
    font-family: sans-serif;
    left: 20px;
    line-height: 14px;
    pointer-events: none;
    position: absolute;
    transform-origin: 0 50%;
    transition: transform 200ms, color 200ms;
    top: 20px;
  }
  
  .input:not(select):focus ~ .placeholder,
  .input:not(select):not(:placeholder-shown) ~ .placeholder {
    transform: translateY(-30px) translateX(10px) scale(0.75);
  }
  
  .input:not(select):not(:placeholder-shown) ~ .placeholder {
    color: #808097;
  }
  
  .input:not(select):focus ~ .placeholder {
    color: #000000;
  }
  
  .submit {
    background-color: #303245;
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color:  #ffffff;
    cursor: pointer;
    font-size: 25px;
    font-weight: 500;
    height: 50px;
    margin-top: 38px;
    margin-left: 25%;
    outline: 0;
    text-align: center;
    width: 50%;
  }
  
  .submit:active {
    background-color: #303245;
  }
  
  #close{
    cursor: pointer;
    /* position: fixed;
    top: 18%;
    right: 33%; */
    background-color: transparent;
    border: transparent;
    position: relative;
    margin-top:0;
    height: fit-content;
    float:inline-end;
  }

  #service {
    background-color: #303245;
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: #eee;
    font-size: 18px;
    height: 100%;
    outline: 0;
    padding: 4px 20px 0;
    width: 100%;
  }
  
  .gallery{
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 10;
    top: 0%;
    transition: transform 0.5s ease;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -ms-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
} 
.gallery.in-view{
    animation: pop 0.5s forwards ease-out;
    -webkit-animation: pop 0.5s forwards ease-out;
}
  .grid-gallery {
    --size: 100px;
    display: grid;
    grid-template-columns: repeat(6, var(--size));
    grid-auto-rows: var(--size);
    gap: 5px;
    place-items: start center;
    margin-bottom: var(--size);
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
}
.grid-gallery img:nth-child(5n - 1) { 
    grid-column: 2 / span 2 
  }

.grid-gallery img {
transition: clip-path 0.25s, filter 0.75s;
}

.grid-gallery:has(img:hover) img:not(:hover) {
filter: brightness(0.5) contrast(0.5);
} 

.grid-gallery img:hover {
    clip-path: path("M0,0 C0,0 200,0 200,0 200,0 200,100 200,100 200,100 200,200 200,200 200,200 100,200 100,200 100,200 100,200 0,200 0,200 0,100 0,100 0,100 0,100 0,100Z");
    transition: clip-path 0.25s, filter 0.25s;
    z-index: 1;
  }
.grid-gallery img {
    width: calc(var(--size) * 2);
    height: calc(var(--size) * 2);
    object-fit: cover;
    grid-column: auto / span 2;
    border-radius: 5px;
    clip-path: path("M90,10 C100,0 100,0 110,10 190,90 190,90 190,90 200,100 200,100 190,110 190,110 110,190 110,190 100,200 100,200 90,190 90,190 10,110 10,110 0,100 0,100 10,90Z");
}

.grid-gallery a:focus {
    outline: 1px dashed black;
    outline-offset: -5px;
  }
.gallery-modal {
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 99999;
    color: white;
}

.gallery-modal[hidden] {
    display: none;
}

.gallery-content {
    background: #ADBC9F;
    padding: 20px;
    border-radius: 10px;
    max-height: 80vh;
    max-width: 80%;
    overflow-y:auto ;
    text-align: center;
    position: relative;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.gallery-content::-webkit-scrollbar{
    display: none;
}

.gallery-content img {
    max-width: 90%;
    max-height: 60vh;
    border-radius: 25px;
    margin-bottom: 20px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.gallery-details h2 {
    margin: 0 0 1px;
    font-size: 1.5rem;
    color: white;
}

.gallery-details p {
    margin-left: 25%;
    max-width: 50%;
    font-size: 1rem;
}

#close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.close-gallery{
    cursor: pointer;
    position: absolute;
    top: 5%;
    right: 5%;
    z-index: 11;
    background-color: transparent;
    border: none;
}
.choice-container.in-view{
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00000091;
    z-index: 10000;
}
.choice-container{
    display: none;
}
#inte-exte-gallery-choice{
    width: 400px;
    height: 180px;
    display: flex;
    flex-direction: row;
    gap: 0;
    /* position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%); */
    text-align: center;
    z-index: 10;
    font-family: radley;
    color: #FBFADA;
}
.gallery-choice{
    display: flex;
    height: 180px;
    width: 200px;
    background-color: #12372A;
    transition: all 0.8s;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    padding: 20px;
}
.gallery-choice:nth-child(1){
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    border: #ADBC9F 2px solid;
    border-right: none;
}
.gallery-choice:nth-child(2){
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    border: #ADBC9F 2px solid;
    border-left: none;
}

#inte-choice:hover + #exte-choice{
    width: 20px;
    font-size: 0px;
}

#inte-choice:hover{
    width: 400px;
    background-color: #ADBC9F;
    color: #12372A;
}

#inte-choice:has(+ #exte-choice:hover) {
    width: 20px;
    font-size: 0px;
}
#exte-choice:hover{
    width: 400px;
    background-color: #ADBC9F;
    color: #12372A;
}

/* .slanted-div {
    width: 1100px; 
    height: 700px; 
    background-color: #000000; 
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
  } */

.flex{
    display: flex;
    height: 100%;
    gap: 10px;
}
.flex.left{
    align-items: center;
    justify-content: flex-start;
    animation: expand 2s forwards;
    -webkit-animation: expand 2s forwards;
}

.flex.right{
    align-items:center;
    justify-content: flex-end;
    animation: expand 2s forwards;
    -webkit-animation: expand 2s forwards;
}
@keyframes expand{
    from{
        width: 0;
}
to{
    width: 100%;
}
}
@keyframes expand{
    from{
        width: -100%;
}
to{
    width: 100%;
}
}

#extra-gap{
    /* line-height: 1; */
    font-size: 24.61px;
}

.logo-lImg{
    position: absolute; 
    width:400px;
    height: 400px;
}

/* CSS adjustments for 1366px screen size */
@media (min-width: 800px) and (max-width: 1700px){
    .booking-pad{
        display: inline-flex;
        height: 350px;
        width: 300px;
        margin: 2%; 
    }
    
    @keyframes border-show{
        from{border: #ADBC9F solid 0px;}
        to{border: #ADBC9F solid 5px;}
    }
    
    .inside-text {
        font-size: 27px;
    }
    .book-text {
        font-size: 23px;
    }
    .inside-para {
        font-size: 20px;
    }
    .booking-pad .fill{
        z-index: -1;
    }
    
    .fill{
        height: 60%;
        width: 15%;
        background-color: #12372A;
        /*background-color: white;*/
        z-index: 10;
    }
    .booking-pad:hover .fill{
        scale: 30;
    }

    
.product-pad{
    display: inline-flex;
    height: 350px;
    width: 300px;
 }
 #services-pad h1{
    
 }
 #product-pad{
     margin-top: 10%;
 }
 .pad-bot{
     width: 100%;
     height: 30%;
     background-color: #ADBC9F;
     display: flex;
     align-items:center;
     justify-content: center;
     flex-wrap: wrap;
     padding-bottom: 5%;
     padding-left: 10%;
     padding-right: 10%;
     gap: 0;
     font-size: 18px;
     font-weight: 500;
     z-index: -2;
 }
 .see-more{
    height: 50px;
    width: 180px;
    margin-top: 0px;
    font-size: 22px !important;
 }
 .pad-bot *{
     flex: 1 1 100%;
 }
 .pad-bot p{
     font-size: 20px;
 }
 .pad-bot #extra-gap{
    font-size: 20px;
 }
 .fill-prod{
     position: absolute;
     bottom: 2.5%;
     height: 15%;
     width: 79%;
 }
 .pad-bot:hover .fill-prod{
     transform: scale(4.5);
     -webkit-transform: scale(4.5);
     -moz-transform: scale(4.5);
     -ms-transform: scale(4.5);
     -o-transform: scale(4.5);
 }
 .pad-bot:hover p{
     color: #FBFADA;
 }
 .see-more{
     text-align: center;
     background-color: #12372A;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 4%;
     padding-left: 30%;
     padding-right: 30%;
     font-size: 25px;
     font-weight: 600;
     cursor: pointer;
     border-radius: 8px;
     -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
     -ms-border-radius: 8px;
     -o-border-radius: 8px;
 }

    /* Navbar */
    .navbar-brand {
      font-size: 35px;  /* Default was 45px; mobile 22px → in between */
    }
    .navbar-links li {
      font-size: 24px;  /* Default 28px; mobile 20px */
    }

    .consultancy-button{
        padding: 20px;
        border-radius: 20px;
        position: fixed;
        z-index: 1;
        left: 30%;
        top: 52%;
        translate: -50% -50%;
        backdrop-filter: blur(5px);
        border: 3px #ffffff44 solid;
        color: white;
        font-size: 23px !important;
        font-weight: 700;
        background-color: #30324513;
        transition: all 0.3s;
        width: 330px !important;
        height: 100px;
        cursor: grab;
    }
}
  
        
@media (max-width: 768px) {
    body {
        font-size: 12px !important;
        line-height: 1.4;
        width: 100dvw;
        max-width: 100dvw;
    }
    .main{
        max-width: 100dvw;
        width: 100dvw;
    }
    .pads{
        overflow-x: hidden;
        width: 100%;
        background-color: #436850;
        /* padding: 2%; */

    }    
    .animation{
        top: 0;
        height: 100%;
        width: 100vw;
        pointer-events: none;
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
        -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
        transition: opacity 0.01s ease-in-out;
        -webkit-transition: opacity 0.01s ease-in-out;
        -moz-transition: opacity 0.01s ease-in-out;
        -ms-transition: opacity 0.01s ease-in-out;
        -o-transition: opacity 0.01s ease-in-out;
        position: fixed;
        object-fit: cover;
        object-position: right;}
        
    .the-space{
        height: 100dvh;
        width: 100%;
        min-height: 100dvh;
        min-width: 100%;
    }
    .navbar {
        padding: 10px 15px;
    }
    #navbar{
        position: sticky;
    }

    .navbar-brand {
        font-size: 22px;
    }

    .navbar-links li {
        font-size: 20px;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px;
    }

    .navbar-links a {
        font-size: 18px;
        padding: 5px 10px;
    }

    .consultancy-button{
        padding: 5px;
        border-radius: 20px;
        position: fixed;
        z-index: 1;
        left: 50%;
        top: 85%;
        translate: -50% -50%;
        backdrop-filter: blur(5px);
        border: 3px #ffffff44 solid;
        color: white;
        font-size: 18px;
        font-weight: 600;
        background-color: #30324513;
        transition: all 0.3s;
        width: 200px;
        height: 60px;
        cursor: grab;
    }
    .consultancy-button span{
        color:gold;
    }
    .consultancy-button.ini{
        display: none;
    }
    .consultancy-button.show{
        animation: scale-up 0.5s forwards;
    }
    .consultancy-button.hide{
        animation: scale-down1 0.5s forwards;
    }
    @keyframes scale-up{
        from{width: 0px;font-size: 0px;scale: 0;}
        20%{scale: 1;}
        70%{font-size: 0px;}
        to{width: 200px; font-size: 18px;}
    }
    
    @keyframes scale-down1{
        from{width: 200px; font-size: 18px;}
        30%{font-size: 0px;}
        80%{scale: 1;}
        to{width: 0px;font-size: 0px;scale: 0;}
    }
    

    .content {
        padding: 10px;
        margin-top: 60px;
    }

    h1 {
        font-size: 24px;
        text-align: center;
    }

    h2 {
        font-size: 20px;
        text-align: center;
    }

    .booking-pad {
        width: 40%;
        height: 25vh;
        padding-right: 5%;
        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
    }

    .inside-text,
    .inside-para {
        font-size: 1.5vh;
    }
    .inside-para {
        margin-top: 8vh;
        margin-left: 30%;
        width: 65%;
    }
    .booking{
        height: 50%;
        width: 25%;
    }
    .fill{
        height: 50%;
        width: 25%;
    }
    .book-text {
        font-size: 22px;
        transform: rotate(90);
        text-align: center;
        margin: 10px 0;
        -webkit-transform: rotate(90);
        -moz-transform: rotate(90);
        -ms-transform: rotate(90);
        -o-transform: rotate(90);
}

    .product-pad {
        height: 210px;
        width: 160px;
        max-height: 210px;
        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
    }
    .pad-bot{
        height: 40%;
        width: 100%;
        padding-bottom: 5%;
        
    }
    .pad-bot p,.see-more,#extra-gap{
        font-size: 16px;
        line-height: 1;
    }
    .pad-bot p{
        /* margin-top: -20%; */
    }
    .see-more{
        height: 40px;
        width: 50%;
        max-width: 50%;
        text-wrap: nowrap;
    }
    .product-pad img{
        width: 100%;
        height: 60%;
    }
    .fill-prod{
        height: 30px;
        width: 40%;
        max-width: 40%;
        margin-bottom: 8%;
    }
    #testimonial-pad{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #testimonial-image{
        display: none;
    }
    #testimonial-image img{
        height: 500px;
        width: 500px;
    }
    .testimonial-container{
        height: 350px;
        width: 300px;
        text-wrap: nowrap;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        flex: none;
        display: block;
        text-align: center;
        display: flex;
        flex-direction: row;
        gap: 30px;
    }
    .testimonial-container::-webkit-scrollbar{
        display: none;
    }
    .testimonial{
        height: 350px;
        width: 300px;
        display: flex;
        flex-direction: column;
        scroll-snap-align: start;
        text-wrap: wrap;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    .testimonial img{
        height: 50px;
        width: 50px;
    }
    .testimonial p{
        margin-top: 70px;
        font-size: 16px;
        width: 290px;
        text-align: center;
        align-items: center;
        justify-self: center;
    }
    
    
    .testimonial h2{
        color: white;
        margin-top: 10px;
    }

    #location {
        max-width: 100%;
        height: 100%;
        padding-top: 3%;
        padding-right: 3%;
        padding-bottom: 3%;
        border-radius: 50px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        -ms-border-radius: 50px;
        -o-border-radius: 50px;
}

    iframe {
        width: 100vw;
        height: 65vh;
        min-height: 65vh;
        margin-right: 20%;
        border-radius: 50px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        -ms-border-radius: 50px;
        -o-border-radius: 50px;
}
    #location h3{
        top: 0%;
        padding: 3%;
        transform: translate(46%,0%);
        color: white;
    }

    .social-pad {
        margin-top: 20px;
    }

    .contact-pad {
        /* padding: 10px; */
        /* height: 100vh;
        width: 100vw; */
        overflow: hidden;
    }
    
    .form{
        scale: 0.95;
        margin-top: 22%;
        height: fit-content;
        width: 100%;
    }
    #close{
        margin-top: 0;
    }
    .submit {
        margin-top: 10%;
        font-size: 15px;
    }
      #service {
        background-color: #303245;
        border-radius: 12px;
        border: 0;
        box-sizing: border-box;
        color: #eee;
        font-size: 15px;
        height: 100%;       
        outline: 0;
        padding: 4px 20px 0;
        width: 100%;
      }

    #lower-img{
        height: 200px;
        max-height: 20%;
        width: 100vw;
        overflow: hidden;
    }

    .logo-lImg{
        height: 200px;
        width: 200px;
    }

    #lower-img .low-image{
        object-fit: contain;
        object-position: left;
    }

    .info{
        padding-left: 0%;
        width: 100%;
        font-size: 16px;
        text-align: left;
    }
    /* .info .info-para{
        width: 10%;
    } */
    #info-pad{
        display: block;
        text-align: left;
        padding-bottom: 5%;
    }

    .info-heads{
        font-size: 25px;
        margin-top: 5%;
    }
    .info-options{
        font-size: 13.5px;
        margin-top: 3%;
    }
    .info-para{
        font-size: 13px;

    }
    .info-para.about{
        /* padding-left: 5%; */
        padding-right: 5%;
        max-width: 50%;
    }
    .gallery{
        /* overflow:scroll; */
    }
    .grid-gallery {
        --size: 100px;
        display: grid;
        grid-template-columns: repeat(6, var(--size));
        grid-auto-rows: var(--size);
        gap: 1px;
        /* place-items: start center; */
        place-items: start end;
        margin-bottom: var(--size);
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        min-height: 70vh;
        max-height: 70vh;
        height: 70vh;
        margin-top: 50%;
        overflow-x: scroll;
}
.gallery-modal {
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    height: 60vh;
    max-height: 60vh;
    width: 100vw;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 25%;
    z-index: 9999;
    color: white;
}

.gallery-content {
    background: #ADBC9F;
    padding: 20px;
    border-radius: 10px;
    height: 60vh;
    max-width: 100%;
    text-align: center;
    position: relative;
    overflow-y: scroll;
}

.gallery-content img {
    max-width: 95%;
    max-height: 70vh;
    border-radius: 25px;
    margin-top: 10%;
    margin-bottom: 10px;
    /* -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px; */
}
.close-gallery{
    top: 0;
    right: 0;
}
#close-modal{
    margin-left: 10%;
    /* display: none !important; */
}

.gallery-details h2 {
    margin: 0 0 1px;
    font-size: 25px;
    color: white;
}

.gallery-details #modal-description {
    margin: 5%;
    text-align: center;
    max-width: 100%;
    font-size:15px !important;
}
.warning{
    display: none;
}
#inte-exte-gallery-choice{
    width: 280px;
    height: 100px;
    display: flex;
    flex-direction: row;
    gap: 0;
    /* position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%); */
    text-align: center;
    z-index: 10;
    font-family: radley;
    color: #FBFADA;
}
.gallery-choice{
    display: flex;
    height: 100px;
    width: 140px;
    background-color: #12372A;
    transition: all 0.8s;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    padding: 20px;
}
.gallery-choice:nth-child(1){
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    border: #ADBC9F 2px solid;

}
.gallery-choice:nth-child(2){
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    border: #ADBC9F 2px solid;
    border-left: none;
}

}


@media (max-width: 300px) {
    html{
        overflow: hidden;
        overflow-x: hidden;
    }
    .warning{
        height: 100%;
        width: 100%;
        background-color: black;
        position: fixed;
        z-index: 1000;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .warning p{
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}