/**Global CSS**/
:root {
  --body-background: linear-gradient(to right, #FFF8EC, #FEF6F6);
  --heading-font: "Inter", sans-serif;
  --body-font: "Roboto", sans-serif;
  --body-color: #000;
  --white: #fff;
  --black: #000;
  --primary-color: #ff8c00;
  --button-hover-color: #dc7800;
  --header-footer-background: #ffffff;
  --testimonial-form-background: #f5f5f5;
  --form-color: #525252;
  --company-icon-background: transparent;
  --theme-toggle-background: #000000;
  --plan-button-color: #ff8c00;
  --header-nav: #414141;
  --quote-icon: rgba(0, 0, 0, 0.1);

  --light-grey: #686969;
  --light-logo-color: #ffb964;
  --extra-light-grey: #F8F8F8;
  --orange-gradient: linear-gradient(0deg, rgba(255, 140, 0, 1) 0%, rgba(255, 185, 100, 1) 100%);
}

[data-theme="dark-theme"] {
  --body-background: linear-gradient(to right, #3f3f3f, #1d1d1d);
  --body-color: #f0f0f0;
  --header-footer-background: #444444;
  --testimonial-form-background: #444444;
  --form-color: #fff;
  --button-hover-color: #b86500;
  --theme-toggle-background: #686969;
  --plan-button-color: #ffffff;
  --header-nav: #dddddd;
  --company-icon-background: #f6f6f6;
  --quote-icon: rgba(255, 255, 255, 0.5);
  --second-color: #fff;
  --light-logo-color: #ffb964;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: var(--body-font);
  background: var(--body-background);
  color: var(--body-color);
  margin: 0;
  overflow-x: hidden;
  width: 100%;
  font-size: 18px;
  line-height: 1.5;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  line-height: 1.3;
  color: var(--body-color);
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  max-width: 800px;
}

h2 {
  font-size: 3rem;
  font-weight: bold;
}

h3 {
  font-size: 2rem;
}

h4,
h5,
h6 {
  font-size: 1.5rem;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

small {
  font-size: 0.8em;
  line-height: 1.2;
  display: block;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.5s ease;
}

a:hover {
  color: var(--body-color)
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 0;
  font-family: var(--body-font);
}

footer .container {
  border-top: 1px solid var(--primary-color)
}

section#hero {
  border: 0;
}

section#client {
  border-top: 0;
}

.container {
  padding: 5rem 8rem 3rem;
}

#hero .container {
  padding-bottom: 0
}

#testimonial .container {
  padding-bottom: 5em;
}

button,
.button {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  line-height: 1;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background-color: var(--primary-color);
  color: var(--white);
  transition: background-color 0.5s ease;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

button:hover,
button:active,
button:focus,
.button:hover {
  background-color: var(--body-color);
  color: var(--white);
}
[data-theme="dark-theme"] button:hover,
[data-theme="dark-theme"] button:active,
[data-theme="dark-theme"] button:focus,
[data-theme="dark-theme"] .button:hover {
  color: var(--black);
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 15px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: none;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  transition: opacity 0.3s ease-in-out;
}

.back-to-top:hover {
  background: var(--button-hover-color);
}

/**theme toggle**/
.theme-toggle-container {
  position: fixed;
  top: 45px;
  right: 0;
  font-size: 20px;
  cursor: pointer;
  padding: 12px 12px 12px 16px;
  line-height: 1;
  border-radius: 20px 0 0 20px;
  background-color: var(--theme-toggle-background);
  color: var(--white);
  z-index: 1001;
  transition: all 0.5s ease-in;
}

.theme-toggle-container .icon-flip i {
  pointer-events: none;
}

/**header**/
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

.logo {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
}

.logo a {
  text-decoration: none;
  color: var(--primary-color);
}

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

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  padding-right: 2em;
}

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  color: var(--header-nav);
  font-size: 1rem;
  padding: 5px 0;
  transition: color 0.3s, box-shadow 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-color);
  box-shadow: inset 0 -2px 0 0 var(--primary-color);
}

.menu-buttons {
  display: flex;
  gap: 1em;
}

.header-nav-btn {
  padding-right: 0.5em;
}
.menu-buttons .outline-btn, .menu-buttons .signup-btn {
  padding: 0.5rem 1.25rem;
}
.menu-buttons .outline-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}
[data-theme="dark-theme"] .menu-buttons .outline-btn {
  border: 2px solid var(--white);
  color:var(--white)
}
.menu-buttons .outline-btn:hover {
  background: var(--button-hover-color);
  color: var(--white);
  border-color: var(--button-hover-color);
}

