.nava {
    color: #04b7a8;
    position: relative;
    text-decoration: none;
    font-size: 19px;
  }
  
  .nava::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-color: #04b7a8;
    bottom: 0;
    left: 0;
    top: 26px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
  }
  .navbar-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensure it's above other content */
}
  .nava:hover::before {
    transform-origin: left;
    transform: scaleX(1);
  }
  header {
    background: #04b7a8;
    color: #fff;
    padding: 1rem 0;
}
  
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background:white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column; /* Aligns items vertically */
  align-items: center; /* Aligns items at the center horizontally */
}
  .nava:hover{
color: rgb(17, 17, 17) !important;
  }
  .logo img {
    cursor: pointer;
    height: 50px;
    animation-name: loadedlogo;
    animation-duration: 2s;
}
  @keyframes loadedlogo{
    0%{
        margin-left: -190px;
    }
    100%{
        margin-left: 0px;

    }
  }
  nav ul {
      display: flex;
      list-style: none;
      margin-top: 10px;
      transition-duration: 1s;
  }
  
  nav ul li {
      margin-left: 20px;
      transition-duration: 1s;

  }
  
  nav ul li a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      transition-duration: 1s;

  }
  .nav-toggle{
      display: none;
      transition-duration: 1s;

  }
  @media (max-width: 768px) {
  
      .container {
          flex-direction: column;
          align-items: flex-start;
      transition-duration: 1s;

      }
      .logo img {
        height: 50px;
      position: relative;
      transition-duration: 1s;

       
    }
      .nav-toggle{
          display: show;
          margin-top: 26px;
      transition-duration: 1s;

      }
      
      nav ul {
          flex-direction: column;
          width: 100%;
          display: none;
      transition-duration: 1s;

      }
      
      nav ul li {
          margin: 10px 0;
      transition-duration: 1s;

      }
      
      nav ul.active {
          display: flex;
      transition-duration: 1s;

      }
      
      .nav-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: #04b7a8;
        transition-duration: 1s;
    }
  }
  
  /* Footer Section */
footer {
    text-align: center;
    background-color: #ffffff; /* White background */
    color: #333333; /* Dark text color */
    padding: 40px 0;
}

/* Footer Content */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content h6 {
    font-weight: bold;
    color: #333333; /* Dark text color for headings */
}

.footer-content p {
    color: #666666; /* Medium grey color for text */
    line-height: 1.6;
}

.footer-content a {
    color: #3498db; /* Blue color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #2980b9; /* Darker blue color on hover */
}

/* Footer Bottom */
.footer-bottom {
    background-color: #f1f1f1; /* Light grey background */
    padding: 20px 0;
}

.footer-bottom p {
    color: #666666; /* Medium grey color for text */
    margin-bottom: 0;
}

body::-webkit-scrollbar {
    width: 0.5em;
  }
   
  body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }
   
  body::-webkit-scrollbar-thumb {
   background-color: #04b7a8;
   border-radius: 2000px;
   width: 2px;
    outline: 1px solid none;
  }
  
  
  .blured{
 
    filter: blur(5px); /* Blur effect on the background */

  }
  .navbar {
    transition: all 0.3s ease; /* Smooth transition for all properties */
}

