/* Font Face Definitions */

@font-face {
  font-family: 'Roboto-Black';
  src: url('../fonts/Roboto-Black.woff2') format('woff2'),
       url('../fonts/Roboto-Black.woff') format('woff'),
       url('../fonts/Roboto-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto-BlackItalic';
  src: url('../fonts/Roboto-BlackItalic.woff2') format('woff2'),
       url('../fonts/Roboto-BlackItalic.woff') format('woff'),
       url('../fonts/Roboto-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'Roboto-Bold';
  src: url('../fonts/Roboto-Bold.woff2') format('woff2'),
       url('../fonts/Roboto-Bold.woff') format('woff'),
       url('../fonts/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto-BoldItalic';
  src: url('../fonts/Roboto-BoldItalic.woff2') format('woff2'),
       url('../fonts/Roboto-BoldItalic.woff') format('woff'),
       url('../fonts/Roboto-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Roboto-Italic';
  src: url('../fonts/Roboto-Italic.woff2') format('woff2'),
       url('../fonts/Roboto-Italic.woff') format('woff'),
       url('../fonts/Roboto-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Roboto-Light';
  src: url('../fonts/Roboto-Light.woff2') format('woff2'),
       url('../fonts/Roboto-Light.woff') format('woff'),
       url('../fonts/Roboto-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto-LightItalic';
  src: url('../fonts/Roboto-LightItalic.woff2') format('woff2'),
       url('../fonts/Roboto-LightItalic.woff') format('woff'),
       url('../fonts/Roboto-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Roboto-Medium';
  src: url('../fonts/Roboto-Medium.woff2') format('woff2'),
       url('../fonts/Roboto-Medium.woff') format('woff'),
       url('../fonts/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto-MediumItalic';
  src: url('../fonts/Roboto-MediumItalic.woff2') format('woff2'),
       url('../fonts/Roboto-MediumItalic.woff') format('woff'),
       url('../fonts/Roboto-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Roboto-Regular';
  src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
       url('../fonts/Roboto-Regular.woff') format('woff'),
       url('../fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto-Thin';
  src: url('../fonts/Roboto-Thin.woff2') format('woff2'),
       url('../fonts/Roboto-Thin.woff') format('woff'),
       url('../fonts/Roboto-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto-ThinItalic';
  src: url('../fonts/Roboto-ThinItalic.woff2') format('woff2'),
       url('../fonts/Roboto-ThinItalic.woff') format('woff'),
       url('../fonts/Roboto-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}
























/* Global Styles Start > */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

/* Global Styles End < */
























/* Header Start > */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.logo img {
  max-width: 150px;
  height: auto;
}

.nav-links ul {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links ul li {
  margin-right: 30px;
}

.nav-links ul li:last-child {
  margin-right: 0;
}

.nav-links ul li a {
  text-decoration: none;
  color: #4d4d4d;
  font-weight: bold;
  text-transform: capitalize;
}

.nav-links ul li a:hover,
.nav-links ul li a:focus {
  color: #007bff;
  outline-offset: 2px;
}

body {
  padding-top: 60px;
}

@media only screen and (max-width: 600px) {
  .header {
    flex-direction: column;
  }

  .logo img {
    max-width: 150px;
    height: auto;
  }

  .nav-links {
    padding: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .nav-links ul {
    padding: 5px;
  }

  .nav-links ul li a {
    font-size: 16px;
  }
}

/* Header End < */


































/* Welcome Section Start > */

.welcome-section {
  background-image: url("../images/LandingPage-Banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #f6f6f6;
  height: auto;
}

.welcome-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 650px;
  height: auto;
  flex: 1;
  margin: 80px 150px;
  padding: 20px;
}

.welcome-content h2 {
  font-family: 'Roboto-Thin', sans-serif;
  font-size: 85px;
  margin-bottom: 10px;
  color: #fff;
  line-height: 0.5;
}

.welcome-content h3 {
  font-family: 'Roboto-Medium', sans-serif;
  font-size: 100px;
  margin-bottom: 20px;
  color: #4d4d4d;
  line-height: 1.3;
}

.welcome-content p {
  font-family: 'Roboto-Regular', sans-serif;
  font-size: 21px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #fff;
}

.button {
  padding: 8px 16px;
  background-color: #fff;
  color: #0647fe;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
  max-width: 125px;
  width: auto;
}

.button:hover,
.button:focus {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0);
  outline: 2px solid rgba(255, 255, 255, 1);
  color: #fff;
}

.button:active {
  background-color: #004494;
  transform: scale(1.03);
}

@media only screen and (max-width: 1200px) {
  .welcome-section {
    padding: 40px;
    background-color: #f6f6f6;
    height: auto;
  }

  .welcome-content {
    max-width: 90%;
    height: auto;
    margin: 20px;
    padding: 0 10px;
  }

  .welcome-content h1 {
    font-size: 80px;
    margin-bottom: 15px;
  }

  .welcome-content h2 {
    font-size: 80px;
    margin-bottom: 15px;
  }

  .welcome-content p {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .button {
    padding: 10px;
    font-size: 12px;
    max-width: 100%;
    width: 200px;
  }
}

@media only screen and (max-width: 768px) {
  .welcome-section {
    margin: 10px 0;
    padding: 20px;
  }

  .welcome-content {
    margin: 10px;
    padding: 10px;
  }

  .welcome-content h2 {
    font-size: 40px;
    margin-top: 50px;
  }

  .welcome-content h3 {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .welcome-content p {
    font-size: 14px;
    margin-bottom: 10px;
  }

}

/* Welcome Section End < */


































/* Box Section Start > */

.about-section {
  margin-top: 100px;
}

.boxes-section {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}

.box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #fff;
}

.box p {
  font-family: 'Roboto-Regular', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  max-width: 80%;
  margin-bottom: 15px;
}

.box h2 {
  font-family: 'Roboto-Medium', sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
  color: #4d4d4d;
}

.box img {
  width: 300px;
  height: auto;
}

/* Responsive Styles */
@media (max-width: 1200px) {

  .about-section {
    margin-top: 50px;
  }
  .boxes-section {
    flex-direction: column;
    padding: 0;
  }

  .box {
    margin-bottom: 20px;
  }

  .divider {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .boxes-section {
    flex-direction: column;
  }

  .box {
    flex: 1;
    margin: 10px 0;
  }

  .box p {
    width: 100%;
  }

  .box img {
    max-width: 80%;
    height: auto;
  }
}

/* Box Section End > */

























/* Mission Section Start > */

.mission-section {
  text-align: center;
  padding: 20px;
  margin: 0 auto;
  max-width: 875px;
  background-color: #fff;
}

.divider-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 10px;
}

.divider {
  width: 1200px;
  height: auto;
  padding: 20px;
}

.mission-text {
  font-size: 24px;
  line-height: 1.6;
  color: #007bff;
}

@media only screen and (max-width: 1200px) {

  .mission-section {
    padding: 0;
    margin-bottom: 50px;
  }

  .divider {
    width: 100%;
  }

  .divider-image {
    margin: 0 10px;
  }

  .mission-text {
    margin: 0 auto;
    width: 600px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .mission-section {
    padding: 15px;
    margin: 0 10px;
    max-width: 100%;
  }

  .divider-image {
    margin: 15px 0;
  }

  .divider {
    width: 100%;
    max-width: 100%;
    padding: 10px;
  }

  .mission-text {
    font-size: 18px;
    line-height: 1.5;
    width: auto;
    margin: 0 auto;
  }
}


/* Mission Section End < */
































/* Services Section Start > */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 50px;
  color: #0647fe;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
  text-align: center;
}

.services-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.service-box {
  width: calc(20% - 20px);
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease; /* Transition properties */
}

.service-box:hover {
  transform: scale(1.03); /* Scale up on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.icon {
  width: 50px;
}

.icon-hst {
  width: 40px;
}

.service-title {
  font-size: 20px;
  color: #4d4d4d;
}

.service-list {
  padding: 0;
  list-style-type: none;
  margin: 0;
  width: 100%;
  color: #4d4d4d;
}

.service-list li {
  margin: 10px 0;
}

.service-text {
  font-size: 16px;
  color: #666;
}

.services-grid .service-box:first-of-type .service-title {
  margin-top: -10px;
}

.services-grid .service-box:nth-of-type(2) .quick-sub {
  margin-bottom: 10px;
}

.services-grid .service-box:nth-of-type(3) .sales-sub {
  margin-bottom: 10px;
}

@media only screen and (max-width: 1200px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .service-box {
    width: 90%;
    max-width: 100%;
    margin: 20px 0;
  }
}

@media only screen and (max-width: 800px) {
  .container {
    padding: 0;
  }

  .services-section {
    padding: 10px;
  }

  .services-grid {
    flex-direction: column;
    gap: 15px;
  }

  .service-box {
    width: 100%;
    margin: 15px 0;
  }
}

@media only screen and (max-width: 480px) {
  .services-grid {
    gap: 10px;
  }

  .service-box {
    width: 100%;
    margin: 10px 0;
  }

  .service-title {
    font-size: 18px;
  }

  .service-text {
    font-size: 14px;
  }
}

/* Services Section End < */














/* Premium Services Section Start > */

.premium-services {
  display: flex;
  justify-content: center;
}

.premium-subtitle {
  font-size: 18px;
  color: #4d4d4d;
  margin-top: 50px;
  text-align: center;
  margin-bottom: 50px;
}

/* Premium Services Section End < */

















/* Feature Section Start > */

.feature-section {
  background-image: url("../images/BGGraphicImage.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  position: relative;
}

.feature-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
  position: relative;
  height: 1000px;
}

.payroll-feature, .receipt-management-feature {
  background: rgba(255, 255, 255, 1);
  padding: 20px;
  margin-bottom: 20px;
  width: 100%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: 1.4px solid #0647fe;
  border-radius: 10px;
}

.payroll-feature:hover, .receipt-management-feature:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.feature-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.feature-title {
  font-size: 24px;
  margin: 0;
  color: #4d4d4d;
  padding: 20px;
}

.feature-icon {
  width: 50px;
  height: auto;
  position: absolute;
  top: 0px;
  right: 0px;
}

.feature-content {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  line-height: 20px;
  
}

.feature-left-list, .feature-right-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 10px;
  flex: 1;
  padding: 5px;
}

.feature-left-list {
  padding-right: 5px;
}

.feature-left-list li, .feature-right-list li {
  padding: 10px;
  color: #4d4d4d;
}

.feature-right-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media only screen and (max-width: 1200px) {
  .feature-container {
    max-width: 85%;
    height: auto;
  }

  .payroll-feature, .receipt-management-feature {
    padding: 15px;
  }

  .feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .feature-title {
    font-size: 20px;
  }

  .feature-icon {
    width: 40px;
  }

  .feature-content {
    flex-direction: column;
  }

  .feature-left-list, .feature-right-list {
    width: 90%;
  }
}

@media only screen and (max-width: 600px) {

  .feature-section {
    background-image: none;
  }

  .feature-container {
    max-width: 100%;
    padding: 0 10px;
  }

  .payroll-feature, .receipt-management-feature {
    padding: 10px;
    margin-bottom: 40px;
    background-color: #fff;
  }

  .feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-icon {
    width: 30px;
    top: 10px;
    right: 10px;
  }

  .feature-content {
    flex-direction: column;
  }

  .feature-left-list, .feature-right-list {
    width: 100%;
    margin-bottom: 5px;
  }

  .feature-left-list li, .feature-right-list li {
    padding: 8px;
    color: #4d4d4d;
  }

}

/* Feature Section End < */





























































/* Pricing Start > */

.pricing-title-section {
  text-align: center;
}

.pricing-title {
  font-size: 3.125rem; /* 50px */
  color: #0647fe;
  margin-top: 3.125rem; /* 50px */
}

.pricing-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem; /* Adjust spacing between sections */
  margin: 50px 0;
}

.monthly-pricing,
.additional-services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.125rem; /* 50px */
  text-align: center;
  flex: 1;
  line-height: 32px;
}

.monthly-title,
.payroll-manage,
.receipt-manage {
  font-family: 'Roboto-Bold', sans-serif;
  color: #4d4d4d;
}

.monthly-title {
  font-size: 1.875rem; /* 30px */
  margin: 0.625rem 0; /* 10px */
}

.starting-text,
.bold-para,
.payroll-manage,
.receipt-manage {
  font-size: 1.25rem; /* 20px */
}

.price {
  font-size: 3.125rem; /* 50px */
  margin: 0.625rem 0; /* 10px */
  color: #0647fe;
  font-family: 'Roboto-Bold', sans-serif;
}

.starting-price {
  color: #0647fe;
  font-size: 1.5625rem; /* 25px */
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing {
  max-width: 2.5rem; /* 40px */
}

.pricing-horizontal {
  display: none;
}

/* Media Query for screens up to 1200px */
@media (max-width: 1200px) {
  .pricing-title {
    font-size: 2.5rem; /* 40px */
  }

  .monthly-pricing,
  .additional-services {
    padding: 2rem; /* 32px */
  }

  .price {
    font-size: 2.5rem; /* 40px */
  }

  .starting-text,
  .bold-para,
  .payroll-manage,
  .receipt-manage {
    font-size: 1.125rem; /* 18px */
  }

  .starting-price {
    font-size: 1.375rem; /* 22px */
  }

  .pricing {
    max-width: 2rem; /* 32px */
  }
}

@media (max-width: 768px) {
  .pricing-title {
      font-size: 2em; /* Adjust the font size for smaller screens */
      margin-bottom: 30px;
  }

  .monthly-pricing,
  .additional-services {
      padding: 10px; /* Add some padding for better spacing */
      font-size: 0.9em; /* Slightly reduce font size for readability */
  }

  .price {
      font-size: 1.2em; /* Adjust the price font size */
  }

  .image-container img.pricing {
      display: none; /* Hide the default image on smaller screens */
  }

  .image-container img.pricing-horizontal {
      display: block; /* Show the new image on smaller screens */
      width: 100%; /* Ensure the image scales with the screen width */
      height: auto; /* Maintain aspect ratio */
  }

  .pricing-section {
    margin: 0;
    padding: 10px; /* Adjust padding for smaller screens */
  }

  .additional-services {
      border-top: none; /* Remove border for a cleaner look on smaller screens */
      padding-top: 0; /* Remove padding to save space */
      margin-bottom: 50px;
  }
}

/* Pricing End < */



















































/* Contact Section Start > */

.contact-section {
  text-align: center;
  padding: 50px;
  background-color: #f9f9f9;
}

.contact-text {
  font-size: 18px;
  color: #4d4d4d;
}

.contact-text a {
  color: #0056b3; /* Updated link color for better contrast */
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .contact-section {
    padding: 15px;
    margin: 0;
  }

  .contact-text {
    font-size: 16px;
  }
}

@media only screen and (max-width: 480px) {
  .contact-section {
    padding: 10px;
    margin: 0;
  }

  .contact-text {
    font-size: 14px;
  }
}

/* Contact Section End < */






























/* Faq Section Start > */

.faq-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/FAQ-Banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px;
}

.faq-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.faq-content h1 {
  font-size: 80px;
  margin: 20px;
  color: #fff;
}

.faq-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
}

.faq-item {
  border-bottom: 1px solid #4d4d4d;
  margin-bottom: 20px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  margin-bottom: 20px;
  cursor: pointer;
  color: #4d4d4d;
  font-size: 25px;
  font-weight: bold;
}

.faq-answer {
  display: none;
  color: #4d4d4d;
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 25px;
}

.faq-answer ol .full-refund {
  margin-top: 20px;
}

.faq-answer h2 {
  margin-bottom: 20px;
}

.faq-answer ol {
  margin-bottom: 20px;
}

.faq-answer ol li {
  margin-bottom: 20px;
  line-height: 25px;
}

.faq-answer ol ul li {
  margin-top: 10px;
  list-style-type: none;
}

.steps {
  font-family: 'Roboto-Bold';
}

.faq-answer.show {
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media only screen and (max-width: 768px) {
    .faq-section {
      padding: 20px;
      margin-top: 50px;
    }
}


/* Faq Section End < */



































/* Footer Styles */

.footer {
  background-color: #4d4d4d;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 10%;
}

.footer-left,
.footer-right {
  flex: 1;
  padding: 0 20px;
}

.footer-left a {
  color: #fff;
}

.footer-right p {
  color: rgba(255, 255, 255, 0.3);
}

.footer-center {
  flex: 0 1 auto;
  padding: 0 20px;
  margin: 0;
}

.footer-icon {
  max-width: 50px;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .footer-left,
  .footer-right {
    font-size: 10px;
  }
}

@media only screen and (max-width: 1200px) {
  .footer-content {
    text-align: center;
    padding: 0 5%;
  }

  .footer-left,
  .footer-right {
    padding: 10px 0;
  }

  .footer-center {
    margin: 0;
    padding: 10px 0;
  }

  .footer-icon {
    max-width: 40px;
  }
}