.menu-buttons .signup-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  border: 2px solid var(--primary-color);
}

.menu-buttons .signup-btn:hover {
  background-color: var(--button-hover-color);
  color: var(--white);
  border-color: var(--button-hover-color);
}

.menu-toggle.fa-bars {
  visibility: hidden;
  display: none;
}

/**hero**/
#hero .container {
  display: flex;
  justify-content: space-between;
  margin: auto;
  align-items: center;
  padding-top: 2.5rem;
}

.hero-left {
  width: 60%;
}

.hero-left p {
  max-width: 800px;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.hero-left-buttons {
  display: flex;
  gap: 2rem;
}

.view-demo-btn {
  background-color: transparent;
  color: var(--body-color);
  border: 2px solid var(--primary-color);
  transition: background 0.5s ease-in;
}

.view-demo-btn::before {
  content: "\f144";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.2rem;
  margin: 0 0.5em 0 0;
}

.view-demo-btn:hover,
.view-demo-btn:hover::before {
  color: var(--white);
  border-color: var(--body-color)
}
[data-theme="dark-theme"] .view-demo-btn:hover,
[data-theme="dark-theme"] .view-demo-btn:hover::before {
  color:var(--black)
}
.hero-right {
  position: relative;
  width: 40%;
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: 450px;
  border-radius: 10px;
  object-fit: cover;
  pointer-events: none;
}

#hero .outer-container {
  position: relative;
  display: inline-block;
  width: max-content;
}

#hero .image-container {
  position: relative;
  z-index: 1;
}

#hero .star-field {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate(-10%, -10%);
  pointer-events: none;
  z-index: 0;
}

#hero .star {
  position: absolute;
  color: var(--body-color);
  font-size: 1.2rem;
  height: 30px;
  width: 30px;
  opacity: 0;
  animation: twinkle 4s infinite ease-in-out;
}

/**Client**/
.our-client h2 {
  margin: 2rem 0;
  text-align: center;
}

.our-client-company-icon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 100%;
}

.our-client-company-icon a {
  flex: 1 1 200px;
  max-width: 200px;
  display: flex;
  justify-content: center;
}

.our-client-company-icon .company-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  background: var(--company-icon-background);
  border: 2px solid var(--company-icon-background);
  border-radius: 10px;
  padding: 2em;
  transition: all 0.5s ease-in-out;
}

.our-client-company-icon .company-icon:hover {
  scale: 1.1;
}

[data-theme="dark-theme"] .our-client-company-icon .company-icon:hover {
  border: 2px solid var(--primary-color);
}

/**support**/
#support .container {
  display: flex;
  justify-content: space-between;
  gap: 8rem
}

.support-left {
  max-width: 50%;
}

.support-right {
  max-width: 50%;
}

.support-left p {
  margin-top: 0.5rem;
  font-size: 1.25rem;
}

.support-left-rating {
  display: flex;
  gap: 5em;
  margin-top: 3rem;
}

.support-left-rating p {
  margin-top: 0.75rem;
}

.support-left-rating p span {
  font-weight: 900;
}

.support-left-rating .first-rating i.fa-star,
.support-left-rating .second-rating i.fa-star {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.support-right .support-items .support-item {
  display: flex;
  gap: 1.5rem;
}

.support-right .support-items .support-item h4 {
  margin-bottom: 0.5rem;
}

.support-right .support-items .support-item p {
  color: var(--body-color);
  margin-bottom: 2rem;
}

.support-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  margin-top: 5px;
}

.support-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

/**features**/
.upper-feature-section {
  display: flex;
  justify-content: space-between;
  padding-bottom: 4rem;
  align-items: center;
  gap: 3rem;
}

.upper-feature-section h2 {
  margin-bottom: 0.5rem;
}

.upper-feature-section p {
  font-size: 1.25rem;
  color: var(--body-color);
  max-width: 940px;
}

.upper-feature-section .features-btn {
  line-height: 1;
  font-size: 22px;
  white-space: nowrap;
}

.lower-feature-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature-container {
  flex: 1 1 30%;
  max-width: 30%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
}

.icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
  transform-origin: center;
  transform-style: preserve-3d;
}

.feature-container:hover .icon-wrap {
  transform: rotateY(180deg) scale(1.05);
}

.feature-container i {
  font-size: 2.5rem;
  color: var(--primary-color);
  display: block;
}

