/* Homepage Banner Styles */
.home--banner {
  position: relative;
  overflow: hidden;
  min-height: auto;
  height: auto;
  display: flex;
  align-items: center;
}

/* Overlay matching Figma design */
.home--banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(33, 32, 83, 0.7);
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.home--banner .container {
  position: relative;
  z-index: 2;
  padding-top: 65px;
  padding-bottom: 65px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}
.home--banner .container::before,
.home--banner .container::after {
  display: none;
}

/* Banner Content Left Side */
.home--banner .banner-content-left {
  width: 55%;

  display: flex;
  flex-direction: column;
  gap: 30px;

  color: #fff;
}

.home--banner .banner-main-heading {
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  font-family: "Lato", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 70px;
}

.home--banner .banner-subheading {
  color: #fff;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

/* Banner Content Right Side */
.home--banner .banner-content-right {
  width: 45%;

  display: flex;
  flex-direction: column;

  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);

  overflow: hidden;
}

.home--banner .campaign-heading {
  color: #fff;
  text-align: center;
  font-family: Lato;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;

  width: 100%;
  padding: 20px 35px;
  background-color: #5c5abf;
}

.home--banner .campaign-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 25px;
}

.home--banner .campaign-step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home--banner .campaign-step-icon {
  flex-shrink: 0;

  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #8cbc39;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home--banner .campaign-step span {
  color: #363636;
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.home--banner .campaign-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: calc(100% - 60px);
  padding: 12px 30px;
  margin: 0 auto;

  background-color: #8cbc39;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0);
  box-shadow: 0 0 15px 0 rgba(0, 1, 1, 0.3);

  color: #fff;
  text-align: center;
  font-family: Lato;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.43px;
}

.home--banner .campaign-cta-btn svg {
  transition: opacity 0.3s ease;
}
.home--banner .campaign-cta-btn span {
  transition: opacity 0.3s ease;
}

.home--banner .campaign-cta-btn:hover {
  text-decoration: none;
}
.home--banner .campaign-cta-btn:hover svg {
  opacity: 0.8;
}
.home--banner .campaign-cta-btn:hover span {
  opacity: 0.8;
}

.home--banner .campaign-footer-text {
  color: #363636;
  text-align: center;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;

  padding: 10px 50px 24px;
}

/* Process Section Styles */
.process-section {
  padding: 60px 0;
  background: #fff;
}

