@font-face {
  font-family: SF Pro; /* set name */
  src: url(SF-Pro.ttf); /* url of the font */
}
@font-face {
  font-family: SF Pro Display; /* set name */
  src: url(SF-Pro-Display-Bold.otf); /* url of the font */
}




/*header*/
.top {
    display: flex !important;
    flex-direction: row;
    align-items: center;

}


.logo {
    display: flex;
    align-items: center;
    margin-left: 5vw;

}

.logo img {
    width: 5vw;
    height: 5vw;
}


.sections {
    display: flex;
    text-decoration: none;
    text-align: center;
    transform: translateX(-2vw);
    margin: 0 auto;
    padding: 0 auto;
    gap: 3vw;
    font-family: 'SF Pro Display';
    color: black;
 position: relative;


}

.sections a {
    animation-name: flashcolour;
    animation-duration: 1s;
display: inline-block; 
    animation-timing-function: ease-in-out; 


}

a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: black;
}

.book {
    margin-right: 3vw;
    font-family: 'SF Pro Display';
    background-color: black;
    border-radius: 30px;
    padding:1vw;
    
}
.link1 {
  animation-delay: 0s;     /* Starts immediately */
}
.link2 {
  animation-delay: 0.15s;  /* Starts 0.15 seconds later */
}
.link3 {
  animation-delay: 0.30s;  /* Starts 0.30 seconds later */
}
.link4 {
  animation-delay: 0.45s;  /* Starts 0.45 seconds later */
}

.book a{
    color: white;
}

.dot {
  height: 25px;
  width: 25px;
  background-color: white;
  border: 0.0001px solid rgba(0, 0, 0, 0.279);
  display: inline-block;
  position: absolute;
  margin-left: 1.5vw;
 animation: flash 10s infinite;
  margin-bottom: 0.5vw;
  animation-delay: 2s;
 animation-timing-function: ease-out;
  opacity: 0;


}
@keyframes flashcolour {
 0% {
    opacity: 0;

  }
  50% {
    /* At 50%, move the element up by 10 pixels (adjust '10px' as needed) */
    transform: translateY(-30px)
}
100% {
          transform: translateY(0px);
}
}

@keyframes flash {
     0% {
         opacity: 0;
         transform: scale(0); 
    }
    2.5% { /* 0.25 seconds mark */
        opacity: 1;
        transform: scale(2);
    }
    5% { /* 0.5 seconds mark */
      opacity: 0;
      transform: scale(0); 
    }

    /* Flash 2: 0.55s to 1.05s (5.5% to 10.5%) */
    5.7% { /* 0.55 seconds mark */
      opacity: 1;
      border-radius: 0;
      transform: scale(3.5);
    }

    10.5% { /* ~1 second mark */
      transform: scale(0); 
      opacity: 0;
      /* display: none is not good for continuous animation loops; use opacity */
    }

    /* --- THE WAIT TIME --- */
    /* From 10.5% to 99.9%, the element stays invisible (for about 9 seconds) */
    99.9% {
        opacity: 0;
        transform: scale(0);
    }
    
    100% {
      /* Jumps back to 0% state right before the 10s mark is hit */
      opacity: 0;
      transform: scale(0);
    }
}




