* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Lexend", sans-serif;
}

.hero {
  color: #333;
  height: 77vh;
  /* background: linear-gradient(to right, #fffde6, #e63b42); */
  background-size: 300% 100%;
  /* animation: bg-move 10s linear infinite; */
}

/*Start Animations*/
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
/*End Animations*/
/*
-- Start BackGround Animation 
*/
.area {
  /* background: #4e54c8;
	background: -webkit-linear-gradient(to left, #f9fafc, #e63b42); */
  /* background: linear-gradient(to right, #f9fafc, #e63b42); */

  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: -1;
}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 96%;
  overflow: hidden;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
/*
-- End BackGround Animation 
*/
.animated-background {
  background-size: 400%;

  -webkit-animation: animation 10s ease infinite;
  -moz-animation: animation 10s ease infinite;
  animation: animation 10s ease infinite;
}

@keyframes animation {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Background animation */
@keyframes bg-move {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 24px;
  color: #f44336;
}

.logo-text strong {
  color: #f44336;
}

.nav-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.btn-outline {
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-outline:hover {
  background-color: #f44336;
  color: #fff;
}

/* Hero Section */
.hero {
  text-align: center;
  /* padding: 100px 20px; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* color: ; */
  /* gap: 20px; */
  margin-top: -20px;
}

.herocont {
  width: 80%;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 500;
  color: white;
}

.hero .highlight {
  color: white;
  text-align: center;
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hero h2 {
  color: white;
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hero p {
  color: white;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 144.444% */
}

.cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-solid {
  background-color: #f44336;
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
}

.btn-solid:hover {
  background-color: white !important;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
  }

  .hero h1,
  .hero h2 {
    font-size: 2rem;
  }
  .herocont {
    width: 100%;
  }
}

.scale-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #fefcf9;
}

.scale-section h2 {
  color: #4c4c4c;
  text-align: center;
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.scale-section .highlight-red {
  color: #e60000;
  padding-left: 10%;
}

.scale-section .icon {
  display: inline-block;
  font-size: 2.4rem;
  vertical-align: middle;
  color: transparent;
  background: linear-gradient(45deg, #00f, #f0f, #f00);
  background-clip: text;
  -webkit-background-clip: text;
  animation: rotateIcon 5s linear infinite;
}
.icon {
  display: inline-block;
  font-size: 2.4rem;
  vertical-align: middle;
  color: transparent;
  background: linear-gradient(45deg, #00f, #f0f, #f00);
  background-clip: text;
  -webkit-background-clip: text;
  animation: rotateIcon 5s linear infinite;
}

/* Optional rotation animation */
@keyframes rotateIcon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .scale-section h2 {
    font-size: 2rem;
  }

  .scale-section .highlight-red {
    font-size: 2.2rem;
  }
}
.card_cont {
  height: 300px;
  border-radius: 12px;
  border: 0.5px solid #000;
  background: linear-gradient(180deg, #fffde6 0%, #fff 100%);
}
.card_txt h3 {
  color: #e10000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.card_txt p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}

.card_img {
  width: 99%;
  margin-top: -35px;
}

.card_img2 {
  margin-top: -35px;
  width: 130%;
  margin-left: -49px;
}

.why-maven {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  padding: 80px 40px;
  align-items: center;
  gap: 40px;
}

/* .why-left {
  flex: 1 1 300px;
  max-width: 500px;
} */

.why-title {
  color: #4c4c4c;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.why-title .underline {
  position: relative;
  display: inline-block;
}

.why-title .underline::after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: -10px;
  width: 130%;
  height: 40px;
  background: url("underline-sparkle.svg") no-repeat center;
  background-size: contain;
  z-index: -1;
}

.why-desc {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 144.444% */
}

.why-right {
  /* flex: 1 1 600px; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 90px;
}

.why-card-cont {
  background-color: #e95246;
  rotate: 2deg;
  border-radius: 10px;

  /* transform: rotate(2deg); */
}

.why-card {
  rotate: -2deg;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  position: relative;

  height: 250px !important;
  /* border: 1px solid red; */
  /* box-shadow: 0 0 10px rgba(0,0,0,0.05); */
}

.why-card img {
  width: 40px;
  margin-bottom: 10px;
}

.why-card h3 {
  color: #e95246;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}

.why-card p {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Reuse button style */
.btn-solid {
  background-color: #f44336;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: background 0.3s;
}

.btn-solid:hover {
  background-color: #d32f2f;
}

.int_cont h2 {
  color: #4c4c4c;
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.int_cont p {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 144.444% */
}

/* Responsive layout */
@media (max-width: 768px) {
  .why-maven {
    flex-direction: column;
    align-items: center;
  }
  .card_img2 {
    margin-top: -35px;
    width: 130%;
    margin-left: -49px;
  }
  .card_img2 {
    margin-top: 19px;
    width: 60%;
    margin-left: 40px;
  }
  .why-left {
    max-width: 100%;
    text-align: center;
  }
  .why-maven {
    padding: 40px 40px;
  }
  .int_cont h2 {
    font-size: 44px;
  }

  .why-title {
    font-size: 2rem;
  }

  .why-right {
    grid-template-columns: 1fr;
  }
  .card_cont {
    height: auto;
  }
  /* .herocont{
    width: 100% !important;
  } */
}

.int-feature_cont {
  position: relative;
}
.feature_cont1 {
  position: absolute;
  top: -7px;
  right: 3%;
}
.feature_contimg {
  position: absolute;
  bottom: 0px !important;
  right: 3% !important;
}
.feature_contbg {
  position: absolute;
  top: 5% !important;
  left: 3% !important;
}

.int-feature {
  border-radius: 12px;
  border: 0.5px solid #000;
  background: #fffcee;
  padding: 30px;
  height: 300px;
}
.int-feature h3 {
  color: #e95246;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 60%;
}
.int-feature p {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 60%;
}
.int-feature button {
  border-radius: 1434.411px;
  background: #e95246;
  padding: 7px 10px;
  border: none;
  color: white;
}

@media (max-width: 768px) {
  .feature_contimg {
    position: static !important;
  }
  .int-feature {
    height: auto;
  }
  .int-feature h3 {
    width: 100%;
    margin-top: 20px;
  }
  .int-feature p {
    width: 100%;
  }
  .feature_contimg {
    width: 70% !important;
    margin-top: 20px;
  }
  .navbarn {
    padding: 1.2rem 2rem;
  }
  .hero {
    margin-top: 31px !important;
    margin-bottom: 30px !important;
    height: 67vh !important;
  }

  .scale-section { 
    padding: 36px 20px !important; 
  }
  .section {
    padding: 6rem 1.5rem 5rem !important;
 
}
}
