/* Custom Styles for custom theming */

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}

.container-custom {
  max-width: 1440px;

  /* @media (max-width: 1440px) {
    max-width: 1300px;
  } */
}

/* Header */
.headerCG {
  background: #011437;
  backdrop-filter: blur(39.19381332397461px);
  width: 100%;
  height: 76px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;

  @media screen and (max-width: 1199px) {
    height: 70px;
  }
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #011437;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: height 0.3s ease;

  &.scrolled {
    height: 70px;
    transition: height 0.3s ease;
  }
}

.main-navigation.main-navigation-gc {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;

  #mega-menu-wrap-menu-1 {
    &.mega-menu-wrap {
      @media screen and (min-width: 1200px) {
        height: 100%;
      }
      @media screen and (max-width: 1199px) {
        height: auto;
        width: 100%;
      }

      ul {
        &#mega-menu-menu-1 {
          &.mega-menu {
            @media screen and (min-width: 1200px) {
              height: 100%;
            }
            @media screen and (max-width: 1199px) {
              height: auto;
              width: 100%;
            }

            & >  li {
              &.mega-menu-item {
                @media screen and (min-width: 1399px) {
                  margin: 0 10px;
                }

                @media screen and (min-width: 1200px) {
                  margin: 0 10px;
                  height: 100%;
                }

                @media screen and (max-width: 1199px) {
                  height: auto;
                  width: 100%;
                }

                &.mega-current-menu-item,
                &.mega-current-menu-ancestor {
                  & > a {
                    color: #F3AE36;

                    @media screen and (min-width: 1200px) {
                      color: #f3ae36;
                    }
                  }
                }

                & > a {
                  &.mega-menu-link {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;

                    @media screen and (min-width: 1200px) {
                      justify-content: center;
                    }


                    &:hover {
                      color: #f3ae36;
                      text-decoration: none;
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

.main-navigation-gc li {
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */

  @media screen and (min-width: 992px) {
    margin: 0 10px;
  }

  @media screen and (min-width: 1200px) {
    margin: 0 20px;
  }
}

.main-navigation-gc li a {
  color: #fff;
  text-decoration: none;
}

.main-navigation-gc li a:hover {
  color: #f3ae36;
}

.login {
  display: flex;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #f3ae36;
  color: #fff;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  height: 46px;
  border: solid 2px #F3AE36;
}

.login:hover {
  background: #152329;
  border-color: #fff;
  color: #fff;
}

.getStarted {
  display: flex;
  padding: 2px;
  justify-content: flex-start;
  align-items: center;
  border-radius: 8px;
  background: linear-gradient(0deg, #D7FAFF 0%, #0E91A5 100%);
  color: #fff;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  height: 46px;
  overflow: hidden;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;

  &>span {
    width: 100%;
    height: 100%;
    padding: 10px 18px;
    box-sizing: border-box;
    background: #041b29;
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  &:hover,
  &:active,
  &:focus,
  &:focus-visible,
  &:visited {
    color: #fff;
    background: linear-gradient(0deg, #0E91A5 0%, #D7FAFF 100%);

    &>span {
      background: #041b29;
    }
  }
}

.call-button {
  background-color: #F5B037;
  border: none;
  height: 42px;
  border-radius: 10px;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  flex-wrap: nowrap;
  text-align: center;
  transition: background-color 0.3s ease;
}

.call-button i {
  font-size: 14px;
}

.call-button:hover {
  background-color: #FFC107;
  color: #000;
}

#mobile-menu-toggle {
  pointer-events: auto;
  position: relative;
  z-index: 1100;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#mobile-menu-toggle:focus,
#mobile-menu-toggle:active {
  outline: none;
  /* Optional: Remove focus outline */
  visibility: visible;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  width: 300px;
  height: 100vh;
  top: 70px;
  left: 0;
  background: #011437;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  padding: 26px 20px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
  overflow-y: auto;
  overflow-x: hidden;

  /* &::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
  } */

  &.visible {
    transform: translateX(0);
  }

  .main-navigation.main-navigation-gc {
    ul.menu {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 20px;
    }
  }

  .getStarted {
    justify-content: center;
  }
}

/* Header */

/* Footer */
.site-footer {
  background: #011437;

  .footer-top {
    .site-info {
      color: #fff;
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 157%;
      /* 25.12px */

      @media screen and (max-width: 992px) {
        font-size: 14px;
      }

      @media screen and (max-width: 768px) {
        font-size: 12px;
      }

      i {
        &:hover {
          color: #f3ae36;
        }
      }

      a {
        color: #fff;
        text-decoration: none;

        &:hover {
          color: #f3ae36;
        }
      }
    }

    .footer-widget {
      display: flex;
      flex-direction: column;
      gap: 20px;

      @media screen and (max-width: 1025px) {
        gap: 15px;
      }

      @media screen and (max-width: 992px) {
        gap: 10px;
      }

      @media screen and (max-width: 768px) {
        gap: 5px;
      }

      h3.widget-title {
        color: #fff;
        font-family: Urbanist;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 133%;
        /* 31.92px */
        letter-spacing: -0.32px;

        @media screen and (max-width: 992px) {
          font-size: 20px;
        }

        @media screen and (max-width: 768px) {
          font-size: 18px;
        }
      }

      &>div {
        ul.menu {
          color: #fff;
          font-family: Inter;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 157%;
          /* 25.12px */
          display: flex;
          flex-direction: column;
          gap: 10px;
          padding: 0 0 0 5px;
          margin: 0;

          @media screen and (max-width: 992px) {
            font-size: 14px;
          }

          @media screen and (max-width: 768px) {
            font-size: 12px;
            padding-left: 0;
          }

          a {
            color: rgba(255, 255, 255, 0.6);

            &:hover {
              color: #f3ae36;
            }
          }
        }
      }
    }
  }

  .footer-bottom {
    .social-links {
      a {
        width: 40px;
        height: 40px;
        box-sizing: border-box;

        &:hover {
          background-color: #f3ae36;
        }
      }
    }

    p {
      font-family: "Inter";
      font-size: 16px;
      font-style: normal;
      font-weight: 400;

      @media screen and (max-width: 992px) {
        font-size: 14px;
      }

      @media screen and (max-width: 768px) {
        font-size: 12px;
      }
    }

    .footer-bottom-menu {
      .menu {
        color: #fff;
        text-align: right;
        font-family: "Inter";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 20px;
        margin: 0;
        padding: 0;

        @media screen and (max-width: 992px) {
          font-size: 12px;
        }

        li {
          position: relative;

          &::after {
            content: "";
            width: 2px;
            height: 100%;
            position: absolute;
            right: -11px;
            top: auto;
            background: #fff;
          }

          &:last-child {
            &::after {
              display: none;
            }
          }

          a {
            color: #fff;

            &:hover {
              color: #f3ae36;
            }
          }
        }
      }
    }
  }
}

/* Footer */

/* Content Area */

.after-banner-count-outer {
  background: linear-gradient(90deg,
      rgba(133, 157, 189, 0.34) 0.01%,
      rgba(133, 157, 189, 0.09) 11.69%,
      rgba(133, 157, 189, 0.09) 32.24%,
      rgba(133, 157, 189, 0.13) 75.04%,
      rgba(133, 157, 189, 0.5) 99.99%);
  backdrop-filter: blur(19.596906661987305px);
}

.heading-yellow-bar {
  position: relative;

  &>.elementor-widget-container {
    position: relative;
  }
}

.heading-yellow-bar {
  &::before {
    content: "";
    background-color: #f3ae36;
    width: 89px;
    height: 4px;
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    border-radius: 10px;
  }

  &>.elementor-widget-container {
    &::before {
      content: "";
      background-color: #f3ae36;
      width: 89px;
      height: 4px;
      position: absolute;
      top: auto;
      left: 0;
      bottom: 0;
      border-radius: 10px;
    }
  }

  &>h2 {
    font-family: 'Urbanist';
    text-align: center;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.5rem;
    letter-spacing: -0.02rem;
    color: #000;

    @media screen and (max-width: 1025px) {
      font-size: 1.8rem;
      line-height: 2.2rem;
    }

    @media screen and (max-width: 768px) {
      font-size: 1.6rem;
      line-height: 2rem;
    }

    @media screen and (max-width: 576px) {
      font-size: 1.4rem;
      line-height: 1.8rem;
    }
  }
}

.heading-yellow-bar-center {
  &::before {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }

  &>.elementor-widget-container {
    &::before {
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
    }
  }
}

.white-text-gradient h2 {
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.5));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.white-round-gradient>.elementor-widget-container {
  background: linear-gradient(122deg,
      #fff4d7 -22.23%,
      rgba(218, 222, 251, 0.98) 49.03%,
      rgba(216, 255, 220, 0.97) 91.79%);
}

.grow-business-contact {

  /* Outer Form Wrapper */
  .form-outer-warper {
    max-width: 600px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

    @media screen and (max-width: 1025px) {
      max-width: 100%;
    }

    @media screen and (max-width: 992px) {
      padding: 20px;
    }
  }

  .from-outer {
    max-width: 100%;

    @media screen and (max-width: 992px) {
      max-width: 100%;
    }

    p {
      margin-bottom: 0;
    }

    br {
      display: none;
    }

    span.wpcf7-form-control-wrap {
      display: block;
      position: relative;
      padding-bottom: 1.75rem;
      position: relative;
    }

    div.email-field,
    div.phone-field {
      width: 50%;

      @media screen and (max-width: 768px) {
        width: 100%;
      }
    }
  }

  /* Label Styling */
  .from-outer label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #1d2b3a;
    margin-bottom: 5px;
  }

  /* Input and Textarea Styling */
  .from-outer input,
  .from-outer textarea,
  .from-outer select {
    width: 100%;
    min-height: 42px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    background-color: #f8f8f8;
  }

  .from-outer select.serviceInterested {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20451.847%20451.847%22%3E%3Cpath%20d%3D%22M225.923%20354.706c-8.098%200-16.195-3.092-22.369-9.263L9.27%20151.157c-12.359-12.359-12.359-32.397%200-44.751%2012.354-12.354%2032.388-12.354%2044.748%200l171.905%20171.915%20171.906-171.909c12.359-12.354%2032.391-12.354%2044.744%200%2012.365%2012.354%2012.365%2032.392%200%2044.751L248.292%20345.449c-6.177%206.172-14.274%209.257-22.369%209.257z%22%20fill%3D%22%23000%22/%3E%3C/svg%3E") no-repeat right 1rem center;
    background-size: 1rem;
    padding-right: 2rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .from-outer .wpcf7-not-valid-tip {
    padding-top: 0.5rem;
    font-size: 0.8rem;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
  }

  .from-outer textarea {
    resize: none;
    height: 150px;
  }

  /* Input Focus Effect */
  .from-outer input:focus,
  .from-outer textarea:focus,
  .from-outer select:focus {
    border-color: #007bff;
    outline: none;
    background-color: #fff;
  }

  /* Field Wrappers */
  .full-name-field,
  .company-field,
  .message-field,
  .row-gap-field,
  .full-email-field,
  .full-phone-field {
    margin-bottom: 0.5rem;
  }

  /* Submit Button */

  .submit-button input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #f4a836;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
  }

  .submit-button input:hover,
  .submit-button input:active,
  .submit-button input:focus {
    background: #e69524;
  }

  .submit-button {
    position: relative;

    &>p {
      margin-bottom: 0;
    }

    span.wpcf7-spinner {
      position: absolute;
      top: 50%;
      right: 10px;
      transform: translateY(-50%);
    }
  }

  .wpcf7 form {
    .wpcf7-response-output {
      max-width: 100%;
      margin: 0.7rem 0 -0.8rem;
      padding: 0;
      font-family: "Inter";
      font-size: 14px;
      font-weight: 600;
      color: #1d2b3a;
      text-align: left;
      border: none;

      @media screen and (max-width: 992px) {
        max-width: 100%;
      }
    }
  }
}

/* FAQ Section */
.outer-faq-section {
  background: linear-gradient(90deg,
      rgba(133, 157, 189, 0.34) 0.01%,
      rgba(133, 157, 189, 0.09) 11.69%,
      rgba(133, 157, 189, 0.09) 32.24%,
      rgba(133, 157, 189, 0.13) 75.04%,
      rgba(133, 157, 189, 0.5) 99.99%);
  backdrop-filter: blur(19.596906661987305px);
}

.faq-custom {
  .elementor-widget-container {
    .e-n-accordion {
      .e-n-accordion-item {
        border-radius: 24px;
        border: 2px solid #2b3c44;
        background: #fff;
        backdrop-filter: blur(7.5px);
        margin-bottom: 25px;
        overflow: hidden;

        @media screen and (max-width: 768px) {
          border-radius: 12px;
        }

        &:last-child {
          margin-bottom: 0;
        }

        .e-n-accordion-item-title {
          border: none;
          flex-direction: row-reverse;
          justify-content: space-between;
          padding: 0;

          .e-n-accordion-item-title-header {
            padding-left: 30px;
            padding-top: 10px;
            padding-bottom: 10px;

            @media screen and (max-width: 768px) {
              padding-left: 20px;
              padding-top: 14px;
              padding-bottom: 14px;
            }

            .e-n-accordion-item-title-text {
              color: #000;
              font-family: Urbanist;
              font-size: 24px;
              font-style: normal;
              font-weight: 700;
              line-height: 133%;
              /* 31.92px */
              letter-spacing: -0.32px;
              display: flex;
              align-items: center;
              justify-content: center;
              gap: 20px;

              @media screen and (max-width: 992px) {
                font-size: 20px;
              }

              @media screen and (max-width: 768px) {
                font-size: 16px;
              }
            }
          }

          .e-n-accordion-item-title-icon {
            &>span {
              border-radius: 0px 24px 0px 0px;
              backdrop-filter: blur(7.5px);
              width: 83px;
              height: 79px;
              padding: 29px 32px;
              box-sizing: border-box;
              border-top-right-radius: 20px;

              @media screen and (max-width: 992px) {
                width: 60px;
                height: 60px;
                padding: 20px;
              }

              @media screen and (max-width: 768px) {
                width: 40px;
                height: 40px;
                padding: 12px;
                border-radius: 0;
                backdrop-filter: none;
              }

              svg {
                width: 24px;
                height: 24px;

                @media screen and (max-width: 768px) {
                  height: auto;
                }
              }

              &.e-opened {
                background-color: #f3ae36;

                @media screen and (max-width: 768px) {
                  background: none;
                }

                svg {
                  @media screen and (max-width: 768px) {
                    fill: #f3ae36;
                  }
                }
              }

              &.e-closed {
                background-color: #152329;

                @media screen and (max-width: 768px) {
                  background: none;
                }

                svg {
                  fill: #fff;

                  @media screen and (max-width: 768px) {
                    fill: #000;
                  }
                }
              }
            }
          }
        }

        .elementor-element {
          &.e-con-full {
            border: none;
          }
        }
      }
    }
  }
}

/* FAQ Section */

/* Custom Owl Theme Dots Style */

.owl-theme {
  .owl-nav.disabled+.owl-dots {
    button.owl-dot {
      span {
        width: 12px;
        height: 12px;
        background-color: #d9d9d9;
        transition: transform 0.3s ease;
        /* Smooth transition for movement */
      }

      &:hover {
        span {
          transform: translateX(10px);
          /* Moves the dots 10px to the right on hover */
        }
      }
    }

    button.owl-dot.active {
      span {
        width: 48px;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        background: #f3ae36;
      }

      &:hover {
        span {
          transform: translateX(-10px);
          /* Moves the dots 10px to the left on active state */
        }
      }
    }
  }
}

.chat-to-us {
  background-color: #f3ae36;
  width: 64px;
  height: 64px;
  color: #fff;
  right: 20px;
  bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;

  i {
    font-size: 2rem;
    line-height: 1;
  }
}

.audio-container {
  .play-icon {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);

    img {
      width: 100%;
      height: 100%;
      filter: brightness(0) invert(1);
    }
  }

  .audio-text {
    font-family: "Urbanist";
    font-size: 18px;
    line-height: 1;
    margin-bottom: -0.3rem;

    @media screen and (max-width: 1025px) {
      font-size: 16px;
    }

    @media screen and (max-width: 768px) {
      font-size: 14px;
    }

    @media screen and (max-width: 576px) {
      font-size: 13px;
    }
  }
}

.blue-gradient-btn-style {
  border-radius: 24px;
  border-bottom: 1px solid #fff;
  background: linear-gradient(90deg,
      rgba(133, 157, 189, 0.34) 0.01%,
      rgba(133, 157, 189, 0.09) 11.69%,
      rgba(133, 157, 189, 0.09) 32.24%,
      rgba(133, 157, 189, 0.13) 75.04%,
      rgba(133, 157, 189, 0.5) 99.99%);
  backdrop-filter: blur(39.19381332397461px);
}

.benefits-block {
  border-radius: 24px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(90deg,
      rgba(133, 157, 189, 0.34) 0.01%,
      rgba(133, 157, 189, 0.09) 11.69%,
      rgba(133, 157, 189, 0.09) 32.24%,
      rgba(133, 157, 189, 0.13) 75.04%,
      rgba(133, 157, 189, 0.5) 99.99%);
  backdrop-filter: blur(39.19381332397461px);
}

.customTapBackground {
  background: linear-gradient(90deg,
      rgba(133, 157, 189, 0.69) -4.55%,
      rgba(133, 157, 189, 0.17) 6.47%,
      rgba(133, 157, 189, 0.19) 30.93%,
      rgba(133, 157, 189, 0.26) 78.02%,
      #859dbd 105.48%);
  backdrop-filter: blur(19.596906661987305px);
}

.custom-tab-style {
  .e-n-tabs-heading {
    border-radius: 24px;
    background-color: #f4f4f4;

    @media screen and (min-width: 1024px) {
      gap: 1rem !important;
    }

    @media screen and (max-width: 992px) {
      background-color: transparent;
    }

    button {
      &.e-n-tab-title {

        &:hover,
        &:focus,
        &:active {
          background-color: #011437 !important;

          @media screen and (min-width: 1024px) {
            box-shadow: none !important;
          }
        }

        &[aria-selected="true"] {
          background-color: #011437 !important;

          @media screen and (min-width: 1024px) {
            box-shadow: none !important;
          }
        }

        @media screen and (min-width: 1024px) {
          box-shadow: none !important;
        }
      }
    }
  }
}

.our-plans-parent-tab:not(.our-plans-child-tab)>.elementor-widget-container:first-of-type {
  &>div {
    &.e-n-tabs {
      align-items: center;

      @media screen and (max-width: 767px) {
        align-items: stretch;
      }

      &>div {
        &.e-n-tabs-heading {
          width: auto;
          padding: 15px;
          border-radius: 15px;
          -webkit-border-radius: 15px;
          background-color: #fff;

          @media screen and (max-width: 992px) {
            padding: 10px;
          }
        }
      }
    }
  }
}

.our-plans-parent-tab {
  .e-n-tabs-content {
    .our-plans-child-tab {
      .elementor-widget-container {
        .e-n-tabs {
          .e-n-tabs-heading {
            position: relative;

            &::before {
              content: "";
              width: 100%;
              height: 1px;
              background-color: #fff;
              position: absolute;
              top: auto;
              bottom: 0.1rem;
              left: 0;
              right: 0;
              opacity: 0.5;

              @media screen and (max-width: 767px) {
                display: none;
              }
            }

            button {
              &.e-n-tab-title {
                &[aria-selected="false"] {
                  @media screen and (min-width: 767px) {
                    border-color: transparent !important;
                  }
                }

                &:hover {
                  &[aria-selected="false"] {
                    @media screen and (min-width: 767px) {
                      border-color: transparent !important;
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

.pricing-block-outer {
  .pricing-block-back {
    background: linear-gradient(90deg,
        rgba(133, 157, 189, 0.34) 0.01%,
        rgba(133, 157, 189, 0.09) 11.69%,
        rgba(133, 157, 189, 0.09) 32.24%,
        rgba(133, 157, 189, 0.13) 75.04%,
        rgba(133, 157, 189, 0.5) 99.99%);
    box-shadow: 0px 3.254px 4.881px 0px rgba(0, 0, 0, 0.1),
      0px 8.135px 12.202px 0px rgba(0, 0, 0, 0.1);
  }

  &:hover {
    .pricing-block-back {
      box-shadow: none;
      background: none;

      h2 {
        &.elementor-heading-title {
          color: #000;
        }
      }

      p {
        color: #011437 !important;

        span {
          color: #646464 !important;
        }
      }

      ul.elementor-icon-list-items {
        .elementor-icon-list-item {
          .elementor-icon-list-text {
            color: #646464 !important;
          }
        }
      }
    }
  }
}

.full-width-start-trial {
  .elementor-widget-container {
    .elementor-button-wrapper {
      .elementor-button {
        &.elementor-button-link {
          width: 100%;
        }
      }
    }
  }
}

/* Blog Details and content area */

.post-categories-list {
  .post-categories {
    li {
      &.category-list-item {
        border-radius: 6px;
        background: #f3ae36;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.25rem 1rem;
        color: #fff;
        font-size: 2rem;
        font-weight: 600;
        line-height: 2.5rem;
        letter-spacing: -0.045rem;

        @media screen and (max-width: 1200px) {
          font-size: 1.5rem;
          line-height: 2rem;
          padding: 0.25rem 0.75rem;
        }

        @media screen and (max-width: 992px) {
          font-size: 1.25rem;
          line-height: 1.75rem;
          padding: 0.35rem 0.5rem;
        }

        @media screen and (max-width: 767px) {
          font-size: 1rem;
          line-height: 1.5rem;
          padding: 0.25rem 0.5rem;
        }

        /* @media screen and (max-width: 576px) {
          font-size: 0.75rem;
          line-height: 1.25rem;
        } */
      }
    }
  }
}

.blog-details-outer,
.content-details-outer {
  .entry-header {
    margin-bottom: 2rem;

    @media screen and (max-width: 1200px) {
      margin-bottom: 1.5rem;
    }

    @media screen and (max-width: 992px) {
      margin-bottom: 1rem;
    }

    /* @media screen and (max-width: 768px) {
        margin-bottom: 0.5rem;
      }

      @media screen and (max-width: 576px) {
        margin-bottom: 0.25rem;
      }

      @media screen and (max-width: 480px) {
        margin-bottom: 0.125rem;
      } */

    .entry-title {
      font-size: 3rem;
      font-weight: 600;
      line-height: 3.75rem;
      letter-spacing: -0.06rem;
      color: #181a2a;
      margin-bottom: 1.5rem;

      @media screen and (max-width: 1200px) {
        font-size: 2.5rem;
        line-height: 3rem;
        margin-bottom: 1.25rem;
      }

      @media screen and (max-width: 992px) {
        font-size: 2rem;
        line-height: 2.5rem;
        margin-bottom: 1rem;
      }

      @media screen and (max-width: 768px) {
        font-size: 1.5rem;
        line-height: 2rem;
        margin-bottom: 0.75rem;
      }

      @media screen and (max-width: 576px) {
        font-size: 1.25rem;
        line-height: 1.75rem;
      }

      @media screen and (max-width: 480px) {
        font-size: 1.125rem;
        line-height: 1.5rem;
      }
    }

    .entry-meta {
      line-height: 1.625rem;
      color: #696a75;

      @media screen and (max-width: 1200px) {
        line-height: 1.5rem;
      }

      @media screen and (max-width: 992px) {
        line-height: 1.375rem;
      }

      @media screen and (max-width: 768px) {
        line-height: 1.25rem;
      }
    }
  }

  .custom-post-thumbnail-style {
    border-radius: 24px;
    overflow: hidden;

    &>img {
      object-fit: cover;
      width: 100%;
    }
  }

  .custom-style-single-post,
  .custom-style-content {
    &.entry-content {
      margin-top: 2rem;
      margin-bottom: 2rem;

      @media screen and (max-width: 1200px) {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
      }

      @media screen and (max-width: 992px) {
        margin-top: 1rem;
        margin-bottom: 1rem;
      }

      /* @media screen and (max-width: 768px) {
          margin-top: 0.5rem;
          margin-bottom: 0.5rem;
        }

        @media screen and (max-width: 576px) {
          margin-top: 0.25rem;
          margin-bottom: 0.25rem;
        }

        @media screen and (max-width: 480px) {
          margin-top: 0.125rem;
          margin-bottom: 0.125rem;
        } */

      p {
        line-height: 1.625rem;

        @media screen and (max-width: 1200px) {
          line-height: 1.5rem;
        }

        @media screen and (max-width: 992px) {
          line-height: 1.375rem;
          font-size: 14px;
        }

        @media screen and (max-width: 767px) {
          line-height: 1.25rem;
          font-size: 14px;
        }

        @media screen and (max-width: 576px) {
          line-height: 1.125rem;
        }

        a {
          color: #f3ae36;
          text-decoration: none;
          font-weight: 600;

          &:hover {
            color: #152329;
            text-decoration: underline;
          }
        }
      }

      h1 {
        font-size: 28px;
        font-weight: 600;
        line-height: 2rem;
        margin-bottom: 1.5rem;
        margin-top: 0.5rem;

        @media screen and (max-width: 1200px) {
          font-size: 26px;
          margin-bottom: 1.25rem;
          margin-top: 0.5rem;
        }

        @media screen and (max-width: 992px) {
          font-size: 24px;
          margin-bottom: 1rem;
          margin-top: 0.5rem;
        }

        @media screen and (max-width: 767px) {
          font-size: 22px;
          margin-bottom: 0.75rem;
          margin-top: 0.5rem;
        }

        @media screen and (max-width: 576px) {
          font-size: 20px;
        }

        @media screen and (max-width: 480px) {
          font-size: 18px;
        }

        @media screen and (max-width: 375px) {
          font-size: 17px;
        }
      }

      h2 {
        font-size: 24px;
        font-weight: 600;
        line-height: 1.75rem;
        margin-bottom: 1.25rem;
        margin-top: 0.5rem;

        @media screen and (max-width: 1200px) {
          font-size: 22px;
          margin-bottom: 1rem;
          margin-top: 0.5rem;
        }

        @media screen and (max-width: 992px) {
          font-size: 20px;
          margin-bottom: 0.75rem;
          margin-top: 0.5rem;
        }

        @media screen and (max-width: 767px) {
          font-size: 18px;
          margin-bottom: 0.5rem;
          margin-top: 0.5rem;
        }

        @media screen and (max-width: 576px) {
          font-size: 16px;
        }

        @media screen and (max-width: 480px) {
          font-size: 14px;
        }

        @media screen and (max-width: 375px) {
          font-size: 13px;
        }
      }

      h3,
      h4,
      h5,
      h6 {
        font-size: 22px;
        font-weight: 600;
        line-height: 1.75rem;
        margin-bottom: 1.25rem;
        margin-top: 0.5rem;

        @media screen and (max-width: 1200px) {
          font-size: 20px;
          margin-bottom: 1rem;
          margin-top: 0.5rem;
        }

        @media screen and (max-width: 992px) {
          font-size: 18px;
          margin-bottom: 0.75rem;
          margin-top: 0.5rem;
        }

        @media screen and (max-width: 767px) {
          font-size: 16px;
          margin-bottom: 0.5rem;
          margin-top: 0.5rem;
        }

        @media screen and (max-width: 576px) {
          font-size: 14px;
        }

        @media screen and (max-width: 480px) {
          font-size: 13px;
        }

        @media screen and (max-width: 375px) {
          font-size: 12px;
        }
      }

      ul,
      ol {
        list-style: disc;
        margin-left: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0;

        @media screen and (max-width: 1200px) {
          margin-left: 1.5rem;
          margin-bottom: 1.25rem;
        }

        @media screen and (max-width: 992px) {
          margin-left: 1.25rem;
          margin-bottom: 1rem;
        }

        @media screen and (max-width: 767px) {
          margin-left: 1rem;
          margin-bottom: 0.75rem;
        }

        @media screen and (max-width: 576px) {
          margin-left: 0.75rem;
          margin-bottom: 0.5rem;
        }

        li {
          line-height: 1.625rem;

          @media screen and (max-width: 1200px) {
            line-height: 1.5rem;
          }

          @media screen and (max-width: 992px) {
            line-height: 1.375rem;
            font-size: 14px;
          }

          @media screen and (max-width: 767px) {
            line-height: 1.25rem;
            font-size: 13px;
          }

          @media screen and (max-width: 576px) {
            line-height: 1.125rem;
            font-size: 12px;
          }
        }
      }

      blockquote {
        border-radius: 12px;
        border-left: 4px solid var(--Secondary-100, #e8e8ea);
        background: #f6f6f7;
        display: flex;
        padding: 32px;
        align-items: center;
        gap: 32px;
        align-self: stretch;

        @media screen and (max-width: 1200px) {
          padding: 24px;
          gap: 24px;
        }

        @media screen and (max-width: 992px) {
          padding: 16px;
          gap: 16px;
        }

        @media screen and (max-width: 768px) {
          padding: 12px;
          gap: 12px;
        }

        @media screen and (max-width: 576px) {
          padding: 8px;
          gap: 8px;
        }

        p {
          &:last-child {
            margin-bottom: 0;
          }
        }
      }
    }
  }
}

.loaderOuter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;

  .loaderAnimate {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid #0000;
    border-right-color: #ffa50097;
    position: relative;
    animation: loadingAnimation 1s infinite linear;

    &::before,
    &::after {
      content: "";
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      border: inherit;
      animation: inherit;
      animation-duration: 2s;
    }

    &::after {
      animation-duration: 4s;
    }
  }
}

@keyframes loadingAnimation {
  100% {
    transform: rotate(1turn);
  }
}

/* Comments Style */
/* ===== Leave a Comment Section Styling ===== */
#comments {
  margin-top: 0;
  background-color: #fff;
  padding: 30px 0;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-top: solid 1px #f3ae36;

  @media screen and (max-width: 1200px) {
    padding: 20px 0;
  }

  @media screen and (max-width: 992px) {
    padding: 15px 0;
  }
}

#reply-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;

  @media screen and (max-width: 1200px) {
    font-size: 20px;
    margin-bottom: 15px;
  }

  @media screen and (max-width: 992px) {
    font-size: 18px;
    margin-bottom: 10px;
  }

  @media screen and (max-width: 768px) {
    font-size: 16px;
  }
}

.comment-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: #333;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;

  @media screen and (max-width: 992px) {
    padding: 10px;
    font-size: 14px;
  }

  @media screen and (max-width: 768px) {
    font-size: 13px;
  }
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.comment-form textarea {
  resize: vertical;
}

.comment-form .form-submit input[type="submit"] {
  background-color: #f9a825;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;

  @media screen and (max-width: 992px) {
    padding: 10px 20px;
    font-size: 15px;
  }

  @media screen and (max-width: 768px) {
    font-size: 14px;
    padding: 8px 15px;
  }
}

.comment-form .form-submit input[type="submit"]:hover {
  background-color: #e89e00;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 20px;

  @media screen and (max-width: 992px) {
    font-size: 13px;
  }
}

.comment-form-cookies-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #f9a825;
  margin: 0;
}

.comment-form-cookies-consent label {
  margin: 0;
  cursor: pointer;
  color: #333;
}

.comments-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #222;
  margin: 2rem 0 1.5rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
  line-height: 1.3;

  @media screen and (max-width: 1200px) {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
  }

  @media screen and (max-width: 992px) {
    font-size: 1.25rem;
    margin: 1rem 0 0.75rem;
  }

  @media screen and (max-width: 767px) {
    font-size: 1.125rem;
    margin: 0.75rem 0 0.5rem;
  }

  @media screen and (max-width: 576px) {
    font-size: 1rem;
    margin: 0.5rem 0 0.25rem;
  }
}

.comments-title span {
  color: #555;
  font-weight: 400;
  font-size: 1.25rem;

  @media screen and (max-width: 1200px) {
    font-size: 1.125rem;
  }

  @media screen and (max-width: 992px) {
    font-size: 1rem;
  }

  @media screen and (max-width: 767px) {
    font-size: 0.875rem;
  }
}

/* Container for all comments */
.comment-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

/* Each individual comment */
.comment {
  margin-top: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

/* Comment author avatar */
.comment-author .avatar {
  border-radius: 50%;
  float: left;
  margin-right: 1rem;
}

/* Comment metadata: author name and date */
.comment-meta {
  font-size: 0.875rem;
  color: #777;
  margin-bottom: 0.5rem;

  @media screen and (max-width: 992px) {
    font-size: 0.8rem;
  }

  @media screen and (max-width: 768px) {
    font-size: 0.75rem;
  }
}

.comment-author {
  font-weight: 600;
  color: #111;
}

.comment-author a {
  color: #111;
  text-decoration: none;
}

.comment-author a:hover {
  text-decoration: underline;
}

/* Comment content */
.comment-content {
  font-size: 1rem;
  line-height: 1.6;
  margin-left: 3rem;

  @media screen and (max-width: 768px) {
    font-size: 0.95rem;
  }
}

/* Comment reply link */
.reply {
  margin-left: 3rem;
  margin-top: 0.5rem;
}

.reply a {
  font-size: 0.85rem;
  color: #0073aa;
  text-decoration: none;
}

.reply a:hover {
  text-decoration: underline;
}

/* Nested comments (replies) */
.children {
  list-style: none;
  padding-left: 3rem;
  margin-top: 1rem;
  border-left: 2px solid #eee;

  @media screen and (max-width: 1200px) {
    padding-left: 2.8rem;
    margin-top: 0.8rem;
  }

  @media screen and (max-width: 992px) {
    padding-left: 2.5rem;
    margin-top: 0.6rem;
  }

  @media screen and (max-width: 768px) {
    padding-left: 2rem;
  }

  @media screen and (max-width: 576px) {
    padding-left: 1.5rem;
  }
}



/* Comments Section */