.frontpic{
  width:100vw;
  height:85vh;
  background-image: url('IMG_6438.jpg');
  background-size: contain;
  background-position: center;
  scale: 0.98;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.frontpic h5{
  text-align: center;
  color: white;
  font-size: 70px;
  padding: 0 auto;
  margin: 0 auto;
  font-weight: 300;
}

.frontpic p{
  text-align: center;
  color: white;
  font-size: 20px;
  padding: 0 auto;
  margin: 0 auto;
  font-weight: 300;
  font-family: 'SF Pro Display', sans-serif;
}
/*header end*/

/*About us*/
.servtitle {
  width:100vw;
  height: 20vh;
}

.servtitle img {
  display: none;
}

.servtitle h4 {
  padding-left: 5vw;
  font-size:40px;
  font-weight: 300;
}
.words{
  width: 100vw;
  height:80vh;
  border:2px solid black;
  
}

.block {
  width:50%;
  text-align: center;
  padding:0 auto;
  margin:0 auto;
  background-color: white;
  border: 2px solid black;
  padding:1vw;
  margin-top: 10%;
}

.block h4 {
  font-size: 45px;
  padding:10vh 0 0 0;
  margin:0 0 1vh 0;
 font-weight: 300;
}
.block p {
  width:50%;
  padding:0 auto;
  margin:0 auto;
}

.rect{
  width: 50%;
  height:41.7%;
  padding:1vw;
background-color: rgb(255, 255, 255);
  display: inline-block;
  position: absolute;
  transform: translate(-26vw,-43.5vh);
  animation: flash2 forwards;
  animation-duration:0.5s;
}

@keyframes flash2{
  0% {
    background-color: black;
  }

  50% {
    background-color: white;
  }

  75% {
    background-color: rgb(0, 0, 0);
  }

  100%{
    display: none;
  }
}

 /*About Us Ends */
.line{
  display: flex;
  flex-direction: column;
}

/* --- CLOSED STATE (Default) --- */
.starts {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(43vw, -85vh);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  border: 0.1px solid rgb(66, 64, 64);
  cursor: pointer;
  z-index: 100001; 
  
  /* Show "MENU" text */
  font-family: 'SF Pro Display', sans-serif;
  color: black;
  font-size: 25px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

/* The Image (Hidden by default) */
.starts::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images (1).png");
  background-size: 40%; /* Adjust size of logo within the circle */
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  opacity: 0; 
  transition: opacity 0.3s ease-in-out;
}


/* --- OPEN STATE (.active) --- */
.starts.active {
  color: transparent; 
  background-color: rgba(229, 229, 229, 0.919);

}

.starts.active::after {
  /* Show the logo image */
  opacity: 1;
}
 
 .s2 {
    width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
z-index: 99999;
  background-color: rgba(192, 192, 192, 0.919);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5vh;
  font-size: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease-in;
 }
.s2.active,.s1.active {
  opacity: 1;
  pointer-events: auto;

}

.s2 a{
  animation-delay: 2s;
  animation: menu 2s forwards;

}

.s2 img {
  width:10vw;
  height: 20vh;
   background-color: transparent;
   margin-top: -30vh;
   margin-bottom: 10vh;

}
 @keyframes menu {
  0%{
    transform: translateY(100vh);
    margin-bottom: 200vh;
  }

  100% {
       transform: translateY(0vh);
       margin-bottom: 0;
  }
 }

/* Base styling for menu links to accommodate the line */


/* Creating the animated line */
.s2 a::after{
  content: '';
  position: absolute;
  width:100%;
  left:0;
  bottom: 0;     
  opacity: 0; 
  margin-top: 1vh;
  height: 2.5px;
  background: linear-gradient(
    to right, 
    transparent 0%, 
    rgb(255, 255, 255) 50%,
    transparent 100%  
  );
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
 /* Initial color */
}

/* Animate expansion and color change on hover */
.s2 a:hover::after {
  background-color: #007bff; /* Changes to blue (or your choice) */
}

/* Optional: Active state for the line when menu is open */
.s2.active a::after {
  animation: lineDraw 5s cubic-bezier(0.2, 0, 0.1, 0.2) infinite;
  animation-delay: 2s;
}


@keyframes lineDraw {
0% {
    transform: scaleX(0);
    transform-origin: left;
    opacity:1;
  }
  10%, 15% {
    transform: scaleX(1);
    transform-origin: left;
  }
  16% {
    transform-origin: right; /* Switch origin to "pull" the line to the right */
  }
  30% {
    transform: scaleX(0);
    transform-origin: right;
      opacity:1;
  }

  99.9%{
        transform: scaleX(0);
    transform-origin: left;
    opacity:0
  }

  100%{
            transform: scaleX(0);
    transform-origin: left;
    opacity:0
  }
}

/*menu ends*/

/*Services*/


.aboutustitle {
  font-size: 50px;
  padding-left: 4vw;
}

.aboutustitle h5 {
  font-weight: 100;
}
.bookingimg{
  width:50%;
  border: 2px black solid;  
  
}
.booking {
  width: 90vw;
  border: 0.1px black solid;
  padding: 0 auto;
  margin: 0 auto;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-bottom: 5vh;
}

.bookingwords {
  width:50%;
  right: 0;
  text-align: left;
  padding:2vw;
  border: 2px black solid;
}

.bookingwords h5 {
  font-size: 30px;
  font-weight: 100;
}

/*Services Ends*/

/*serives2*/
.biglogo {
  width: 100vw;
  height: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.biglogo img {
  width: 10vw;
  height: 20vh;
  margin: 0 auto;
  padding: 0 auto;
}

.biglogo h5{
  font-size: 50px;
  font-weight: 100;
  padding: 0;
  margin: 0;
}

.threepics {
  width: 100vw;
  height: 40vh;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 7vh;
}

.thepics {
  width: 20vw;
  height: 100%;
  border: 2px solid black;
  
}
.thepics img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 60%;
}

.photo{
  width: 70vw;
  height: 25vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding:0 auto;
  margin: 0 auto;
  margin-bottom: 10vh;
}

.photowords {
  width: 50%;
  padding: 2vw;
  display: flex;
  flex-direction: column;
  gap: 0; 
  font-family: 'SF Pro Display', sans-serif;
}
.photowords h5 {
  font-size: 25px;
  font-family: 'SF Pro Display', sans-serif;
  margin-bottom: 1vh;
}

.photowords p{
  font-family: 'SF Pro', sans-serif;
  font-weight: 300;
  transform: skewX(-10deg);
}
.photoimg {
  width: 50%;
  height: 15vh;
  background-image: url("2956744.png");
  background-repeat: no-repeat;
  background-size: 10vw, 5vh;
  background-position: 100% 50% ;
  perspective: 1000px;
 display: inline-block;
}

.line2 {
  display: none;
}
.service{
  width: 100vw;
  display: flex;
  flex-direction: row;
  margin-top: 5vh;
  gap: 0;

}

.per {
  width: 30vw;
  margin: 0 auto;
  padding: 0 auto;
}

.per h5 {
  font-size: 25px;
  font-family: 'SF Pro Display', sans-serif;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 5vh;
  letter-spacing: 0.2vw;
}

.per h4{
  font-size: 20px;
  font-family: 'SF Pro', sans-serif;
  text-align: center;
  margin: auto;
  padding-top: 5vh;
  font-weight: 300;
  transform: skewX(-10deg);
}


.jots {
  font-family: 'SF Pro';
  display: flex;
  flex-direction: column;
}

.jots p{
  margin: 1vh 0 0 0;
  padding-bottom: 0;
  gap: 0;

}

.catalog {
  display: none;
}

.wave-container {
  position: absolute;
  width: 37.5vw;
  height: 10px; 
margin-left: -15vw;
  margin-top: -6vh;
 display: inline-block;
}


/* Optional: Adding a background fill */
/* .wave-path { fill: #add8e6; } */

@media (max-width: 500px) {
  .catalog{
    display: block !important;
    width: 100%;
    height: 10vh;
    background-color: white;
    z-index: 9999999;
    top:0vh ;
    left: 0vw;
    position: relative !important;

  }


.wave-container {
  width: 36vw;
  display: inline-block;
  height: 5vh; 
  position: absolute;
  margin-left: -15vw;
  margin-top: 10vh;
  rotate: -10deg;
}

.wave-container path{
    stroke-width:10 !important;
}

  

  .top{
    display: none !important;

  }

  .dot {
  transform: translateX(-30vw);
  margin: 0;
  position: absolute;
}
.frontpic {
  scale:0.98;
  left: 0;
  margin: 0;
  padding: 1vw;
}

.logo {
  gap: 5vw;
}

  .logo img {
    scale: 3.0;
    position: relative;
  }

  /* --- CLOSED STATE (Default) --- */
 .art {
  position: relative;
  transform: translate(80vw, -7.5vh);
  width: 50px;
  height: 50px;
  background-color: transparent;
  cursor: pointer;
  z-index: 100001; 
  
  /* Show "MENU" text */
  font-family: 'SF Pro Display', sans-serif;
  color: black;
  font-size: 25px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border: none;
}

/* The Image (Hidden by default) */
 .art::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images (1).png");
  background-size: 40%; /* Adjust size of logo within the circle */
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  opacity: 0; 
  transition: opacity 0.3s ease-in-out;
}


/* --- OPEN STATE (.active) --- */
.art.ative {
  color: transparent; 
  background-color: rgba(244, 241, 241, 0.883);

}
 .art.active::after {
  /* Show the logo image */
  opacity: 1;
}
 
.s1 {
    width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
z-index: 99999;
  background-color: rgba(255, 254, 254, 0.943);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5vh;
  font-size: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease-in;
 }
.s1.active {
  opacity: 1;
  pointer-events: auto;

}

 .s1 a {
  animation-delay: 2s;
  animation: menu 2s forwards;
  font-family: 'SF Pro';
  font-weight: 500;
 text-transform: uppercase !important;

}

 .s1 img {
  width:40vw;
  height: 23vh;
   background-color: transparent;
   margin-top: -30vh;
   margin-bottom: 10vh;

}
 @keyframes menu {
  0%{
    transform: translateY(100vh);
    margin-bottom: 200vh;
  }

  100% {
       transform: translateY(0vh);
       margin-bottom: 0;
  }
 }

/* Base styling for menu links to accommodate the line */


/* Creating the animated line */
 .s1 a::after {
  content: '';
  position: absolute;
  width:100%;
  left:0;
  bottom: 0;     
  opacity: 0; 
  margin-top: 1vh;
  height: 2.5px;
  background: linear-gradient(
    to right, 
    transparent 0%, 
rgb(252, 205, 18) 50%,
    transparent 100%  
  );
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
 /* Initial color */


/* Animate expansion and color change on hover */
 .s1 a:hover::after {
  background-color: #007bff; /* Changes to blue (or your choice) */
}

/* Optional: Active state for the line when menu is open */
 .s1 a::after {
  animation: lineDraw 5s cubic-bezier(0.2, 0, 0.1, 0.2) infinite !important;
  animation-delay: 2s;
}

@keyframes lineDraw {
0% {
    transform: scaleX(0);
    transform-origin: left;
    opacity:1;
  }
  10%, 15% {
    transform: scaleX(1);
    transform-origin: left;
  }
  16% {
    transform-origin: right; /* Switch origin to "pull" the line to the right */
  }
  30% {
    transform: scaleX(0);
    transform-origin: right;
      opacity:1;
  }

  99.9%{
        transform: scaleX(0);
    transform-origin: left;
    opacity:0
  }

  100%{
            transform: scaleX(0);
    transform-origin: left;
    opacity:0
  }
}

.msocials{
  scale:0.2;
  bottom: 7vh;
  left: -10vw;
  position: absolute;
}
/*Menu done*/

.service {
  flex-direction: column;
  gap: 3vh;
  margin-top: 5vh;

}
.per{
  width: 100vw;
  padding: 0 !important;
padding-bottom: 5vh !important;
border: none !important;
border-bottom: 0.1px solid rgb(0, 0, 0) !important;
}
.threepics {
  display: grid;
  width: 100vw;
  height: fit-content;
  position: relative;
  /* Creates 2 columns and 2 rows */
  grid-template-columns: repeat(2, 0.5fr); 
  grid-template-rows: repeat(2, 0.5fr);
  gap: 10px;
  column-gap: 0;
  margin-bottom: 5vh;
transform: translateX(-1vw);
}

/* Optional: Style the items so you can see them */
.thepics {
  width:45vw;
  height: 25vh;
  margin-right: 0;
  border: 1px solid black;
  background-color: #ffffff;
}

.thepics img{
  object-position: 0% 50%;
}

.biglogo {
  width: 50vw;
}

.biglogo img{
  position: absolute;
  transform: translate(70vw, -2vh);
  width: 40vw;
  scale:0.8;

}

.line{
  display: none;
}

.photo {
  width: 85vw;
  padding-bottom: 0vh;
  border-top: 0.1px black solid;
}

.photoimg{
  background-size: 20vw, 10vh;
  perspective: 1000px; 
}


.line2 {
display: block;
border: none;           /* Removes the default border */
  height: 0.1px;            /* Sets the thickness */
  background-color: blue; /* Sets the color */
  width: 40%;  
  margin: 0 auto;           /* Sets the width */
  margin-bottom: 10vh; 


}



/*About us*/

.words{
  width: 100vw;
  height:80vh;
  border:2px solid black;
  
}

.block {
  width:75%;
  text-align: center;
  padding:0 auto;
  margin:0 auto;
  background-color: white;
  border: 2px solid black;
  padding:1vw;
  margin-top: 10%;
}

.block h4 {
  font-size: 45px;
  padding:10vh 0 0 0;
  margin:0 0 1vh 0;
 font-weight: 300;
}
.block p {
  width:70%;
  padding:0 auto;
  margin:0 auto;
}

.servtitle {
  width:100vw;
  height: 15vh;
  margin-bottom: 10vh;  
  margin-top: 0;
  padding-top: 0;
}

.servtitle h4{
  position: relative;
  width:50vw;

}

.servtitle img {
  display: block;
  right: 0;
  transform:translateY(-21.5vh);
  height: 20vh;
  width: 30vw;
  position: absolute;
}

.rect{
 display: none;
}

