html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #031B1B;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden; /* Only hide horizontal overflow */
  overflow-y: auto; /* Enable vertical scrolling */
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

nav {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 100;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  background-color: #0e9294;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

nav a:hover {
  background-color: #000000;
  transform: scale(1.05);
}

header {
  text-align: center;
  margin-top: 5px;
  z-index: 10;
}

header img {
  width: 200px;
  height: auto;
  transition: transform 0.3s;
  margin-bottom: 0px;
  animation: rotate 40s linear infinite; /* Rotate animation */
}

@keyframes rotate {
    from {
        transform: rotate(0deg); /* Initial position */
    }
    to {
        transform: rotate(360deg); /* Rotate 360 degrees */
    }
}

header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 90px !important; /* Increased font size */
  margin-top: 20px;
  margin-bottom: 0px;
  background: linear-gradient(90deg, #ffffff, #0E9294, #ffffff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 5s ease infinite;
  
  -webkit-text-stroke:.75px white; /* Add a 2px black border around the letters */
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

header p {
  font-size: 30px;
  margin: 0px;
}

.content {
  text-align: center;
  flex-grow: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  padding: 15px 15px 0 15px !important; /* Add padding to avoid content touching the edges */
}

.pricing-table {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  flex-wrap: wrap;
}

.pricing-plan {
  background: rgba(255, 255, 255, 0.062);
  border-radius: 10px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 0 10px #2daaacb4;
  transition: transform 0.3s, background-color 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensure content is spaced evenly */
  height: 500px; /* Increase the height to fit all content */
  text-decoration: none;
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.pricing-plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.664), rgba(0, 0, 0, 0.5));
  z-index: -1;
  transition: opacity 0.3s;
  opacity: 0;
}

.pricing-plan:hover {
  transform: scale(1.05);
  background-color: #0e9294;
  box-shadow: 0 0 20px #05e4f7, 0 0 10px rgba(255, 255, 255, 0.5); /* Glow effect */
}

.pricing-plan , .pricing-plan .price_description {
  transition: transform 0.3s, color 0.3s;
}


.list li {
  transition: transform 0.3s, color 0.3s;
}

.list li:hover {
  transform: translateX(5px); /* Slide effect for list items */
  
}

.pricing-plan:hover::before {
  opacity: 1;
}

.pricing-plan:hover {
  transform: scale(1.05);
  background-color: #0e9294;
}

.Best_Deal {
  background-color: #C9FEFF;
  border-radius: 30px;
  width: 100px;
  padding: 5px;
  color: #000000;
  font-family: "Poppins";
  position: absolute;
  top: 15px; /* Adjust as needed */
  right: 15px; /* Adjust as needed */
  text-align: center; /* Center the text inside the element */
}

.pricing-plan h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px !important;
  text-align: left;
  margin-top: 0;
  background: linear-gradient(90deg, #0E9294, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-plan .price_text {
  font-family: 'Poppins', sans-serif;
  text-align: left;
  font-size: 60px !important;
  margin-top: -10px;
  margin-bottom: 20px;
}

.price_duration_subtext {
  margin-left: 25px;
  font-size: 14px;
  font-family: "montserrat", sans-serif;
  color: #ffffff;
}

.pricing-plan .price_description {
  font-size: 16px;
  color: #ffffff;
  text-align: left;
  margin: 14px 0;
  flex-grow: 1; /* Make the description take the remaining space */
}

.list {
  list-style: none;
  text-align: left;
  font-size: 14px;
  padding-left: 0;
  margin-bottom: 70px;
}

.list li {
  margin-top: 8px;
  display: flex;
  align-items: center;
}

.list li::before {
  margin-right: 8px;
  color: #0e9294; /* Match the checkmark color with the theme */
  flex-shrink: 0; /* Prevent the bullet point from shrinking */
  width: 20px; /* Fixed width for the bullet points */
  text-align: left;
}

