
@import url('https://fonts.googleapis.com/css2?family=Petit+Formal+Script&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.mobile_web-one{
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    height: 400px;
    background: rgb(34,153,170);
    background: linear-gradient(80deg, rgba(34,153,170,1) 0%, rgba(1,12,36,1) 100%);
}

.mobile_web-one .about-molecule-one{
    width: 500px;
    height: 500px;
    position: absolute;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0px;
}

.mobile_web-one .about-molecule-two{
    width: 500px;
    height: 500px;
    position: absolute;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0px;
    top: 0px;
}

.mobile_web_main h1{
    color: white;
    font-weight: 200;
    text-transform: uppercase;
}

.btn-carrer{
    scrollbar-width: 20px;
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  .mobile_web-link {
    max-width: 190px;
    display: flex;
    gap: 8px;
    padding: 13px 25px;
    border: 2px solid rgba(255, 255, 255, 1);
    text-decoration: none;
    color: inherit;
  }
  .mobile_web-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 19px;
    margin: auto 0;
  }

  .mobile_web-studio{
    color: white;
  }
  .custom-notification-box{
    display: none;  
  }
  
  .notification-box{
      display: none;
  }

  /* Ensure the link covers the entire box */
.icon-box {
    background-color: #4ca5b3;
    width: 300px;
    height: 50px;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 15px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); */
    overflow: hidden;
    transition: height 0.3s ease, padding 0.3s ease;
    text-decoration: none; /* Remove underline from link */
    color: inherit; /* Inherit text color */
  }
  
  /* Icon and Text */
  .icon-box img {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .icon-box h3 {
    color: white;
    font-size: 12px;
    margin: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    text-align: center;
    pointer-events: none;
  }
  
  /* Hover Effect */
  .icon-box:hover {
    height: 80px;
    padding: 10px 15px;
  }
  
  .icon-box:hover img {
    opacity: 0;
    transform: translateY(10px);
  }
  
  .icon-box:hover h3 {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Adjust link hover effects */
  .icon-box:hover {
    text-decoration: none; /* Ensure no underline on hover */
  }


.hpc-heading h1{
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: #4ca5b3;
}

.hpc .paragraph{
  display: flex;
  align-items: center;
  justify-content: center;
}

.paragraph p{
  text-align: justify;
  width: 76%;
  font-size: 16px;
  line-height: 2;
}

.mobile-web-info h1{
    font-size: 3rem;
    font-weight: 200;
    color: #4ca5b3;
    width: 84%;
}

.mobile-web-info p{
    text-align: justify;
    width: 84%;
    line-height: 2;
}

.visual-border-main{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  
  .visual-border {
    width: 100%;
    height: 2px;
    background-color: #000000;
    margin-top: 115px;
  }
  


  @media (max-width: 768px){
    .mobile_web-one .about-molecule-two {
        display: none;
      }
    .mobile_web-one .about-molecule-one {
        display: none;
      }
      .mobile_web_section_one{
        display: flex;
        flex-direction: column;
      }
      .mobile-web-info p {
        text-align: justify;
        width: 100%;
        margin: 0px;
        font-size: 15px;
    }
    .mobile-web-info h1 {
        font-size: 2rem;
        font-weight: 200;
        color: #4ca5b3;
        width: 100%;
        margin-top: 30px;
    }
    .visual-border{
        margin-top: 15px;
    }
    .container-fluid {
        padding-top: 50px;
    }
}

/* service title animation */

.services h1 {
  color: #2299AA;
  font-size: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 5px; /* Adjust space between letters */
}

.services h1 span {
  display: inline-block;
  animation: bounceLetter 1s ease-in-out infinite;
}

/* Bounce animation */
@keyframes bounceLetter {
  0% {
      transform: translateY(0);
  }
  30% {
      transform: translateY(-10px); /* Move up */
  }
  60% {
      transform: translateY(0); /* Back to the original position */
  }
  80% {
      transform: translateY(-9px); /* Smaller bounce */
  }
  100% {
      transform: translateY(0); /* Reset to original position */
  }
}

/* Add a delay to each letter for sequential animation */
.services h1 span:nth-child(1) { animation-delay: 0s; }
.services h1 span:nth-child(2) { animation-delay: 1s; }
.services h1 span:nth-child(3) { animation-delay: 2s; }
.services h1 span:nth-child(4) { animation-delay: 3s; }
.services h1 span:nth-child(5) { animation-delay: 4s; }
.services h1 span:nth-child(6) { animation-delay: 5s; }
.services h1 span:nth-child(7) { animation-delay: 6s; }
.services h1 span:nth-child(8) { animation-delay: 7s; }

/* Adjust animation timing */
.services h1 span {
  animation-duration: 8s; /* Total duration to match delays */
  animation-iteration-count: infinite;
}


/* section two */

.mobile_web_section_two{
  width: 100%;
  height: 100%;
}

.project-showcase h2{
  font-size: 40px;
  text-align: center;
  font-family: "Poppins", serif;
  font-weight: 400;
  width: 50%;
  text-transform: uppercase;
  margin: 50px;
  color: #4ca5b3;
}
@media screen and (max-width:768px){
  .project-showcase h2{
    font-size: 26px;
  }
}


/* card */

.project-info-card{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.divider-bar {
  background: rgb(1, 12, 36);
  background: linear-gradient(270deg, rgba(1, 12, 36, 1) 0%, rgba(34, 153, 170, 1) 100%);
  height: 60px;
  margin: 10px 0;
  width: 100%;
}

/* General card container */
.card {
  max-width: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

/* Hover effects */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Image wrapper with overlay */
.card-image-wrapper {
  position: relative;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Zoom-in effect on hover */
.card:hover .card-image {
  transform: scale(1.1);
}

/* Overlay */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show overlay on hover */
.card:hover .card-overlay {
  opacity: 1;
}

/* Overlay link */
.card-link {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  padding: 10px 20px;
  border: 2px solid #fff;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.card-link:hover {
  background: #fff;
  color: #000;
}

/* Card content */
.card-content {
  padding: 16px;
  text-align: center;
}

.card-title {
  font-size: 1.4em;
  margin: 8px 0;
  color: #333;
}

.card-description {
  text-align: justify;
  font-size: 1em;
  color: #666;
  line-height: 1.6;
}
.custom-padding{
  padding-left: 10%;
  padding-right: 10%;
}

.our-heading{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hr {
  border: 0;
  width: 50%;
  height: 3px;
  background-color: #000000;
  opacity: 0.6;
  margin: 10px 0;
}


.hr-1 {
  border: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  opacity: 0.6;
  margin: 10px 0;
}

.job-listing-card2 {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-listing-card2:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.job-thumb {
    
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.job-thumb img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 10px 10px 0 0;
}

/* .job-listing-card2:hover .job-thumb img {
    transform: scale(1.05);
} */

.job-content {
    padding: 15px;
    text-align: center;
}

.job-type-apply {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.apply-btn a {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #007bff;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.apply-btn a:hover {
    background: #0056b3;
}

.apply-btn i {
    font-size: 14px;
}