@font-face {
  font-family: 'WF Visual Sans';
  src: url('./font/WFVisualSansVF.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Ensure the HTML and body take full height */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  
  /* Flex container for the entire page */
  .page-container {
    display: flex;
    flex-direction: column;
  }

  
  /* Additional index page styles can be added below */

  .hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
    padding: 0 20px;
    background: linear-gradient(135deg, #d9f2ff 0%, #a3d2ff 50%, #007BFF 100%);
  }
  
  

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
}

.hero-text {
  flex: 1;
  text-align: left;
  padding-right: 20px;
  color: black;
}

.hero-title {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: -5px;
}

.hero-subtext {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 30px;
}

.hero-button {
  padding: 10px 15px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background-color: #007BFF;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
}

.hero-button:hover {
  background-color: #0056b3;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
}

.quick-calculator-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 600px;
  background: linear-gradient(135deg, #e0e0e0 0%, #ffffff 100%);
  padding: 20px;
  overflow: hidden;
  box-sizing: border-box;
}


.quick-calculator-section h2 {
  margin: 0;         /* Removes all default margins */
  line-height: 1; 
  margin-bottom: 20px; /* Adjust the bottom margin as needed */
  font-size: 45px;
  font-weight: bold;
  color: black;
}


.card-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  width: 300px;
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: black;
}

.card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.card a {
  display: inline-block;
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.card a:hover {
  background-color: #0056b3;
}

.img-container {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 15px;
}

.img-blue {
  background-color: #66a3ff;
}

.img-yellow {
  background-color: #ffe066;
}

.img-red {
  background-color: #ff6666;
}

.card img {
  max-width: 90%;
  height: auto;
  border-radius: 4px;
}

.popular-calculator-section {
  background: linear-gradient(135deg, #e6e6fa 0%, #d1c4e9 100%);
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.popular-calculator-section h2 {
  margin: 0;         /* Removes all default margins */
  line-height: 1; 
  margin-bottom: 20px; /* Adjust the bottom margin as needed */
  font-size: 45px;
  font-weight: bold;
  color: black;
}

.calculator-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}

.calculator-item {
  width: 22%;
  text-align: left;
}

.calculator-item .calculator-icon {
  font-size: 20px;
  color: #6c63ff;
  margin-bottom: 5px;
}

.calculator-item h3 {
  font-size: 1rem;
  margin: 5px 0;
  color: black;
}

.calculator-item p {
  font-size: 0.75rem;
  color: #666;
  margin: 0;
}

.view-more-button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.view-more-button:hover {
  background-color: #0056b3;
}

.how-it-works-section {
  background: linear-gradient(135deg, #e0e0e0 0%, #ffffff 100%);
  text-align: center;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Aligns content to the top */
  /* align-items: center; if you want to keep horizontal centering, leave it */
}


.how-it-works-title {
  font-size: 45px;
  font-size: 700;
  margin-bottom: 20px;
  color: black;
}

.how-it-works-description {
  font-size: 16px; /* Adjust as needed */
  line-height: 1.5;
  color: black;
  margin-top: -10px;  /* Space between the title and description */
  margin-bottom: 30px; /* Space between the description and the image */
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  
}


.how-it-works-image {
  width: 60%;
  height: auto;
  margin: 0 auto;
}

.practice-section {
  background: linear-gradient(135deg, #ffb3b3 0%, #ffe6e6 100%);
  display: flex;
  min-height: 600px;
  align-items: center;
  justify-content: center;
  text-align: left;
}


.practice-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

.practice-image img {
  width: 75%;
  margin-top: 50px;
  height: auto;
}

.practice-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.practice-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: -5px;
  color: black;
}

.practice-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
  color: black;
}

.practice-button {
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #007BFF;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.practice-button:hover {
  background-color: #0056b3;
}

.why-section {
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  display: flex;
  height: 600px;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}

.why-context {
  text-align: left;
}

.why-title {
  font-size: 42px;
  font-size: 700;
  margin-bottom: 20px;
  color: black;
}

.why-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
  color: black;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: black;
  margin-left: 50px;
}

.why-point {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
}

.why-point-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  flex-shrink: 0;
}

.why-image img {
  width: 60%;
  object-fit: contain; /* or use "cover" if you want it to fill edge-to-edge */
}



.start-today-section {
  background: linear-gradient(135deg, #fff9c4 0%, #ffe082 100%);
  height: 600px;
  display: flex;
}


.start-today-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.start-today-image img {
  width: 50%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.start-today-content {
  text-align: center;
}

.start-today-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: -5px;
  color: black;
}

.start-today-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 30px;
  color: black;
}

.start-today-button {
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #007BFF;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.start-today-button:hover {
  background-color: #0056b3;
}

.practice-image,
.why-image,
.start-today-image {
  display: flex;
  justify-content: center;
  align-items: center;
}