.pricing-plan button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff !important;
  border: none;
  padding: 15px 20px;
  margin-top: auto; /* Push the button to the bottom */
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  border-radius: 30px; /* Rounded corners */
  transition: background-color 0.3s, transform 0.3s, color 0.3s;
  width: calc(100%); /* Full width minus padding */
  color: #031B1B !important; /* Text color before hover */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  z-index: 10; /* Ensure button is clickable */
  text-decoration: none;
}

.pricing-plan button:hover {
  background: #031B1B !important; /* Background color on hover */
  transform: scale(1.05);
  color: #ffffff !important; /* Text color on hover */
}

.pricing-plan button a {
  color: inherit !important; /* Inherit the text color */
  text-decoration: none;
  flex-grow: 1;
  text-align: left;
}

.pricing-plan button .icon {
  background: #031B1B !important; /* Icon background color before hover */
  border-radius: 50%;
  width: 35px; /* Adjusted width */
  height: 35px; /* Adjusted height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important; /* Icon color before hover */
  transition: background-color 0.3s, color 0.3s;
  font-size: 1.2em; /* Increase font size of the icon */
}

.pricing-plan button:hover .icon {
  background: #ffffff !important; /* Icon background color on hover */
  color: #031B1B !important; /* Icon color on hover */
}

.pricing-plan button .icon i {
  color: inherit !important; /* Ensure the icon color changes with its container */
}

footer {
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  background-color: #00000060;
  width: 100%;
  z-index: 10;
}

footer p {
  margin: 0;
  font-size: 14px;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  background: #0e9294;
  border-radius: 50%;
  filter: blur(100px);
  animation: move 6s infinite; /* Changed from 20s to 10s for faster movement */
}

.blobadhere {
  position: absolute;
  background: #00b8e8;
  border-radius: 50%;
  filter: blur(100px);
  animation: move 6s infinite; /* Changed from 20s to 10s for faster movement */
}

@keyframes move {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(50%, 50%) scale(1.5);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .pricing-plan {
    width: 300px;
    height: 550px; /* Adjusted height for large devices */
  }

  header h1 {
    font-size: 75px; /* Adjusted for large devices */
  }

  .pricing-plan h2 {
    font-size: 40px;
  }

  .pricing-plan .price_text {
    font-size: 50px;
  }

  .pricing-plan .price_description {
    font-size: 14px;
  }
}

/* Add this to your existing CSS */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  .pricing-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
  }

  .pricing-plan {
    width: 400px;
    height: auto; /* Adjusted height for medium devices */
    margin: 10px; /* Add margin for spacing */
    padding: 30px; /* Adjust padding if necessary */
  }

  header h1 {
    font-size: 65px; /* Adjusted for medium devices */
  }

  .pricing-plan h2 {
    font-size: 35px;
  }

  .pricing-plan .price_text {
    font-size: 22px;
  }

  .pricing-plan .price_description {
    font-size: 12px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
  .pricing-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
  }

  .pricing-plan {
    width: 350px;
    height: auto; /* Adjusted height for small devices */
    margin: 10px; /* Add margin for spacing */
    padding: 20px; /* Adjust padding if necessary */
  }

  header h1 {
    font-size: 55px; /* Adjusted for small devices */
  }

  .pricing-plan h2 {
    font-size: 30px;
  }

  .pricing-plan .price_text {
    font-size: 20px;
  }

  .pricing-plan .price_description {
    font-size: 11px;
  }

  nav a {
    font-size: 16px;
    padding: 8px 16px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  .pricing-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
  }

  .pricing-plan {
    width: 300px;
    height: auto; /* Adjusted height for extra small devices */
    margin: 10px; /* Add margin for spacing */
    padding: 15px; /* Adjust padding if necessary */
  }

  header h1 {
    font-size: 45px; /* Adjusted for extra small devices */
  }

  .pricing-plan h2 {
    font-size: 25px;
  }

  .pricing-plan .price_text {
    font-size: 18px;
  }

  .pricing-plan .price_description {
    font-size: 10px;
  }

  nav a {
    font-size: 14px;
    padding: 6px 12px;
  }

  header img {
    width: 75px;
  }
}
.shimmer-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%; /* Ensure it matches the width of the button */
  height: 100%; /* Ensure it matches the height of the button */
  overflow: hidden; /* Hide overflow to keep the shimmer contained */
  pointer-events: none; /* Make it non-interactive */
}

.shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Match width of container (and button) */
  height: 100%; /* Match height of container (and button) */
  background: url('data:image/svg+xml;utf8,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><defs><radialGradient id="glass-reflection" cx="50%25" cy="50%25" r="50%25" fx="50%25" fy="50%25"><stop offset="0%25" style="stop-color:rgba(255, 255, 255, 0); stop-opacity:0" /><stop offset="50%25" style="stop-color:rgba(255, 255, 255, 0.3); stop-opacity:1" /><stop offset="100%25" style="stop-color:rgba(255, 255, 255, 0); stop-opacity:0" /></radialGradient></defs><rect width="100%25" height="100%25" fill="url(%23glass-reflection)" /></svg>') repeat;
  background-size: 200% 200%;
  animation: shimmer 5s infinite linear;
  pointer-events: none; /* Ensure the shimmer itself is also non-interactive */
  opacity: 0.3;
}


@keyframes shimmer {
  0% {
    transform: translate(-100%, -100%);
  }
  100% {
    transform: translate(100%, 100%);
  }
}

/* Additional CSS for Free Pricing Plan section */

.free-pricing-plan {
  background: rgba(255, 255, 255, 0.062);
  border-radius: 10px;
  margin: 10px;
  padding: 20px 0px 20px 40px;
  text-align: center;
  box-shadow: 0 0 10px #2daaacb4;
  transition: transform 0.3s, background-color 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% - 40px); /* Full width minus padding */
  margin: 20px auto; /* Center the element */
  height: auto;
}

.free-pricing-plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.664), rgba(0, 0, 0, 0.5));
  z-index: -1;
  transition: opacity 0.3s;
  opacity: 0;
}

.free-pricing-plan:hover::before {
  opacity: 1;
}

.free-pricing-plan:hover {
  transform: scale(1.05);
  background-color: #0e9294;
}

.Free_download {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.Free_download h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #0E9294, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: auto;
}

.Free_download .price_text {
  font-family: 'Poppins', sans-serif;
  text-align: left;
  font-size: 60px;
  margin-top: -10px;
  margin-bottom: 20px;
  width: auto;
}

.Free_download .price_description {
  font-size: 16px;
  color: #ffffff;
  text-align: left;
  margin: 14px 0;
  flex-grow: 1;
}

.Free_download .list {
  list-style: none;
  text-align: left;
  font-size: 14px;
  padding-left: 0;
  margin-bottom: 20px;
}

.Free_download .list li {
  margin-top: 8px;
  display: flex;
  align-items: center;
}

.Free_download .list li::before {
  margin-right: 8px;
  color: #0e9294;
  flex-shrink: 0;
  width: 20px;
  text-align: left;
}

.Free_download button {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: none;
  margin-right: 50px;
  padding: 15px 20px;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  border-radius: 30px;
  transition: background-color 0.3s, transform 0.3s, color 0.3s;
  width: 300px; /* Adjust the width to fit the content */
  color: #031B1B;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.Free_download button:hover {
  background: #031B1B;
  transform: scale(1.05);
  color: #ffffff;
}

.Free_download button a {
  color: inherit;
  text-decoration: none;
  flex-grow: 1;
  text-align: left;
}

.Free_download button .icon {
  background: #031B1B;
  border-radius: 50%;
  margin-left: 20px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background-color 0.3s, color 0.3s;
  font-size: 1.2em;
}

.Free_download button:hover .icon {
  background: #ffffff;
  color: #031B1B;
}

.Free_download button .icon i {
  color: inherit;
}

.toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.toggle-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  margin: 0 10px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #60B7B8;

}

input:checked + .slider:before {
  transform: translateX(26px);
}


    /* Styling for the Free Trial text */
    .big-fun-text {
      font-family: 'Poppins', sans-serif;
      font-size: 2em;
      font-weight: 800;
      color: #ffffff;
      text-align: center;
      margin-top: 20px;
    }
 