.feature-container h3 {
  margin: 0 0 0.5rem;
}

.feature-container p {
  max-width: 95%;
  color: var(--body-color);
}

/**benefit**/
.benefit-header {
  text-align: center;
  margin-bottom: 3rem;
}

.benefit-header h2 {
  margin-bottom: 0.5rem;
}

.benefit-header p {
  font-size: 1.25rem;
  color: var(--body-color);
  max-width: 800px;
  margin: 0 auto;
}

.benefit-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1620px;
  margin: auto;
}

.benefit-list {
  flex: 1 1 calc(33% - 1rem);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width:1499px) {
  .benefit-list {
    padding-top: 3em
  }
}
@media (min-width:1699px) {
  .benefit-list {
    padding-top: 5em
  }
}

.benefit-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.benefit-list li::before {
  content: "\f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--primary-color);
  font-size: 1.3rem;
  line-height: 1.5;
}

.benefit-image {
  flex: 1 1 calc(30% - 1rem);
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-hero-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/**plan & pricing**/

#plan-and-pricing {
  text-align: center;
}

.pricing-header {
  padding-bottom: 1em;
}

.pricing-header h2 {
  margin-bottom: 0.5em;
}

.pricing-header p {
  color: var(--body-color);
  font-size: 24px;
  max-width: 800px;
  margin: 0 auto 1em;
}

.billing-options {
  display: inline-block;
  gap: 5px;
  padding: 15px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.billing-button {
  flex: 1;
  padding: 1em 3em;
  border: none;
  background: transparent;
  color: #333;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
}

.billing-button.active {
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50px;
}

.billing-button:not(.active):hover {
  border-color: var(--button-hover-color);
  background: transparent;
  color: var(--button-hover-color);
}

.billing-button:focus {
  outline: none;
  box-shadow: none;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 2.5em;
  padding-top: 1em;
}

.pricing-cards .card {
  background: var(--white);
  padding: 20px;
  border: 2px solid transparent;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 400px;
  max-width: calc(33% - 1em);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.pricing-cards .card.pricing-plan {
  padding: 2em;
}

.pricing-cards .card.pricing-plan:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.pricing-cards .card.selected {
  border-color: var(--primary-color);
}

.pricing-cards .card.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--primary-color);
  transform: scale(1.08);
}

.pricing-cards .card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: var(--black);
}

.pricing-cards .card h4 {
  font-size: 3em;
  margin: 20px 0;
  color: var(--black);
}

.pricing-cards .card p {
  font-size: 0.9em;
  opacity: 0.75;
  color: var(--black);
}
.pricing-cards .card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  color: var(--black)
}

.pricing-cards .card ul li {
  position: relative;
  margin: 10px 0;
  text-align: center;
}

.pricing-cards .card .go-to-pro-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.5s ease-in;
}

.pricing-cards .card .go-to-pro-button:hover {
  background-color: var(--button-hover-color);
  color: var(--white);
}

.pricing-cards .card .signup-button {
  display: inline-block;
  padding: 1rem 2rem;
  color: var(--primary-color);
  text-decoration: none;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
}

.pricing-cards .card .signup-button:hover {
  background: var(--button-hover-color);
  color: var(--white);
  border: 2px solid var(--button-hover-color);
}

.pricing-cards .side-plan-content {
  background: var(--extra-light-grey);
  border-radius: 10px;
  padding: 1.5em;
}

.pricing-cards .main-plan-content {
  background: var(--extra-light-grey);
  border-radius: 10px;
  padding: 1.5em;
}

.pricing-cards .pro-plan {
  background: var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease-in-out;
}

.pricing-cards .pro-plan:hover {
  transform: scale(1.08);
}

.pricing-cards .pro-plan h3,
.pricing-cards .pro-plan h4,
.pricing-cards .pro-plan p {
  color: var(--white);
  opacity: 1;
}

.pricing-cards span.small {
  display: block;
  font-size: 0.35em;
  color: var(--white);
  border-radius: 10px;
  padding: 0.5em 0;
  margin: 0.5em auto;
}

/**testimonial**/
#testimonial .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3em;
}

.testimonial-heading {
  font-size: 2.25rem !important;
  padding-bottom: 1em;
}

.testimonial-left {
  width: 60%;
}

.testimonial-right {
  width: 50%;
}

.testimonial-left h2 {
  color: var(--body-color);
}

.testimonial-left p {
  color: var(--body-color);
  margin: 1rem 0;
  max-width: 80%;
  font-size: 1.25em;
}