.process-section .inner-box-contnet {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Number Circle - Matching Figma design */
.process-number-circle {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: #5c5abf;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.process-section h2 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  color: #212053;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

/* Responsive Styles - Banner Section */
@media (max-width: 1199px) and (min-width: 992px) {
  .home--banner {
    min-height: auto;
    height: auto;
  }

  .home--banner .container {
    padding-top: 50px;
    padding-bottom: 50px;
    gap: 60px;
  }

  .home--banner .banner-content-right,
  .home--banner .banner-content-left {
    width: 50%;
  }

  .home--banner .banner-main-heading {
    font-size: 50px;
    line-height: 60px;
  }

  .home--banner .banner-subheading {
    font-size: 26px;
    line-height: 36px;
  }

  .home--banner .campaign-heading {
    font-size: 26px;
    line-height: 36px;
    padding: 18px 30px;
  }

  .home--banner .campaign-steps {
    padding: 20px 30px;
    gap: 20px;
  }

  .home--banner .campaign-step span {
    font-size: 18px;
    line-height: 28px;
  }

  .home--banner .campaign-cta-btn {
    width: calc(100% - 60px);

    font-size: 20px;
    line-height: 28px;
    padding: 10px 25px;
  }

  .home--banner .campaign-footer-text {
    font-size: 15px;
    line-height: 24px;
    padding: 8px 40px 20px;
  }

  .process-section {
    padding: 50px 0;
  }

  .process-section h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .process-number-circle {
    width: 45px;
    height: 45px;
    font-size: 28px;
    line-height: 36px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .home--banner {
    min-height: auto;
    height: auto;
  }

  .home--banner .container {
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 40px;
  }

  .home--banner .banner-content-left {
    width: 100%;
    gap: 20px;
    text-align: center;
  }

  .home--banner .banner-main-heading {
    font-size: 42px;
    line-height: 52px;
  }

  .home--banner .banner-subheading {
    font-size: 24px;
    line-height: 34px;
  }

  .home--banner .banner-content-right {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;

    height: fit-content;
  }

  .home--banner .campaign-heading {
    font-size: 24px;
    line-height: 34px;
    padding: 16px 25px;
  }

  .home--banner .campaign-steps {
    padding: 18px 25px;
    gap: 18px;
  }

  .home--banner .campaign-step {
    width: 100%;
  }

  .home--banner .campaign-step span {
    font-size: 17px;
    line-height: 26px;
  }

  .home--banner .campaign-cta-btn {
    width: calc(100% - 80px);
    font-size: 19px;
    line-height: 27px;
    padding: 10px 20px;
  }

  .home--banner .campaign-footer-text {
    font-size: 14px;
    line-height: 22px;
    padding: 8px 30px 18px;
  }

  .process-section {
    padding: 50px 0;
  }

  .process-section h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .process-number-circle {
    width: 45px;
    height: 45px;
    font-size: 28px;
    line-height: 36px;
  }
}

@media (max-width: 767px) {
  .home--banner {
    min-height: auto;
    height: auto;
  }

  .home--banner .container {
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
    gap: 30px;
  }

  .home--banner .banner-content-left {
    width: 100%;
    gap: 15px;
    text-align: center;
  }

  .home--banner .banner-main-heading {
    font-size: 32px;
    line-height: 42px;
  }

  .home--banner .banner-subheading {
    font-size: 20px;
    line-height: 30px;
  }

  .home--banner .banner-content-right {
    width: 100%;
    max-width: 100%;
  }

  .home--banner .campaign-heading {
    font-size: 22px;
    line-height: 32px;
    padding: 14px 20px;
  }

  .home--banner .campaign-steps {
    flex-direction: column;
    padding: 16px 20px;
    gap: 16px;
  }

  .home--banner .campaign-step {
    width: 100%;
  }

  .home--banner .campaign-step-icon {
    width: 26px;
    height: 26px;
  }

  .home--banner .campaign-step-icon svg {
    width: 20px;
    height: 20px;
  }

  .home--banner .campaign-step span {
    font-size: 16px;
    line-height: 24px;
  }

  .home--banner .campaign-cta-btn {
    width: calc(100% - 60px);
    font-size: 18px;
    line-height: 26px;
    padding: 10px 20px;
  }

  .home--banner .campaign-cta-btn svg {
    width: 20px;
    height: 20px;
  }

  .home--banner .campaign-footer-text {
    font-size: 14px;
    line-height: 22px;
    padding: 8px 20px 16px;
  }

  .process-section {
    padding: 40px 0;
  }

  .process-section .inner-box-contnet {
    margin-bottom: 30px;
  }

  .process-section h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .process-number-circle {
    width: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .home--banner {
    min-height: auto;
    height: auto;
  }

  .home--banner .container {
    padding-top: 25px;
    padding-bottom: 25px;
    gap: 25px;
  }

  .home--banner .banner-content-left {
    gap: 12px;
  }

  .home--banner .banner-main-heading {
    font-size: 26px;
    line-height: 36px;
  }

  .home--banner .banner-subheading {
    font-size: 18px;
    line-height: 28px;
  }

  .home--banner .campaign-heading {
    font-size: 20px;
    line-height: 30px;
    padding: 12px 15px;
  }

  .home--banner .campaign-steps {
    padding: 14px 15px;
    gap: 14px;
    text-align: left;
  }

  .home--banner .campaign-step-icon {
    width: 24px;
    height: 24px;
  }

  .home--banner .campaign-step-icon svg {
    width: 18px;
    height: 18px;
  }

  .home--banner .campaign-step span {
    font-size: 15px;
    line-height: 22px;
  }

  .home--banner .campaign-cta-btn {
    width: calc(100% - 40px);
    font-size: 16px;
    line-height: 24px;
    padding: 10px 18px;
    gap: 10px;
  }

  .home--banner .campaign-cta-btn svg {
    width: 18px;
    height: 18px;
  }

  .home--banner .campaign-footer-text {
    font-size: 13px;
    line-height: 20px;
    padding: 6px 15px 14px;
  }

  .process-section {
    padding: 30px 0;
  }

  .process-section h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .process-number-circle {
    width: 35px;
    height: 35px;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
  }
}
