* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    background-color: #1c1c1c;
  }
  
  .logo {
    cursor: pointer;
    order: 1;
  }

  .logo img {
    width: 100px;
  }
  
  nav {
    order: 2;
    margin-left: auto;
  }
  
  .nav__links a,
  .cta,
  .overlay__content a {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #edf0f1;
    text-decoration: none;
  }
  .pre-t {
    color: red;
  }
  span{
    font-family: sans-serif;
  }
  .nav__links {
    list-style: none;
    display: flex;
    font-size: 16px;
  }
  
  .nav__links li {
    padding: 0px 20px;
  }
  
  .nav__links li:nth-child(1) {
    padding: 0 20px 0 0;
  }
  
  .nav__links li a {
    transition: all 0.3s ease 0s;
  }
  
  .nav__links li a:hover {
    color: #00ADEF;
  }

  .cta {
    display: none;
    order: 2;
    margin-left: 20px;
    padding: 9px 25px;
    background-color: #00ADEF;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
  }
  
  .cta:hover {
    background-color: #00abef6c;
  }
  
  /* Mobile Nav */
  
  .menu {
    display: none !important;
  }
  
  .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: #1c1c1c;
    overflow-x: hidden;
    transition: all 0.5s ease 0s;
  }
  
  .overlay--active {
    width: 100%;
  }
  
  .overlay__content {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .overlay a {
    padding: 15px;
    font-size: 36px;
    display: block;
    transition: all 0.3s ease 0s;
  }
  
  .overlay a:hover,
  .overlay a:focus {
    color: #00ADEF;
  }
  .overlay .close {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    color: #edf0f1;
  }
  
  @media screen and (max-height: 450px) {
    .overlay a {
      font-size: 20px;
    }

    .menu{
      display: block !important;
    }
    .overlay .close {
      font-size: 40px;
      top: 15px;
      right: 35px;
    }
  }
  
  @media only screen and (max-width: 800px) {
    .nav__links,
    .cta {
      display: none;
    }
    
    .menu{
      display: block !important;
    }
  }

/* Calculator Pages */
.text-content {
  padding: 50px 50px;
  background-color: #f4f4f4;
}
.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
}

.text-col {
  flex: 1;
  max-width: 100%;
  text-align: left;
}

.text-col-h1 h1 {
  color: #333;
}

.text-col p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.text-col img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 900px){
  .row {
      flex-direction: column;
  }
  .text-col img{
    margin-top: 20px;
  }
}

.container {
    /* width: 850px; */
    width: 100%;
    padding-top: 50px;
    margin: auto;
    gap: 20px;
    flex-wrap: wrap;
}

.h1-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
    margin-bottom: 20px;
    width: 1000px;
    margin: auto;
}

.calculator-section {
    width: 800px;
    margin: auto;
    padding-top: 50px;
}

@media (max-width: 1020px){
  .h1-title {
      width: 100%;
  }
  .calculator-section{
    width: 100%;
  }
}
/* Style form labels */
label {
    font-family: sans-serif;
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
}

/* Style form input fields */
input[type="text"], input[type="number"], select {
    width: 100%;
    padding: 12px;
    font-family: 'Montserrat';
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    transition: border-color 0.3s, background-color 0.3s;
    color: #333;
}

input[type="text"]:focus, input[type="number"]:focus, select:focus {
    border-color: #00ADEF;
    background-color: #fff;
}