.navbar-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensure it's above other content */
    background-color: #fff; /* Example background color change when fixed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Example box shadow when fixed */
    animation: fadeInDown 0.3s ease; /* Example animation */
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
  
  .loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure the loader is on top */
  }
  
  .loader {
    width: 6em;
    height: 6em;
  }
  
  .loader-ring {
    animation: ringA 2s linear infinite;
  }
  
  .loader-ring-a {
    stroke: #04b7a8;
  }
  
  .loader-ring-b {
    animation-name: ringB;
    stroke: #09aaaa;
  }
  
  .loader-ring-c {
    animation-name: ringC;
    stroke: #044d4d;
  }
  
  .loader-ring-d {
    animation-name: ringD;
    stroke: #0dacac;
  }
  
  /* Animations */
  @keyframes ringA {
    from, 4% {
      stroke-dasharray: 0 660;
      stroke-width: 20;
      stroke-dashoffset: -330;
    }
  
    12% {
      stroke-dasharray: 60 600;
      stroke-width: 30;
      stroke-dashoffset: -335;
    }
  
    32% {
      stroke-dasharray: 60 600;
      stroke-width: 30;
      stroke-dashoffset: -595;
    }
  
    40%, 54% {
      stroke-dasharray: 0 660;
      stroke-width: 20;
      stroke-dashoffset: -660;
    }
  
    62% {
      stroke-dasharray: 60 600;
      stroke-width: 30;
      stroke-dashoffset: -665;
    }
  
    82% {
      stroke-dasharray: 60 600;
      stroke-width: 30;
      stroke-dashoffset: -925;
    }
  
    90%, to {
      stroke-dasharray: 0 660;
      stroke-width: 20;
      stroke-dashoffset: -990;
    }
  }
  
  @keyframes ringB {
    from, 12% {
      stroke-dasharray: 0 220;
      stroke-width: 20;
      stroke-dashoffset: -110;
    }
  
    20% {
      stroke-dasharray: 20 200;
      stroke-width: 30;
      stroke-dashoffset: -115;
    }
  
    40% {
      stroke-dasharray: 20 200;
      stroke-width: 30;
      stroke-dashoffset: -195;
    }
  
    48%, 62% {
      stroke-dasharray: 0 220;
      stroke-width: 20;
      stroke-dashoffset: -220;
    }
  
    70% {
      stroke-dasharray: 20 200;
      stroke-width: 30;
      stroke-dashoffset: -225;
    }
  
    90% {
      stroke-dasharray: 20 200;
      stroke-width: 30;
      stroke-dashoffset: -305;
    }
  
    98%, to {
      stroke-dasharray: 0 220;
      stroke-width: 20;
      stroke-dashoffset: -330;
    }
  }
  
  @keyframes ringC {
    from {
      stroke-dasharray: 0 440;
      stroke-width: 20;
      stroke-dashoffset: 0;
    }
  
    8% {
      stroke-dasharray: 40 400;
      stroke-width: 30;
      stroke-dashoffset: -5;
    }
  
    28% {
      stroke-dasharray: 40 400;
      stroke-width: 30;
      stroke-dashoffset: -175;
    }
  
    36%, 58% {
      stroke-dasharray: 0 440;
      stroke-width: 20;
      stroke-dashoffset: -220;
    }
  
    66% {
      stroke-dasharray: 40 400;
      stroke-width: 30;
      stroke-dashoffset: -225;
    }
  
    86% {
      stroke-dasharray: 40 400;
      stroke-width: 30;
      stroke-dashoffset: -395;
    }
  
    94%, to {
      stroke-dasharray: 0 440;
      stroke-width: 20;
      stroke-dashoffset: -440;
    }
  }
  
  @keyframes ringD {
    from, 8% {
      stroke-dasharray: 0 440;
      stroke-width: 20;
      stroke-dashoffset: 0;
    }
  
    16% {
      stroke-dasharray: 40 400;
      stroke-width: 30;
      stroke-dashoffset: -5;
    }
  
    36% {
      stroke-dasharray: 40 400;
      stroke-width: 30;
      stroke-dashoffset: -175;
    }
  
    44%, 50% {
      stroke-dasharray: 0 440;
      stroke-width: 20;
      stroke-dashoffset: -220;
    }
  
    58% {
      stroke-dasharray: 40 400;
      stroke-width: 30;
      stroke-dashoffset: -225;
    }
  
    78% {
      stroke-dasharray: 40 400;
      stroke-width: 30;
      stroke-dashoffset: -395;
    }
  
    86%, to {
      stroke-dasharray: 0 440;
      stroke-width: 20;
      stroke-dashoffset: -440;
    }
  }
  .progress-wrap {
    position: fixed;
    right: 50px;
    bottom: 50px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }
  
  .progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .progress-wrap::after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f062';
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: #04b7a8;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }
  
  .lightScrollIcon::after {
    color: #04b7a8 !important;
  }
  
  .progress-wrap:hover::after {
    opacity: 0;
  }
  
  .progress-wrap::before {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f062';
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    opacity: 0;
    background-image: linear-gradient(298deg, #da2c4d, #f8ab37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }
  
  .progress-wrap:hover::before {
    opacity: 1;
  }
  
  .progress-wrap svg path {
    fill: none;
  }
  
  .progress-wrap svg.progress-circle path {
    stroke: #04b7a8;
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
  }
/* Back to top */