.hpc-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%);
}

.hpc-one .about-molecule-one{
    width: 500px;
    height: 500px;
    position: absolute;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0px;
}

.hpc-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;
}

.hpc_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;
  }

  .hpc-link {
    max-width: 110px;
    display: flex;
    gap: 8px;
    padding: 13px 25px;
    border: 2px solid rgba(255, 255, 255, 1);
    text-decoration: none;
    color: inherit;
  }
  .hpc-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 19px;
    margin: auto 0;
  }

  .hpc-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;
    font-size: 30px;
}

.hpc .paragraph{
  display: flex;
  align-items: center;
  justify-content: center;
}

.paragraph p{
  text-align: justify;
  width: 76%;
  font-size: 16px;
  line-height: 2;
}

.section-hpc-two{
  width: auto;
  height: 100%;
  padding-top: 2%;
  padding-bottom: 2%;
}

.hpc-info-text h1{
  font-size: 30px;
  color: #2299AA;
  text-align: center;
}

.hpc-info-text p {
  font-size: 17px;
  text-align: justify;
  width: 100%;
  max-width: 820px;
}

.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;
}

.hr-hpc{
  background-color: #000000;
}

.section-hpc-three {
  width: 100%; /* Ensure full width */
  height: 100%; /* Adjust height dynamically */
  background-color: #2299AA;
  padding-top: 5%; /* Add padding for better spacing */
  padding-bottom: 5%;
}

.section-hpc-three img {
  width: 50%;
  height: auto; /* Maintain aspect ratio */
}

/* Base Card Styles */
.slider-container-hpc {
  position: relative;
  width: 100%;
  max-width: 1279px;
  overflow: hidden;
}

.slider-hpc {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.card-hpc {
  min-width: 300px;
  margin: 10px;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
  color: #000000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hpc:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.card-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #2299aa;
}

.card-header h3 {
  font-size: 13px;
  font-weight: 600;
}

.card-hpc p {
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0b848a;
  color: #ffffff;
  border: none;
  padding: 15px;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.nav-button:hover {
  background-color: #0b9b94;
}

#prev {
  left: 10px;
  position: absolute;
  z-index: 500;
}

#next {
  right: 10px;
}
@media (max-width: 768px) {
  .card-hpc{
    min-width: 291px;
  }
}

/* section-four */
.section-hpc-four{
  width: auto;
  height: 500px;
}

.section-hpc-four p{
  text-align: justify;
  font-size: 16px;
  line-height: 2;
  width: 400px;
}


.pdf{
  background-color: aliceblue;
  width: 100%;
  max-width: 400px;
  height: auto;
}

.pdf-img img{
  width: auto;
  height: 40px;
}

.pdf-info h1{
  font-size: 20px;
}

.pdf-info a{
  text-decoration: none;
  color: #2299AA;
}

.pdf-info a:hover{
  color: #4ca5b3;
}

.hpc-image-feild img{
  width: 50%;
  height: 50%;
  background-color: #000000;
}


.visual-border-main{
  display: flex;
  justify-content: center;
  align-items: center;
}


.visual-border {
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 115px;
}


.section-hpc-five {
  width: auto;
  height: 500px;
  margin-top: 200px;
  margin-bottom: 200px;
}

.container-fluid {
  padding-top: 100px;
}

.container {
  max-width: 1520.5px;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
  /* border: 1px solid #ccc; */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.left-section {
  width: 48%;
}

.header {
  display: flex;
  align-items: baseline;
}

.header h1 {
  font-size: 2rem;
  color: #2299AA;
  font-weight: bold;
  margin: 0;
}

.header p {
  font-size: 2rem;
  margin: 0 0 0 10px;
}

.content {
  margin-top: 20px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.content p{
  text-align: justify;
  width: 70%;
}

.right-section {
  width: 48%;
}

.accordion {
  margin-top: 30px;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  font-size: 1rem;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  border: none;
  width: 100%;
  transition: background-color 0.3s ease;
}

.accordion-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 10px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000; /* Arrow color */
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-arrow {
  transform: rotate(180deg); /* Rotates the arrow when active */
}

.accordion-header:hover {
  background-color: #e9e9e9;
}

.accordion-header.active {
  background-color: #2db6aa;
  color: #ffffff;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  font-size: 1rem;
  background-color: #fafafa;
  transition: max-height 0.3s ease;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
}

.pagination {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination li {
  margin: 0 5px;
}

.pagination li a {
  display: block;
  padding: 8px 12px;
  background-color: #e0e0e0;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.pagination li a.active {
  background-color: #2299aa;
  color: #ffffff;
}

.cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}

.cta a {
  color: #2299AA;
  text-decoration: none;
  border: none;
  padding: 10px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  background-color: white;
  border: 2px solid rgb(0, 0, 0);
}

.cta a:hover {
  background-color: #249b91;
  color: white;
}

.custom-padding{
  padding-left: 10%;
  padding-right: 10%;
}


@media (max-width: 768px) {
  .section-hpc-two{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .hpc-heading h1 {
    font-size: 14px;
    margin-top: 21px;
  }
  .paragraph p {
    font-size: 11px;
  }
  .hpc-security-images img{
    display: none;
  }
  .card-slide{
    width: 90%;
  }
  .swiper {
    width: 100%; 
  }
  .section-hpc-four p {
    text-align: justify;
    line-height: 2;
    width: 95%;
    font-size: 15px;
  }
  .hpc-image-feild{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hpc-image-feild img{
    width: 100%;
    height: 100%;
    margin-top: 10%;
  }
  .container {
    flex-direction: column;
    padding: 10px;
  }
  .left-section, .right-section {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  }
  .header h1, .header p {
  font-size: 20px;
  }

  .content p {
  font-size: 10px;
  text-align: justify;
  width: 100%;
  }

.cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 47px;
}

.visual-border{
  margin-top: 10%;
}

.section-hpc-four {
  height: 100%;
}

.section-hpc-three {
  width: auto;
  height: 100%;
 }

 .section-hpc-five {
  width: auto;
  height: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
 }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .card-logo .atom {
    width: 40px;
    height: 40px;
  }
  .hpc-one .about-molecule-two {
    display: none;
  }
  .hpc-one .about-molecule-one {
    display: none;
  }
}


@media (max-width: 480px) {
  .hpc-card-title-paragraph {
    padding: 10px; /* Add padding for smaller screens */
  }

  .card-logo .atom {
    width: 30px;
    height: 30px;
  }

  .card-logo h1 {
    font-size: 10px;
    margin-top: 5px;
  }

  .hpc-paragraph p {
    font-size: 7px;
    line-height: 1.4;
    width: 100%; /* Full width */
  }

  .border-hpc {
    height: 15px; /* Further reduce height for small screens */
  }
  .section-hpc-five {
    width: auto;
    height: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .section-hpc-four {
    height: 100%;
}
}




