/* //////////////////////////////// Features Section 1//////////////////// */

.features-section {
  background-color: #003459;
  padding: 50px;
}

.key-container {
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  color: white;
  padding: 10px;
}

.circle-icon {
  width: 6vw; /* Relative width for responsiveness */
  height: 6vw; /* Relative height to maintain circle */
  max-width: 120px;
  max-height: 120px;
  padding: 14px; /* Fixed padding so it doesn't scale with parent width */
  background: #fef3e6;
  border-radius: 50%; /* Keeps it circular */
  justify-content: center;
  align-items: center;
  display: inline-flex;
}
.feature-item p {
  color: #ccd1d2;
  font-size: 17px;
  font-weight: 500;
  line-height: 30.5px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 768px) {
  /* Tablet and mobile */
  .circle-icon {
    width: 10vw; /* Adjust width on smaller screens */
    height: 10vw;
    padding: 12px; /* Fixed padding so it doesn't scale with parent width */
  }
  .sub-title-key {
    font-size: 10px;
    line-height: 25.6px;
    font-weight: 500;
    padding-top: 20px;
    color: #ebeeef;
  }
  .feature-item p {
    color: #ccd1d2;
    font-size: 17px;
    font-weight: 500;
    line-height: 30.5px;
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (max-width: 576px) {
  /* Mobile */
  .circle-icon {
    width: 9vw; /* Further adjust width on smaller screens */
    height: 9vw;
    padding: 10px; /* Fixed padding so it doesn't scale with parent width */
  }
  .key-container {
    font-size: 32px;
  }
  .sub-title-key {
    font-size: 10px;
    line-height: 25.6px;
    font-weight: 500;
    padding-top: 20px;
  }
}

/* //////////////////////////////// Hero Content ////////////////// */

.text-content {
  padding-top: 30px;
}

.mainHeader {
  color: #242b33;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1.2;
}

.subHeader {
  margin-top: 15px;
  color: #667479;
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 500px;
}

.email-input {
  background: rgba(0, 52, 89, 0.09);
  border-radius: 84px;
  padding: 10px;
  display: flex;
  align-items: center;
  max-width: 100%;
  width: 300px;
  margin-top: 20px;
}

/* .email-input input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  color: #99a2a5;
  font-weight: bold;
  font-size: 1rem;
} */

.request-demo-btn {
  background: #f58a07;
  border-radius: 84px;
  color: #fff;
  padding: 12px;
  font-weight: bold;
  border: none;
  max-width: 200px;
}

.hero-image {
  width: 600px;
  height: auto;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .mainHeader {
    font-size: 3rem;
  }
  .subHeader {
    font-size: 1.1rem;
  }
}
@media (min-width: 745px) and (max-width: 1024px) {
  /* Override col-md-6 to take up full width for tablet mode */
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Full-width text content with 10px side padding */
  .text-content {
    padding: 20px 10px;
    text-align: center;
    width: 100%;
  }

  /* Center and stack image content below text content */
  .image-content {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
  }

  /* Header and subheader adjustments for tablet */
  .mainHeader {
    font-size: 2.5rem;
    font-weight: 800;
  }

  .subHeader {
    font-size: 1.1rem;
    max-width: none;
    margin-top: 10px;
  }

  /* Adjust email input to fit full width with padding */
  .email-input {
    width: calc(100% - 20px); /* Account for 10px padding on each side */
    max-width: 300px;
    margin: 15px auto;
    padding: 10px;
  }

  /* Increased image size for tablets */
  .hero-image {
    width: 100%;
    max-width: 600px; /* Increase maximum width to make image larger */
    height: auto; /* Maintain aspect ratio */
  }

  /* Ensure rows stack vertically */
  .container .row {
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
}
.request-demo-btn {
  color: white;
  text-align: center;
}

.request-demo-btn:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .mainHeader {
    font-size: 2rem;
    font-weight: 400;
    font-weight: 800;
  }
  .subHeader {
    font-size: 0.9rem;
  }
  .email-input {
    padding: 8px 10px;
  }
  .request-demo-btn {
    padding: 8px 10px;
  }
}

@media (max-width: 576px) {
  .mainHeader {
    font-size: 1.9rem;
    font-weight: 800;
  }
  .subHeader {
    font-size: 0.85rem;
    color: #242b33;
    font-weight: 400;
  }
  .email-input input {
    font-size: 0.775rem;
  }
  .email-input {
    padding: 8px;
  }
  .request-demo-btn {
    padding: 12px;
    font-size: 0.7rem;
  }
  .hero-image {
    max-width: 400px;
  }
}
@media (max-width: 400px) {
  .hero-image {
    width: 100%; /* Utilize full width for ultra-small screens */
    max-width: 300px; /* Further limit width for tiny screens */
    height: auto; /* Ensure proper scaling */
  }
  .mainHeader {
    font-size: 1.5rem;
  }
  .subHeader {
    font-size: 0.8rem;
  }
  .email-input {
    width: 100%; /* Fit input field to the screen */
    padding: 6px;
  }
  .request-demo-btn {
    padding: 10px;
    font-size: 0.65rem;
  }
}
/* ////////////////////////////////////Section 3 Benefits///////////////// */

.benefits-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

/* Header Styles */
.benefits-header h1 {
  color: #242b33;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.benefits-header p {
  color: #242b33;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 10px 0 30px;
  max-width: 600px;
}

/* Benefits Content */
.benefits-content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.benefits-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 500px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-number {
  width: 45px;
  height: 45px;
  background-color: #003459;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0; /* Prevents width from shrinking */
}

.benefit-details h3 {
  color: #242b33;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
}

.benefit-details p {
  color: #242b33;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .benefits-header h1 {
    font-size: 30px;
  }

  .benefits-header p {
    font-size: 18px;
  }

  .benefits-content {
    gap: 20px;
  }
}

/* Tablet view adjustments */
@media (max-width: 768px) {
  .benefits-content {
    flex-direction: column;
    align-items: center;
  }

  .benefits-image {
    order: -1; /* Make image appear before text */
  }

  .benefits-image img {
    max-width: 100%;
  }

  .benefit-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .benefit-details h3 {
    font-size: 18px;
  }

  .benefit-details p {
    font-size: 14px;
  }
}

/* Mobile view adjustments */
@media (max-width: 480px) {
  .benefits-header h1 {
    font-size: 28px;
  }

  .benefits-header p {
    font-size: 16px;
  }

  .benefits-content {
    flex-direction: column;
  }

  .benefits-image {
    order: -1; /* Ensure image appears before text on mobile */
  }

  .benefit-number {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .benefit-details h3 {
    font-size: 16px;
  }

  .benefit-details p {
    font-size: 14px;
  }
}

/* /////////////////section 4 how it works////////////////// */

.how-it-works {
  padding: 50px 10%;
  /*  */
  background-color: #003459;
  color: #fdfdfd;
  line-height: 1.6;
}

.title-section {
  text-align: center;
  margin-bottom: 50px;
}

.title-section h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 10px;
}

.title-section p {
  font-size: 20px;
  font-weight: 500;
  color: #ccd1d2;
}

.steps-container {
  position: relative;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.steps-content {
  position: relative;
  padding: 0 20px;
}

.step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
  flex-direction: row;
}

.step.reverse {
  flex-direction: row-reverse;
}

.step-image img {
  width: 100%;
  max-width: 450px;
  height: 400px;
  border-radius: 10px;
}

.step-content {
  max-width: 540px;
  margin: 0 20px;
}

.step-content h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 58px;
  color: #eff3f4;
}