/* Style form buttons */
button {
    padding: 12px 24px;
    background-color: #00ADEF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Style form section breaks */
.fSectionBreak {
    margin: 20px 0;
    border-top: 1px solid #ddd;
}


/* Style form error messages */
.error {
    color: red;
    margin-top: 10px;
    position: inherit;
    padding: 5px; /* Added padding for better visibility */
}

.cpefb_error{
    color: red;
    margin-top: 10px;
    position: inherit !important;
    margin-bottom: 5px;
}

/* Style form success messages */
.success {
    color: green;
    margin-top: 10px;
    padding: 5px; /* Added padding for better visibility */
}

/* Responsive design */
@media screen and (max-width: 600px) {
    .container {
        padding: 10px;
    }

    input[type="text"], input[type="number"], select {
        padding: 10px;
        font-family: 'Montserrat';
    }

    button {
        padding: 10px 20px;
    }
}

@media (max-width: 1020px) {
    .container {
        width: 100%;
        padding: 8%;
    }

    .h1-title {
        font-size: 18px;
    }
}


/* index.css file */
/* two columns */


.hero-section {
  text-align: center;
  padding: 100px 20px;
  background-color: #00ADEF;
  color: #ffffff;
}

.hero-title {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.tagline {
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Features Start */
.section-f h2 {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 40px;
  text-align: center;
}
.row-f {
  display: flex;
  flex-wrap: wrap;
}
.column-f {
  padding: 1em;
}
.card-f {
  padding: 3.1em 1.25em;
  text-align: center;
  background: linear-gradient(0deg, #397ef6 10px, transparent 10px);
  background-repeat: no-repeat;
  background-position: 0 0.62em;
  box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.15);
  border-radius: 0.5em;
  transition: 0.5s;
  cursor: pointer;
}
.card-f .icon-f {
  font-size: 2.5em;
  height: 2em;
  width: 2em;
  margin: auto;
  background-color: #397ef6;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
}
.icon-f:before {
  position: absolute;
  content: "";
  height: 1.5em;
  width: 1.5em;
  border: 0.12em solid #397ef6;
  border-radius: 50%;
  transition: 0.5s;
}
.card-f h3 {
  font-size: 1.3em;
  margin: 1em 0 1.4em 0;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #070024;
}
.card-f p {
  line-height: 2em;
  color: #625a71;
}
.card-f:hover {
  background-position: 0;
}
.card-f:hover .icon-f:before {
  height: 2.25em;
  width: 2.25em;
}
@media screen and (min-width: 768px) {
  .section-f {
    padding: 1em 7em;
  }
}
@media screen and (min-width: 992px) {
  .section-f {
    padding: 1em;
  }
  .row-f {
    /* Remove flex-wrap property for larger screens */
    flex-wrap: nowrap;
  }
  .card-f {
    padding: 5em 2em;
  }
}
/* Features End */
.calculate-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2em;
  text-decoration: none;
  color: #ffffff;
  background-color: #1c1c1c;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.calculate-button:hover {
  background-color: #333232;
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2em;
  }

  .tagline {
    font-size: 1em;
  }

  .calculate-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}



.calculators{
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
    gap: 20px;
    flex-wrap: wrap;
}
.card {
  max-width: 48%;
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
}

.card a {
  text-decoration: none
}

.content {
  padding: 1.1rem;
}

.image {
  object-fit: cover;
  width: 100%;
  height: 150px;
  background-color: rgb(239, 205, 255);
}

.title {
  color: #111827;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.desc {
  margin-top: 0.5rem;
  color: #6B7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.action {
  display: inline-flex;
  margin-top: 1rem;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  align-items: center;
  gap: 0.25rem;
  background-color: #2563EB;
  padding: 4px 8px;
  border-radius: 4px;
}

.action span {
  transition: .3s ease;
}

.action:hover span {
  transform: translateX(4px);
}


  .button {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 20px;
    padding: 8px 16px;
    background-color: #00ADEF;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s ease;
  }
  
  .button:hover {
    background-color: #00ADEF;
  }
  
  hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 16px 0;
  }
  
/* Footer */


.footer {
  position: relative;
  width: 100%;
  background: #1c1c1c;
  min-height: 100px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-icon,
.footer-menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  opacity: 0.75;
  font-weight: 300;
}

/* Loader Section */

.center-body {
	display: flex;
  background-color: #1c1c1c;
  position: fixed;
  z-index: 999;
  overflow: hidden;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
}
.loader-circle-86 svg {
	width: 70px;
	height: 70px;
	display: inline-block;
	transform: rotate(90deg);
}
.loader-circle-86 .circle {
	fill: transparent;
	stroke: #00ADEF;
	stroke-width: 3px;
	animation: 1.5s loader-circle-86-spin infinite ease-in;
}
@keyframes loader-circle-86-spin {
	0% {
		stroke-dasharray: 0 400;
		stroke-dashoffset: 0;
	}
	25% {
		stroke-dashoffset: 0;
	}
	100% {
		stroke-dasharray: 400 400;
		stroke-dashoffset: -400;
	}
}
/* after the website loads the div will be hidden again */
.hide {
    display: none;
}

.card1 {
  max-width: 300px;
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
}

.card1 a {
  text-decoration: none
}

.content {
  padding: 1.1rem;
}

.image {
  object-fit: cover;
  width: 100%;
  height: 150px;
  background-color: rgb(239, 205, 255);
}

.title {
  color: #111827;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.desc {
  margin-top: 0.5rem;
  color: #6B7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.action {
  display: inline-flex;
  margin-top: 1rem;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  align-items: center;
  gap: 0.25rem;
  background-color: #2563EB;
  padding: 4px 8px;
  border-radius: 4px;
}

.action span {
  transition: .3s ease;
}

.action:hover span {
  transform: translateX(4px);
}

/* faq */
.faq-container {
  width: 1000px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #fff;
  border-radius: 10px;
  margin: 50px auto 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.faq-container h2 {
  text-align: center;
  padding-bottom: 20px;
  padding-top: 40px;
}
.faq-item {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 3px;
  padding-top: 3px;
}

.faq-answer {
  font-size: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  padding-left: 10px;
  padding-right: 10px;
}

.faq-answer.active {
  border-bottom: 1px solid #e0e0e0;
  margin-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 1020px) {
  .faq-container {
      width: 100%;
      padding: 8%;
      margin: auto;
  }
}

.icon-container i {
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.icon-container i.active {
  transform: rotate(90deg);
}