.testimonial {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial.fade-in {
  opacity: 1;
}

.testimonial.fade-out {
  opacity: 0;
}

.testimonial[hidden] {
  display: none !important;
}

.testimonial-para,
.testimonial-author {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-wrapper {
  position: relative;
}

.testimonial-wrapper i {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 100px;
  color: var(--quote-icon);
  opacity: 0.3;
  pointer-events: none;
  transform: translateY(-50px) rotate(180deg) rotateY(180deg);
}

.testmonial-para {
  margin-bottom: 2em;
}

button.testimonial-btn {
  width: 100%;
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
}

button.testimonial-btn:hover {
  background-color: var(--button-hover-color);
  color: var(--white);

}

.testimonial-alternative {
  margin-top: 20px;
}

.testimonial-alternative span {
  color: var(--white);
}

.testimonial-alternative a {
  color: var(--white);
  text-decoration: none;
}

.testimonial-alternative a:hover {
  text-decoration: underline;
}

.testimonial-avatar {
  display: flex;
  flex-wrap: wrap;
  margin: 2em 0;
  gap: 20px;
}

.testimonial-avatar .testimonial-image {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  border: 2px solid transparent;
}

.testimonial-avatar .testimonial-image:hover,
.testimonial-image.active {
  transform: scale(1.1);
  border-color: var(--primary-color);
}

.fade-out {
  opacity: 0;
}

/* Get Started Form */
.get-started-container {
  background-color: var(--primary-color);
  padding: 3em 4em;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 100%;
  text-align: center;
  align-items: center;
  color: var(--body-color);
  margin: 0 auto;
}

.get-started-container h3 {
  margin: 20px 0;
  color: var(--white);
}

.get-started-form-group {
  margin-bottom: 2em;
}

.get-started-form-group label {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.get-started-form-group input,
.get-started-form-group textarea {
  font-size: 18px;
  background: transparent;
  color: var(--white);
  border: 0;
  border-bottom: 2px solid var(--white);
  border-radius: 0;
  padding: 0.75em 0;
  transition: all 0.5s ease-in-out;
}

.get-started-form-group input:active,
.get-started-form-group input:focus,
.get-started-form-group input:focus-visible,
.get-started-form-group textarea:active,
.get-started-form-group textarea:focus,
.get-started-form-group textarea:focus-visible {
  border: 0;
  border-bottom: 2px solid var(--light-logo-color);
  outline: none;
}

.get-started-form-group textarea {
  min-height: 38px;
  max-height: 160px;
  resize: none;
  overflow: hidden;
  transition: height 0.2s ease-in-out;
}

.get-started-form-group input::placeholder,
.get-started-form-group textarea::placeholder {
  color: var(--white);
}

.get-started-form-group button {
  padding: 1.5em;
  font-size: 18px;
}

.get-started-container i {
  font-size: 60px;
  color: var(--white);
}


/**footer**/
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--body-color);
  padding-bottom: 2em;
  gap: 2em;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.25em;
}

.footer-logo a {
  text-decoration: none;
  color: var(--primary-color);
}

.footer-left .tagline {
  color: var(--header-nav);
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1em;
}

.footer-links {
  display: flex;
  justify-content: start;
  align-items: center;
}

.footer-links ul {
  column-count: 3;
  column-gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.footer-links li {
  break-inside: avoid;
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--header-nav);
  text-decoration: none;
  display: block;
}

.footer-right ul li {
  color: var(--header-nav);
  text-decoration: none;
  display: block;
}

.footer-right ul li a {
  text-decoration: none;
}

.footer-right ul li a:hover {
  color: var(--primary-color);
}

.social-media-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-media-links li a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1.25rem;
  color: var(--body-color);
}

.social-media-links li a:hover {
  color: var(--primary-color);
}

.copyright {
  margin-top: 2em;
  font-size: 0.8rem;
  opacity: 0.7;
}

@media (max-width: 1500px) {
  .our-client-company-icon {
    gap: 2rem;
  }

  .our-client-company-icon .company-icon {
    width: 160px;
    height: 160px;
  }

  .our-client-company-icon a {
    flex: 1 1 160px;
    max-width: 160px;
  }
}

@media (max-width: 1400px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  #support .container {
    gap: 5rem
  }

  .feature-container h3 {
    font-size: 2rem;
  }
}