.step-content h2 {
  font-size: 44px;
  font-weight: 700;
  margin: 10px 0;
}

.step-content p {
  color: #ccd1d2;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
}

.steps-container::before {
  content: "";
  position: absolute;
  top: 0; /* Start at the top of the first circle */
  bottom: 0; /* End at the bottom of the last circle */
  left: 50%;
  width: 4px;
  background-color: #fdfdfd;
  transform: translateX(-50%);
  z-index: 0;
}

.step::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  background-color: #fdfdfd;
  border-radius: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.step::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23px;
  height: 23px;
  background-color: rgb(216, 215, 215);
  border-radius: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.step.reverse::before {
  left: 50%;
}

.reverse .step::before {
  left: auto;
  right: 50%;
  transform: translate(50%, -50%);
}

.step {
  margin: 20px 0;
}

.corner-image {
  position: absolute;
  top: 90px;
  height: 10px;
}

.report-generation {
  position: absolute;
  top: 90px;
}
@media (min-width: 745px) and (max-width: 1024px) {
  .how-it-works {
    overflow-x: hidden;
    justify-content: center;
  }

  /* Title section font sizes */
  .title-section h1 {
    font-size: 50px; /* Reduced from 44px */
  }

  .title-section p {
    font-size: 26px; /* Reduced from 20px */
  }

  /* Step section font sizes */
  .step-content h3 {
    font-size: 35px; /* Reduced from 28px */
    line-height: 40px; /* Adjusted line-height for smaller font */
  }

  .step-content h2 {
    font-size: 42px;
  }

  .step-content p {
    font-size: 21px; /* Reduced from 22px */
    line-height: 28px; /* Adjusted line-height for readability */
    color: #ccd1d2;
  }

  /* Step layout adjustments */
  .step {
    flex-direction: column; /* Stack elements vertically */
    align-items: left; /* Align items to the left */
    padding-left: 0px;
    text-align: left;
  }

  .step.reverse {
    flex-direction: column;
  }

  /* Step image adjustments */
  .step-image {
    order: -1; /* Place image above content */
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    padding-left: 6rem;
  }

  .step-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  /* Hide timeline line and circles */
  .steps-container::before,
  .step::before,
  .step::after {
    display: none;
  }
}
@media (max-width: 768px) {
  /* Container padding */
  .how-it-works {
    padding: 30px 5%;
    overflow-x: hidden;
  }

  /* Title section font sizes */
  .title-section h1 {
    font-size: 32px; /* Reduced from 44px */
  }

  .title-section p {
    font-size: 16px; /* Reduced from 20px */
  }

  /* Step section font sizes */
  .step-content h3 {
    font-size: 20px; /* Reduced from 28px */
    line-height: 40px; /* Adjusted line-height for smaller font */
  }

  .step-content h2 {
    font-size: 28px; /* Reduced from 44px */
    margin: 10px 0;
  }

  .step-content p {
    font-size: 18px; /* Reduced from 22px */
    line-height: 28px; /* Adjusted line-height for readability */
    color: #ccd1d2;
  }

  /* Step layout adjustments */
  .step {
    flex-direction: column; /* Stack elements vertically */
    align-items: flex-start; /* Align items to the left */
    padding-left: 0;
    text-align: left;
  }

  .step.reverse {
    flex-direction: column;
  }

  /* Step image adjustments */
  .step-image {
    order: -1; /* Place image above content */
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .step-image img {
    width: 100%;
    height: auto;
  }

  /* Hide timeline line and circles */
  .steps-container::before,
  .step::before,
  .step::after {
    display: none;
  }
}
@media (max-width: 1440px) {
  /* Hide timeline elements */
  .steps-container::before,
  .step::before,
  .step::after {
    display: none;
  }
}

/* ////////////////////////section 2 from step 6 //////////////// */
.audit-Cycle {
  padding: 50px 10%;
  /*  */
  background: #ebeeef;
  line-height: 1.6;
}

.step-container {
  position: relative;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.steps.reverse {
  flex-direction: row-reverse;
}

.steps-image img {
  width: 100%;
  max-width: 450px;
  height: auto; /* Ensure responsive height */
  border-radius: 10px;
}

.steps-content {
  max-width: 500px;
  margin: 0 20px;
}

.steps-content h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 58px;
  color: #242b33;
}

.steps-content h2 {
  color: #242b33;
  font-size: 44px;
  font-weight: 700;
  margin: 10px 0;
}

.steps-content p {
  color: #667479;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
}

/* Timeline line in the middle */
.step-container::before {
  content: "";
  position: absolute;
  top: 0; /* Start at the top of the first circle */
  bottom: 0; /* End at the bottom of the last circle */
  left: 50%;
  width: 3px;
  background-color: #003459;
  transform: translateX(-50%);
  z-index: 0;
}

/* Circle at the intersection of each step */
.steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  background-color: #ced6df;
  border-radius: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

/* Small grey circle inside the larger white circle */
.steps::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23px;
  height: 23px;
  background-color: #003459;
  border-radius: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

/* Adjust reverse step styles */
.steps.reverse::before {
  left: 50%;
}

.reverse .steps::before {
  left: auto;
  right: 50%;
  transform: translate(50%, -50%);
}

.steps {
  margin: 20px 0;
}
@media (min-width: 745px) and (max-width: 1024px) {
  .audit-Cycle {
    padding: 30px 5%;
  }

  .steps {
    flex-direction: column; /* Stack steps vertically */
    align-items: center; /* Align items to the left */
  }

  .steps-image {
    order: -1; /* Show image first on mobile and tablet */
  }

  .steps.reverse {
    flex-direction: column; /* Stack steps vertically in reverse */
    align-items: center;
  }

  .steps.reverse .steps-image {
    order: -1; /* Show image first on mobile and tablet */
    max-width: 700px;
  }

  .steps-image img {
    max-width: 600px;
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px; /* Add space between image and content */
  }

  .steps-content h3 {
    font-size: 24px; /* Reduce font size */
  }

  .steps-content h2 {
    font-size: 32px; /* Reduce font size */
  }

  .steps-content p {
    font-size: 18px; /* Reduce font size */
  }

  /* Hide stepper line and circles */
  .step-container::before, /* Hide the timeline line */
  .steps::before,          /* Hide the large circle */
  .steps::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .audit-Cycle {
    padding: 30px 5%;
  }

  .steps {
    flex-direction: column; /* Stack steps vertically */
    align-items: flex-start; /* Align items to the left */
  }

  .steps-image {
    order: -1; /* Show image first on mobile and tablet */
  }

  .steps.reverse {
    flex-direction: column; /* Stack steps vertically in reverse */
    align-items: flex-start;
  }

  .steps.reverse .steps-image {
    order: -1; /* Show image first on mobile and tablet */
  }

  .steps-image img {
    max-width: 100%; /* Ensure image is responsive */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px; /* Add space between image and content */
  }

  .steps-content h3 {
    font-size: 24px; /* Reduce font size */
  }

  .steps-content h2 {
    font-size: 32px; /* Reduce font size */
  }

  .steps-content p {
    font-size: 18px; /* Reduce font size */
  }

  /* Hide stepper line and circles */
  .step-container::before, /* Hide the timeline line */
  .steps::before,          /* Hide the large circle */
  .steps::after {
    display: none;
  }
}
@media (max-width: 1440px) {
  /* Hide stepper line and circles */
  .step-container::before, /* Hide the timeline line */
  .steps::before,          /* Hide the large circle */
  .steps::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .audit-Cycle {
    padding: 20px 5%;
  }

  .steps-content h3 {
    font-size: 22px; /* Further reduce font size */
  }

  .steps-content h2 {
    font-size: 28px; /* Further reduce font size */
  }

  .steps-content p {
    font-size: 16px; /* Further reduce font size */
  }
}

/* ///////////////////////Schedule Section /////////////////////// */
.schedule {
  padding: 40px 10px;
  background: #fdfdfd;
  display: flex;
  justify-content: center;
  align-items: center;
}

.schedule-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  background: linear-gradient(
    0deg,
    rgba(0, 52, 89, 0.04) 0%,
    rgba(0, 6, 10, 0.04) 100%
  );
  border-radius: 10px;
  overflow: hidden;
}

