/* General body styling */
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: ui-sans-serif, -apple-system, system-ui, Segoe UI, Ubuntu, Cantarell, sans-serif, Helvetica, Apple Color Emoji, Arial, Segoe UI Emoji, Segoe UI Symbol;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: #f4f7f6;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}

html {
  overflow-x: hidden;
  /* Prevent horizontal scrolling */
}

/* Top bar styling */
.top-bar a {
  text-decoration: none;
  color: inherit;
}
.top-bar {
  background-color:#37525b;
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 30px;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: padding-left 1s;
}

.bar-image {
  height: 40px;
  width: 40px;
  transition: height 0.5s, width 0.5s;
}

.bar-text {
  color: #ffffff;
  font-size: 25px;
  font-weight: bold;
  margin-left: 10px;
  transition: font-size 0.5s;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/* Responsive styling for top bar */
@media screen and (max-width: 600px) {
  .top-bar {
    padding-left: 20px;
  }
  .bar-image {
    height: 30px;
    width: 30px;
  }
  .bar-text {
    font-size: 22px;
  }
}

.premium-crown{
  font-size: 1.35rem;
  margin-left: .45rem;
  line-height: 1;
}

#thank-toast{
  position:fixed;bottom:1rem;left:50%;transform:translateX(-50%);
  max-width:90%;width:480px;
  background:#323232;color:#fff;font-size:1.05rem;line-height:1.45;
  border-radius:10px;padding:1.6rem 1.8rem 1.8rem;   /* extra right padding for close btn */
  box-shadow:0 6px 20px rgba(0,0,0,.25);z-index:9999;text-align:center;
  word-wrap:break-word;overflow-wrap:anywhere;       /* keep long links inside */
}
#thank-toast code{
  display:inline-block;
  background:#444;
  color:#f8f8f2;
  padding:.25rem .4rem;
  border-radius:4px;
  font-size:.9rem;
  word-break:break-all;
}
#thank-toast button.copy-btn{
  margin-left:.5rem;
  padding:.35rem .8rem;font-size:.9rem;
  background:#ffc107;border:none;border-radius:4px;cursor:pointer;
}
.toast-close{
  position:absolute;top:8px;right:10px;
  font-size:1.25rem;color:#fff;background:transparent;border:none;cursor:pointer;
}


@keyframes fade-in{from{opacity:0;transform:translate(-50%,20px);}
                   to  {opacity:1;transform:translate(-50%,0);} }


/* Main content container */
.first-container {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  /* Adjusted for fixed top bar */
  padding-bottom: 80px;
  box-sizing: border-box;
}

/* Top container styling */
.container-combine {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  height: auto;
  padding: 40px 20px;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: rgba(194, 219, 224, 255)
}

.container-text {
  flex: 1;
  padding: 20px;
}

.main-heading {
  font-size: 40px;
  color: #222;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  
}

.sub-heading {
  font-size: 20px;
  color: #333;
  font-weight: 600;
  margin-bottom: 30px;
}

.button-container {

  display: flex;

  justify-content: flex-start;
  gap: 10px;
  flex-direction: column;

}

.button {
  display: inline-block;           /* better than relying on max-content */
  padding: 0.75em 1.5em;           /* relative units scale with font-size */
  color: #fff;
  background-color: #4a6d75;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;              /* center is more expected on buttons */
  
  /* New: subtle shadow for depth */
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  
  /* New: custom properties for easy theming */
  --btn-bg: #4a6d75;
  --btn-bg-hover: #3e5e65;
  --btn-shadow: rgba(0,0,0,0.15);
  
  transition:
    background-color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  background-color: var(--btn-bg-hover);
  transform: translateY(-2px) scale(1.02);  
  box-shadow: 0 4px 12px var(--btn-shadow);
}

.button:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 1px 4px var(--btn-shadow);
}

.button:focus {
  outline: 3px solid #A3D9E0;    /* visible focus ring for accessibility */
  outline-offset: 2px;
}


.container-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.image {
  max-width: 100%;
  height: auto;
  border-radius: 2%;
}

@media screen and (max-width: 850px) {
    .container-combine {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }
  .container-image {
    margin-top: 20px;
    display: contents;
  }
  .image {
    max-width: 70%;
    height: auto;
  }
 
  
}
@media screen and (max-width: 600px) {
  .button-container {
    flex-direction: column;
    align-items: center;
  }

  .button {
    text-align: center;
    font-size: 16px;
    width: fit-content;
  }

  .container-combine {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .top-container-image {
    margin-top: 20px;
  }

  
}
@media screen and (max-width: 400px) {
  .container-combine {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }
  .main-heading {
    font-size: 30px;
  }
  
  .sub-heading {
    font-size: 18px;
    font-weight: normal;
  }
  .container-image {
    margin-top: 20px;
    display: contents;
  }
  .image {
    max-width: 80%;
    height: auto;
  }
  .button {
    width: max-content;
    padding: 10px 10px;
  }
  
}
/* Testimonial Section */
.testimonial-section {
  width: 90%;
  max-width: 1200px;
  height: auto;
  padding: 40px 20px;
  margin: 40px;
  text-align: center;

}

@media screen and (max-width: 800px) {
  .testimonial-section {
    padding: 20px;
  }
}

.testimonial-heading {
  font-size: 25px;
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
}

.testimonial-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.testimonial {
  background-color: #e9ebea;
  width: 30%;
  min-width: 250px;
  margin: 10px;
  padding: 20px;
  border-radius: 10px;
}

.testimonial-quote {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.testimonial-author {
  font-size: 15px;
  color: #333;
  font-weight: bold;
}

@media screen and (max-width: 300px) {
  .testimonial {
    min-width: 150px;
  }

  .testimonial-quote {
    font-size: 16px;
  }
}


/* other product Section */
.other_product_container {
  width: 90%;
  max-width: 1200px;
  height: auto;
  margin: 20px;
  text-align: center;

}
.full-section-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.website-link-text {
  text-decoration: underline;
  color: #0066cc;
  font-weight: bold;
}

.other_product_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.other_product_heading {
  font-size: 25px;
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;

}
.other_product_download-section {
  flex: 2 1 400px;
  max-width: 500px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.other_product_download-text {
  text-align: center;
  margin-right: 10px;
}

.other_product_download-heading {
  font-size: 18px;
  color: #0066cc;
  text-decoration: none;
}
.other_product_website-heading {
  font-size: 15px;
  margin-bottom: 10px;
  color: #cc0014;
}

.other_product_download-description {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
  text-decoration: none;
}

.other_product_download-button-container a img {
  width: 170px;
}

.other_product_download-image img {
  width: 80%;
  height: auto;
}

.other_product_button-visit-website {
  background-color: #2575fc;
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
}



@media screen and (max-width: 800px) {
  .other_product_download-section {
    flex-direction: column;
    text-align: center;
    max-width: 100%;
  }
  .other_product_download-image {
    margin-top: 20px;
  }
}



/* Bottom panel styling */
.bottom-panel {
  background-color:#37525b;
  color: #ffffff;
  width: 100%;
  text-align: center;
  padding: 30px 0;
}

.bottom-panel p {
  margin: 5px 0;
}

.bottom-links {
  display: flex;
  justify-content: center;
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
}

.bottom-links a {
  color: #A3D9E0;   /* pale teal  — contrast ≈4.8:1 */
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0 10px;
}


.bottom-links a:hover,
.bottom-links a:focus {
  color: #FFC857;           /* or whatever hover color you choose */
  text-decoration: underline;
}

.cookie-policy {
  color: blue;
  text-decoration: underline;
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .bottom-links a {
    margin: 2px 0;
  }
}