@media (max-width: 1200px) {
  .logo {
    font-size: 2rem;
  }

  nav ul {
    gap: 1.75rem;
  }

  nav ul li a,
  .menu-buttons .outline-btn,
  .menu-buttons .signup-btn {
    font-size: 0.9rem;
  }


  .theme-toggle-container {
    top: 34px;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2,
  .testimonial-left h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 2.2rem;
  }

  p,
  .hero-left p {
    font-size: 1.15rem;
  }

  .our-client-company-icon .company-icon {
    width: 120px;
    height: 120px;
  }

  .our-client-company-icon a {
    flex: 1 1 120px;
    max-width: 120px;
  }

  .support-left-rating {
    flex-direction: column;
    gap: 3em;
    margin-top: 2rem;

  }

  .benefit-content {
    gap: 4rem;
    align-items: flex-start;
  }

  .benefit-image {
    display: none;
  }

  .benefit-list {
    flex: 1 1 calc(50% - 2rem);
  }

  #plan-and-pricing .container {
    padding-top: 0
  }
}

@media (max-width: 1024px) {
  .container {
    padding-top: 2em;
    padding-bottom: 2em
  }

  .hero-left-buttons .button,
  .hero-left-buttons .view-demo-btn {
    padding: 0.75em 1.25rem;
    text-align: center;
    font-size: 16px;
  }

  #support .container {
    flex-direction: column;
    gap: 3rem;
    padding-bottom: 0
  }

  .support-left,
  .support-right {
    max-width: 100%;
  }

  .upper-feature-section {
    align-items: flex-start;
    gap: 1rem;
    flex-direction: column;
  }

  .feature-container h3 {
    font-size: 1.5rem;
  }

  .pricing-cards .card .signup-button,
  .pricing-cards .card .go-to-pro-button {
    padding: 0.5rem 1rem;
    font-size: 16px;
  }

  #testimonial .container {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-left h2,
  .testimonial-left p,
  .testimonial-avatar {
    width: 100%;
  }

  .testimonial-left,
  .testimonial-right {
    width: 100%;
  }

  .testimonial-left p {
    text-align: center;
    max-width: 100%;
  }

  .testimonial-avatar {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  #benefit .container,
  .upper-feature-section,
  .lower-feature-section,
  footer .container {
    display: block;
  }

  h1 {
    font-size: 3rem;
    margin-bottom:1.75rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  h3 {
    font-size: 2rem;
  }

  .hero-left button {
    font-size: 1.2em;
    padding: 0.8rem 1.2rem;
  }

  header .container {
    padding: 2rem 1.5rem;
  }

  .theme-toggle-container {
    top: 42px;
  }

  p {
    font-size: 1rem
  }

  #hero .container {
    padding-top: 1.5rem
  }

  .hero-image {
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }

  #hero .outer-container {
    width: 100%;
  }

  .benefit-hero-image {
    display: none;
  }

  .our-client-company-icon .company-icon {
    width: 90px;
    height: 90px;
    padding: 1em;
  }

  .our-client-company-icon a {
    flex: 1 1 90px;
    max-width: 90px;
  }

  .support-left,
  .support-right {
    max-width: 100%;
  }

  .support-left p {
    margin-top: 1em;
  }

  .support-right .support-items .support-item h3,
  .support-right .support-items .support-item p {
    margin-left: 0;
  }


  .support-left-rating {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    margin-top: 5rem;
  }

  .support-left-rating {
    margin: 2em 0;
  }

  .upper-feature-section {
    padding-bottom: 2em;
    text-align: center;
  }

  .upper-feature-section h2,
  .upper-feature-section p {
    max-width: 100%;
    margin-bottom: 1em;
  }

  .upper-feature-section .features-btn {
    width: auto;
    display: inline-block;
    margin: auto;
  }

  .feature-container {
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }

  .features-description {
    order: 1;
  }

  .feature-container i {
    order: -1;
  }

  .features-description p {
    margin-bottom: 2rem;
  }

  .our-client-company-icon img {
    width: 100px;
  }
  .menu-toggle.fa-bars {
    visibility: visible;
    display: block;
  }

  .menu-toggle {
    visibility: visible;
    display: block;
    position: absolute;
    right: 60px;
    top: 44px;
    z-index: 9999;
    font-size: 40px;
    color: var(--primary-color);
    padding-right: 0.2em;
    cursor: pointer;
  }

  [data-theme="dark-theme"] .fa-solid.fa-bars.menu-toggle,
  .menu-toggle.fa-xmark {
    color: var(--white);
  }

  .menu-toggle.fa-xmark {
    top: 0.5em;
    right: 0.5em;
    position: fixed
  }

  nav,
  .menu-buttons {
    display: none;
  }

  .menu-content {
    display: none;
  }

  .menu-content.active-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--primary-color);
    background: var(--orange-gradient);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding-top: 5em;
    padding-bottom: 2em;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.4s ease-out forwards;
    overflow-y: auto;
  }

  .menu-content.closing {
    animation: slideOut 0.4s ease-in forwards;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1001;
    display: none;
  }

  .menu-overlay.active {
    display: block;
  }

  .menu-content.active-menu nav,
  .menu-content.active-menu .menu-buttons {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .menu-content.active-menu nav ul {
    flex-direction: column;
    text-align: center;
    list-style: none;
    padding: 0;
    width: 100%;
    gap: 1.25rem;
  }

  .menu-content.active-menu nav ul li {
    margin: 10px 0;
  }

  .menu-content.active-menu nav ul li a {
    color: var(--white);
    font-size: 22px;
  }

  nav ul li a:hover,
  nav ul li a.active {
    box-shadow: inset 0 -2px 0 0 var(--white);
  }

  .menu-content.active-menu .menu-buttons {
    margin-top: 20px;
  }

  .menu-content.active-menu .menu-buttons button {
    border: none;
    cursor: pointer;
    transition: background 0.3s;
  }

  .menu-content.active-menu .menu-buttons .login-btn {
    background: none;
    border: none;
    color: var(--header-nav);
    padding: 0.8rem 1.5rem !important;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s;
    border: 2px solid var(--primary-color);
  }

  .menu-buttons .signup-btn {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
  }

  .menu-buttons .outline-btn {
    border-color: var(--white);
    color: var(--white);
  }

  .menu-buttons .signup-btn:hover,
  .menu-buttons .outline-btn:hover {
    background: var(--button-hover-color);
    border-color: var(--button-hover-color);
    color: var(--white)
  }

  .benefit-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0
  }


  .pricing-header h2 {
    max-width: 100%;
  }

  .billing-options {
    margin-bottom: 1.5em;
  }

  .pricing-cards {
    margin-top: 0;
    padding-top: 0;
    flex-direction: column;
    gap: 2em
  }

  .pricing-cards .card {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .pricing-cards .card.pricing-plan:hover,
  .pricing-cards .pro-plan,
  .pricing-cards .pro-plan:hover,
  .pricing-cards .card.active {
    transform: unset
  }

  .side-plan-content,
  .main-plan-content {
    display: none;
  }

  .pricing-cards .card.active .side-plan-content,
  .pricing-cards .card.active .main-plan-content {
    display: block;
  }

  .benefit-left h2 {
    max-width: 100%;
  }

  footer .container,
  .social-media-links {
    text-align: center;
    justify-content: center
  }

  .footer-right {
    margin-top: 1.5em;
  }

  .copyright {
    margin-top: 1.5em;
    padding-left: 0;
  }


  .footer-links {
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }

  .footer-left p {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .mobile-hide {
    display: none;
  }
  h1 {
    font-size:2.5rem;
  }

  #hero .container {
    display: block;
  }

  .container {
    padding: 2rem 1.5rem;
  }

  .hero-left {
    width: 100%;
    text-align: center;
  }

  .hero-left-buttons {
    justify-content: center;
    padding: 0;
    gap: 1em;
  }

  .our-client-company-icon .company-icon {
    width: 160px;
    height: 160px;
  }

  .our-client-company-icon a {
    flex: 1 1 160px;
    max-width: 160px;
  }

  .pricing-cards .card {
    cursor: pointer;
  }
}

@media (max-width: 576px) {
  .footer-right {
    float: none;
    margin: 1em 0;
  }

  .get-started-container {
    padding: 4em;
  }

  .footer-links ul {
    columns: 1
  }
}

@media (max-width: 476px) {
  .menu-content.active-menu {
    width: 100%;
  }

  .hero-left-buttons {
    flex-direction: column;
  }

  .main-button,
  .view-demo-btn {
    width: 100%;
  }

  .hero-left-buttons .button,
  .hero-left-buttons .view-demo-btn {
    height: 50px
  }

  .get-started-container {
    padding: 2em 1.5em 1.5em 1.5em;
  }

  .billing-options {
    display: block;
  }

  .billing-button {
    margin-bottom: 0.5em;
  }

  .footer-links {
    display: block;
  }
}
.fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.fadeIn.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0%);
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(100%);
  }
}


@keyframes twinkle {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}
/* fallback for users who opt out of animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
