@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Fredoka", sans-serif;
  overflow-x: hidden;
}

section {
  margin-top: 110px;
}

/* Header styles */

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 6%;
}

.heroSection {
  width: 100%;
  min-height: 500px;
}

/* Hero main section styles */

.heroMain {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.heroContent {
  text-align: center;
}

.heroContent h1 {
  font-size: 2.5rem;
  font-weight: 450;
  margin-bottom: 20px;
}

.heroContent p {
  font-size: 1.25rem;
  font-weight: 350;
  margin-bottom: 10px;
}

.heroCards {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  padding: 40px 10%;

}

.heroCard {
  width: 290px;
  height: 160px;
  border: 1px solid black;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  border-radius: 16px;
  box-shadow: 2px 2px 0px 0px rgb(0, 0, 0);
}

.heroCard h2 {
  font-size: 1.25rem;
  font-weight: 400;
}

.heroCard:nth-child(1) {
  background-color: #ffcaca;
}

.heroCard:nth-child(2) {
  background-color: #d6ecff;
}

.heroCard:nth-child(3) {
  background-color: #ffe2b5;
}

.heroCard:nth-child(4) {
  background-color: #bfe8ff;
}

.showBtn {
  width: 92px;
  height: 28px;
  color: white;
  font-weight: 500;
  background-color: #F38624;
  display: inline-block;
  padding: 3px 20px;
  border: 1px solid black;
  border-radius: 6px;
  box-shadow: 2px 2px 0px 0px rgb(0, 0, 0);
  text-align: center;
}

.heroImage {
  width: 100%;
  min-height: 550px;
  background-image: url(/assets/Img/heroImage.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* Main Section styles */

.Main {
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mainContainer {
  position: relative;
  z-index: 2;
}

.blur-circle {
  position: absolute;
  width: 60%;
  height: 1000px;
  border-radius: 50%;
  background: #ffd9d98c;
  filter: blur(300px);
  -webkit-filter: blur(300px);
  -moz-filter: blur(300px);
  -o-filter: blur(300px);
  -ms-filter: blur(300px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* Safari specific - add backdrop-filter only for Safari */
@supports (-webkit-backdrop-filter: blur(300px)) {
  .blur-circle {
    backdrop-filter: blur(300px);
    -webkit-backdrop-filter: blur(300px);
  }
}

.mainContent h1 {
  font-size: 2.5rem;
  font-weight: 450;
  margin-bottom: 20px;
}

.mainContent p {
  font-size: 1.25rem;
  font-weight: 350;
  margin-bottom: 10px;
}

.mainCards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px 150px;
  padding: 40px 10%;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mainCard {
  width: calc(50% - 75px);
  max-width: 500px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.cardContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.cardContent h3 {
  font-size: 1.5rem;
  font-weight: 450;
}

.mainCard p {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 10px;
}

/* Review Section styles */

.review {
  width: 100%;
  padding: 0px 6%;
}

.reviewContainer {
  max-width: 1400px;
  margin: 0 auto;
}

.reviewContent {
  text-align: center;
  margin-bottom: 40px;
}

.reviewContent h2 {
  font-size: 2.5rem;
  font-weight: 450;
  color: #000;
}

.review hr {
  border: none;
  border-top: 1px solid #ddd;
  margin-bottom: 60px !important;
  max-width: 1200px;
  margin: 0 auto;
}

.bottomhr {
  border: none;
  border-top: 1px solid #ddd;
  margin-top: 60px !important;
  max-width: 1200px;
  margin: 0 auto;
}

.reviewCards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.reviewCard {
  background: #fff;
  padding: 3rem 6rem;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  min-height: 200px;
}

.reviewCard p {
  font-size: 1.25rem;
  font-weight: 450;
  line-height: 1.6;
  color: #000;
  text-align: left;
  margin: 0;
}

.reviewCardFooter {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.reviewImg {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #ddd;
}

.reviewCardFooter h4 {
  font-size: 1rem;
  font-weight: 450;
  color: #ff8c00;
  margin: 0;
}

/* Review Card Colors */
.reviewCards > .reviewCard:nth-child(1) {
  border-top: none;
  border-left: none;
}

.reviewCards > .specialCard2 {
  border-top: none;
  border-right: none;
}

.reviewCards > .reviewCard:nth-child(3) {
  border-bottom: none;
  border-left: none;
}

.reviewCards > .reviewCard:nth-child(4) {
  border-bottom: none;
  border-right: none;
}

.mainCard p {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 10px;
}

/* Action Section styles */

.Action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.actionContainer {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 2rem;
  min-height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #b4a01f;
  border-radius: 30px;
}

.actionLeft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.actionContent h2 {
  font-size: 1.75rem;
  font-weight: 450;
  margin-bottom: 5px;
}

/* Footer styles */

footer {
  width: 100%;
  background-color: #fffad9;
  margin-top: 100px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.footerContainer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0rem;
}

.footerTop h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 6px;
}

.footerTop p {
  font-size: 1.25rem;
  font-weight: 350;
}

.footerMiddle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 42px;
}

.footerLinks {
  display: flex;
  gap: 40px;
  margin: 20px 0px;
}

.footerLinks a {
  color: black;
}

.footerLinks a p {
  font-size: 1rem;
}

.footerBottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.tradeMarkImg {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.tradeMarkText p {
  font-size: 1rem;
  padding-right: 15px;
}

.footerLine {
  border: none;
  border-top: 0.5px solid #414141;
}

.CustomCopy {
  display: flex;
  justify-content: center;
  align-items: center;
}

.CustomText p span {
  font-size: 1.25rem;
  font-weight: 500;
  color: #F38624;
}

.CustomText p {
  font-size: 1.25rem;
  font-weight: 400;
}
