@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*{
    font-family: "Work Sans", sans-serif;
}
html{
	scroll-behavior: smooth;
}
a.cursor-pointer * {
  cursor: pointer !important;
}
@keyframes spinner-grow {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0.5;
    }
}

.spinner-grow {
    animation: spinner-grow 0.75s linear infinite;
}

 @keyframes wave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.wave-animation {
  animation: wave 1.5s ease-in-out infinite;
}

  .wave-animation {
    animation: wave 1.5s ease-in-out infinite;
  }
  
.menu>li{
    margin-left: 15px;
    padding: 12px 20px;
    transition: 0.5s ease-in-out;
}
.menu>li:hover{
    background-color: #F6F5F2;
    border-radius: 30px;
}
.active{
    background-color: #F6F5F2;
    border-radius: 30px;
}
.submenu{
   visibility: hidden;
   opacity: 0; 
   transition: 0.5s ease-in-out;
}
.menu>li:nth-child(2):hover .submenu{
  visibility: visible;
  opacity: 1;
}
.fa-angle-down{
  transition: 0.5s ease-in-out;
}
.menu>li:nth-child(2):hover .fa-angle-down{
  transform: rotate(180deg);
}
.submenu>li{
  padding: 15px;
  transition: 0.5s ease-in-out;
  border:1px solid #F6F5F2
}
.submenu > li:first-child:hover {
  padding: 15px;
  background: #B4E717;
  border: 1px solid #F6F5F2;
}
.submenu>li:hover{
  background: #B4E717;
  border-bottom:1px solid #F6F5F2
}
.dropdown>li{
  padding:15px
}


.mobileDropdown li{
  padding: 15px;
}

.mobileDropdown li:hover{
 background: #B4E717;
}

.wrapper {
  width: 240px;
  height: 240px;
  background: #B4E717;
  position: relative;
  overflow: hidden;
 border-radius: 15px;
}

.round-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.round-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* or use cover based on shape */
  display: block;
}




/* IMAGE WITH SAME MASK */
/* .image-layer {
  position: absolute;
  width:200px;
  height:200px;
  inset: 0;
  background-image: url('../images/GettyImages-2180893170.webp');
  background-size: cover;
  background-position: center;

  -webkit-mask-image: url('../images/mask-sevice-2.2.png');
  mask-image: url('../images/mask-sevice-2.2.png');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;

  z-index: 2;
} */

.image-layer{
  position: absolute;
  width:200px;
  height:200px;
  inset: 0;
  background-size: cover;
  background-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;

  z-index: 2;
}



  .blinking-cursor {
      display: inline-block;
      width: 1px;
      height: 1em;
      background-color: #1C4B42;
      margin-left: 3px;
      animation: blink 0.7s steps(1) infinite;
      vertical-align: middle;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    .email::placeholder{
      color:#919191
    }

   
  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.error {
    display: block;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.5s ease, opacity 0.5s ease;
}

.error.show {
    height: 16px; /* Adjust based on your font-size */
    opacity: 1;
}


.my-swal-popup {
    font-size: 14px !important;
    padding: 16px 12px !important;
    max-width: 300px;
}

.my-swal-icon {
    transform: scale(0.6); /* Make icon smaller */
    margin: 0 auto 10px auto;
}

.my-swal-title {
    font-size: 16px !important;
    margin-bottom: 8px;
}

.my-swal-html {
    font-size: 13px;
    text-align: left;
    line-height: 1.4;
}

.my-swal-button {
    font-size: 13px !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    background-color: #1e4b42;
}


.modBackOff {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.modBackOpen {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.modelBoxOff {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.9);
  transition: all 0.3s ease;
}

.modelBoxOpen {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
}

.developer-animation-container {
    position: relative;
    width: 100%;
    height: 60px;
    overflow: hidden;
  }

  
 

  .developer-text {
    
    font-size: 18px;
    font-weight: 800;
    color:#1C4B42;
    
    
  }

  

  @keyframes slideInLeft {
    0% {
      left: -200px;
      opacity: 0;
    }
    40% {
      left: 30%;
      opacity: 1;
    }
    60% {
      left: 50%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
    100% {
      opacity: 0;
    }
  }

  @keyframes slideInRight {
    0% {
      right: -200px;
      opacity: 0;
    }
    40% {
      right: 30%;
      opacity: 1;
    }
    60% {
      right: 50%;
      opacity: 1;
      transform: translate(50%, -50%);
    }
    100% {
      opacity: 0;
    }
  }

  @media screen and (width: 1024px) and (height: 1366px) {
    .ipad-pro-fix {
        bottom: -15% !important; /* example adjustment */
        background-color: rgba(0, 0, 0, 0.05); /* just for testing */
    }
}