.background-container {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust as needed */
  overflow: hidden;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding: 30px; /* Increased padding */
  text-align: center;
}

.content-wrapper {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.title-container {
  margin-bottom: 20px;
}

.schedule-title {
  font-size: 32px;
  font-weight: 700;
  color: #242b33;
}

.schedule-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #242b33;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: 100%;
}

.input-wrapper {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  background-color: white;
  border-radius: 63px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-control {
  width: 100%;
  border: none;
  font-size: 16px;
  color: #667479;
  font-weight: 600;
  padding: 8px;
}

.phone-input {
  display: flex;
  width: 100%;
  align-items: center;
}

.country-code {
  width: 70px;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #667479;
  border: none;
}

.button-container {
  margin-top: 15px;
}

.request-demo-button {
  background-color: #003459;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 63px;
  border: none;
  cursor: pointer;
}

.request-demo-button:hover {
  background-color: #00203f;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .schedule-title {
    font-size: 26px;
  }

  .schedule-subtitle {
    font-size: 14px;
  }

  .form-container {
    gap: 10px;
  }

  .input-wrapper {
    max-width: 100%;
  }

  .request-demo-button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 576px) {
  .schedule-wrapper {
    padding: 0px;
  }

  .schedule-title {
    font-size: 24px;
  }

  .schedule-subtitle {
    font-size: 14px;
  }

  .input-wrapper {
    max-width: 100%;
    padding: 10px;
  }

  .form-control {
    font-size: 14px;
  }

  .country-code {
    font-size: 14px;
  }

  .request-demo-button {
    font-size: 14px;
    padding: 10px 20px;
  }
}
