/*==== Header Styles ====*/
header {
  position: sticky;
  top: 0;
  z-index: 999999;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(32, 53, 69, 0.25);
  padding: 10px 0;
  -webkit-box-shadow: 0 2px 13px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 13px 0 rgba(0, 0, 0, 0.25);
}
@media (min-width: 1200px) {
  .header-area__grid {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    grid-template-areas: "logo nav-wrapper cta-wrapper";
    align-items: center;
    gap: 30px;
  }
  .header-area__logo-wrapper {
    max-width: 150px;
    height: auto;
    grid-area: logo;
    grid-column: 0.5;
  }
  .header-area__nav-wrapper {
    grid-area: nav-wrapper;
    grid-column: 0.6666666667;
  }
  .header-area__cta-wrapper {
    grid-area: cta-wrapper;
    grid-column: 0.75;
  }
  .header-area__mobile-menu-toggle-wrapper {
    display: none;
  }
}
@media (max-width: 1199px) {
  .header-area__grid {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    grid-template-areas: "logo cta-wrapper nav-toggler";
    align-items: center;
    gap: 30px;
  }
  .header-area__logo-wrapper {
    grid-area: logo;
  }
  .header-area__cta-wrapper {
    grid-area: cta-wrapper;
    margin-left: auto;
  }
  .header-area__mobile-menu-toggle-wrapper {
    grid-area: nav-toggler;
  }
  .header-area__nav-wrapper {
    display: block;
    position: fixed;
    width: 100%;
    height: calc(100vh - 112px);
    top: 112px;
    left: -100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    overflow: hidden;
    transition: all 0.6s;
    z-index: 9;
  }
  .header-area__nav-wrapper .navbar-collapse {
    height: 100% !important;
    overflow-y: scroll;
    padding-right: 30px;
    flex-basis: max-content;
    flex-grow: 0;
    display: block;
  }
  .header-area__nav-wrapper .navbar-nav {
    flex-direction: column;
  }
  .header-area__nav-wrapper .navbar-nav a.nav-link {
    font-size: 20px;
  }
  .header-area__nav-wrapper.toggled {
    left: 0;
  }
}
@media (max-width: 767px) {
  header {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .header-area__grid {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas: "logo logo" "cta-wrapper nav-toggler";
    align-items: center;
    gap: 10px;
  }
  .header-area__logo-wrapper {
    max-width: 160px;
    margin: auto;
  }
  .header-area__cta-wrapper {
    margin-right: auto;
    margin-left: unset;
  }
  .header-area__nav-wrapper {
    height: calc(100vh - 112px);
    top: 150px;
  }
}
@media (max-width: 767px) {
  .header-area__logo-wrapper {
    max-width: 120px;
  }
}
@media (min-width: 1200px) {
  div#navbarNav,
  div#navbarNav * {
    all: unset;
  }
}
div#navbarNav .navbar-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
div#navbarNav .navbar-nav .nav-item a.nav-link {
  display: inline-block;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px;
  cursor: pointer;
  transition: var(--common-transition);
}
div#navbarNav .navbar-nav .nav-item a.nav-link:hover {
  color: var(--secondary-color);
}
div#navbarNav .navbar-nav .nav-item .fas.fa-caret-down {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-left: 3px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
div#navbarNav .navbar-nav .nav-item:hover a.nav-link {
  color: var(--secondary-color);
}
div#navbarNav .navbar-nav .nav-item:hover .fas.fa-caret-down {
  color: var(--secondary-color);
}
div#navbarNav .navbar-nav .nav-item .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 6px 24px rgba(32, 53, 69, 0.18);
  border-radius: 8px;
  z-index: 1050;
  min-width: 220px;
}
div#navbarNav .navbar-nav .nav-item:last-child .dropdown-menu {
  right: 0;
  left: inherit;
}
div#navbarNav .navbar-nav .nav-item .dropdown-menu li {
  display: block;
}
div#navbarNav .navbar-nav .nav-item.dropdown:hover > .dropdown-menu,
div#navbarNav .navbar-nav .nav-item.dropdown:focus-within > .dropdown-menu {
  display: block;
}
div#navbarNav .navbar-nav .dropdown-item {
  padding: 10px 15px;
  color: #000000;
  background-color: #a4ce4d;
  font-size: 15px;
  font-weight: 500;
  border: none;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #7db012;
}
div#navbarNav .navbar-nav .dropdown-item:hover,
div#navbarNav .navbar-nav .dropdown-item:focus {
  background: var(--secondary-color);
  color: #fff;
}
@media (max-width: 1199px) {
  .nav-item.dropdown:hover > .dropdown-menu,
  .nav-item.dropdown:focus-within > .dropdown-menu {
    display: none !important;
  }
  div#navbarNav .navbar-nav {
    justify-content: center;
  }
  div#navbarNav .navbar-nav .nav-item {
    text-align: center;
  }
  div#navbarNav .navbar-nav .nav-item.dropdown a.nav-link {
    position: relative;
    left: -10px;
  }
  div#navbarNav .navbar-nav .nav-item.dropdown a.nav-link span.dropdown-caret {
    position: absolute;
    left: 100%;
    top: 0;
    height: 100%;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  div#navbarNav .navbar-nav .nav-item.dropdown a.nav-link span.dropdown-caret .fas {
    font-size: 16px !important;
    margin: 0;
  }
  div#navbarNav .navbar-nav .nav-item.dropdown .dropdown-menu {
    display: none;
    position: static;
    top: unset;
    left: unset;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    border-top: 3px solid var(--secondary-color);
  }
  div#navbarNav .navbar-nav .nav-item.dropdown .dropdown-menu li {
    display: block;
  }
  div#navbarNav .navbar-nav .nav-item.dropdown.clicked .dropdown-menu {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .navbar-toggler {
    display: none;
  }
}
.navbar-toggler {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border-radius: 50%;
  position: relative;
  z-index: 1200;
  box-shadow: 0 2px 8px rgba(32, 53, 69, 0.25);
  width: 54px;
  height: 54px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.navbar-toggler:focus {
  box-shadow: 0 2px 8px rgba(32, 53, 69, 0.25);
}
.custom-hamburger {
  display: block;
  width: 32px;
  height: 32px;
  position: relative;
}
.custom-hamburger .bar {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--primary-color);
  transition: top 0.3s cubic-bezier(0.6, 0, 0.34, 1), left 0.3s cubic-bezier(0.6, 0, 0.34, 1),
    width 0.3s cubic-bezier(0.6, 0, 0.34, 1), background 0.3s cubic-bezier(0.6, 0, 0.34, 1),
    transform 0.35s cubic-bezier(0.7, 0, 0.33, 1), opacity 0.25s;
}
.custom-hamburger .bar:nth-child(1) {
  top: 4px;
}
.custom-hamburger .bar:nth-child(2) {
  top: 14px;
}
.custom-hamburger .bar:nth-child(3) {
  top: 24px;
}
/* Animated (open) state: morph into X with some color accent and fun movement */
.navbar-toggler[aria-expanded="true"] .custom-hamburger .bar:nth-child(1) {
  top: 14px;
  transform: rotate(45deg) scaleX(1.1);
  background: var(--secondary-color);
}
.navbar-toggler[aria-expanded="true"] .custom-hamburger .bar:nth-child(2) {
  opacity: 0;
  left: 30%;
  width: 40%;
}
.navbar-toggler[aria-expanded="true"] .custom-hamburger .bar:nth-child(3) {
  top: 14px;
  transform: rotate(-45deg) scaleX(1.1);
  background: var(--secondary-color);
}
/* Optional: menu overlay for dramatic effect (use in HTML as needed) */
.menu-active-overlay {
  position: fixed;
  z-index: 1100;
  background: rgba(32, 53, 69, 0.28);
  opacity: 1;
  transition: opacity 0.3s;
  pointer-events: auto;
}
.menu-active-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
/* Add fun bouncy interaction when toggled */
.navbar-toggler:active .custom-hamburger .bar {
  transform: scaleX(0.92);
}
/*========= Hero Banner =========*/
.hero-banner-wrapper {
  width: 100%;
  height: calc(100vh - 165px);
  max-height: 700px;
  position: relative;
  background: linear-gradient(180deg, #c5c4fe, #000);
}
.hero-banner-wrapper .item {
  width: 100%;
  display: flex;
  height: calc(100vh - 165px);
  max-height: 700px;
  position: relative;
  align-items: center;
  z-index: 0;
}
.hero-banner-wrapper .item > img {
  object-fit: cover;
  object-position: center;
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero-banner-wrapper .item .container {
  z-index: 99;
}
.hero-text .check-square {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-text .check-square > li {
  font-size: 24px;
  font-weight: 700;
}

.hero-text .check-square > li::before {
  left: -3px;
  font-size: 24px;
}
.hero-text .mega-heading {
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  font-size: 75px;
  text-shadow: 2px 2px 10px rgb(255 255 255);
}

.hero-text .mega-heading span {
  color: var(--secondary-color);
  text-shadow: 2px 2px 0 #0061a1, 2px -2px 0 #0061a1, -2px 2px 0 #0061a1, -2px -2px 0 #0061a1, 2px 0px 0 #0061a1,
    0px 2px 0 #0061a1, -2px 0px 0 #0061a1, 0px -2px 0 #0061a1;
}
@media (max-width: 1599px) {
  .hero-text .mega-heading {
    font-size: 65px;
  }
}

@media (max-width: 1199px) {
  .hero-banner-wrapper,
  .hero-banner-wrapper .item {
    max-height: 500px;
  }
  .hero-text .mega-heading {
    font-size: 55px;
  }
  .hero-text .check-square {
    gap: 25px;
  }
  .hero-text .check-square > li {
    font-size: 18px;
  }
  .hero-text .check-square > li::before {
    left: 0;
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .hero-banner-wrapper,
  .hero-banner-wrapper .item {
    max-height: 450px;
  }
}
@media (max-width: 767px) {
  .hero-text {
    text-align: center;
    padding: 15px;
    background: rgb(255 255 255 / 60%);
    border-radius: 10px;
  }
  .hero-text .mega-heading {
    font-size: 45px;
  }
  .hero-banner-wrapper .item > img {
    object-position: right;
  }
  .hero-text .check-square {
    gap: 25px;
    justify-content: center;
  }
}
@media (max-width: 425px) {
  .hero-banner-wrapper,
  .hero-banner-wrapper .item {
    max-height: 350px;
  }
  .hero-text .mega-heading {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .hero-text .check-square {
    gap: 15px;
    justify-content: center;
  }
  .hero-text .check-square > li {
    font-size: 14px;
    padding-left: 18px;
  }
  .hero-text .check-square > li::before {
    font-size: 14px;
  }
}

/*========== Footer ==========*/
.footer {
  background-color: #232721;
}

.footer-top {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  gap: 30px;
  padding-block: 20px;
}

.footer-logo img {
  width: 160px;
  height: auto;
  background-color: #fff;
  border-radius: 5px;
  padding: 5px;
}
a.social-icon {
  text-align: end;
}

.social-icon img {
  width: 30px;
}

.footer-section ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.footer-section ul a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.footer-bottom {
  background: #232721;
  color: white;
  padding-block: 15px;
  border-top: 1px solid #636363;
}

.powered-by img {
  max-width: 20px;
  margin: 0 2px;
}

.powered-by a {
  color: #febb02;
  text-decoration: none;
}

.footer-bottom p {
  font-size: 15px;
  margin-bottom: 0;
}
.footer-copyright {
  font-size: 15px;
  margin-bottom: 5px;
}
.social-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, 32px);
  justify-content: center;
  gap: 10px;
}

.social-icons img {
  background: #fff;
  padding: 5px;
  border-radius: 8px;
  box-shadow: 0 0 3px 0 #00000038;
  width: 32px;
}
@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
    text-align: center;
  }
  .footer-links ul {
    gap: 15px;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .footer-bottom .col.text-center {
    flex-direction: column;
    gap: 5px;
  }
}

/*=========== Home page ==========*/
.easyAccess .common-box {
  box-shadow: 0 0 10px 0 rgb(80 80 80 / 10%);
  height: 100%;
  background-color: #fff;
  border-radius: 7px;
  border: 1px solid #ebebeb;
  text-align: center;
  padding: 30px;
}

.easyAccess .text-center p {
  font-weight: 400;
}

.easyAccess .text-center {
  margin-bottom: 30px;
  color: #fff;
  text-shadow: -3px 3px 5px rgb(63 63 63 / 50%);
}

.common-sec.easyAccess {
  background-color: var(--primary-color);
}

.easyAccess .common-box .title-sm {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 700;
}
.easyAccess .common-box .common-btn.cta {
  font-size: 20px;
  min-width: 250px;
}
.easyAccess .text-center h2,
.easyAccess .text-center p {
  color: #fff;
}
.easyAccess .common-box p {
  font-weight: 500;
}
.easyAccess .common-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .easyAccess .common-box {
    padding: 20px;
  }
  .easyAccess .common-box .title-sm {
    margin-bottom: 15px;
  }
}

/*====== review =====*/
.common-sec.review-sec {
  background-color: #ffffff;
  border-top: 1px solid #f9f9f9;
}
.review-card {
  border-radius: 10px;
  padding: 2rem;
  display: grid;
  grid-gap: 10px;
  box-shadow: rgb(0 0 0 / 0.24) 0 3px 8px;
  transition: all ease 0.5s;
  height: 100%;
  border-top: 4px solid var(--secondary-color);
  padding-bottom: 15px;
}

.r_header,
.r_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0061a1;
  margin-bottom: 0;
}

.r_header {
  font-size: 18px;
  font-weight: 600;
}

.r_body {
  font-size: 15px;
  font-weight: 400;
  border-top: 1px solid rgb(209 209 209 / 50%);
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgb(209 209 209 / 50%);
}
.review-star {
  font-size: 2.4rem;
}

.review-star::before {
  content: "★★★★★";
  color: #ffffff;
  display: inline-block;
}

.review-star[data-rating^="1"]::before {
  content: "★☆☆☆☆";
  color: #fdd835;
}

.review-star[data-rating^="2"]::before {
  content: "★★☆☆☆";
  color: #fdd835;
}

.review-star[data-rating^="3"]::before {
  content: "★★★☆☆";
  color: #fdd835;
}

.review-star[data-rating^="4"]::before {
  content: "★★★★☆";
  color: #fdd835;
}

.review-star[data-rating^="5"]::before {
  content: "★★★★★";
  color: #ffc107;
}

.review-card .r_footer {
  align-items: center;
}
.quoteIcon img {
  max-width: 25px;
  opacity: 0.4;
}

/*===common-card====*/
.why-choose .common-card {
  text-align: center;
}
.common-card {
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  background-color: var(--primary-color);
  color: #fff;

  *:last-child {
    margin-bottom: 0;
  }
  .title-sm {
    font-weight: 600;
    color: var(--secondary-color);
  }
}

/*==== FAQs ===*/
.details-block details {
  background-color: #dae6ff;
  border-radius: 10px;
  border: 1px solid #fff;
}

.details-block details + details {
  margin-top: 15px;
}

.details-block details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.details-block details summary:after {
  font-size: 20px;
  text-align: center;
}

.details-block details summary:after {
  content: "+";
}

.details-block details[open] summary:after {
  content: "-";
}

.details-block details[open] .expand {
  padding-left: 15px;
  position: relative;
  margin: 0 20px 15px 20px;
  border-left: 2px solid #7ba4ff;
}

.custom-banner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.custom-banner-wraper {
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-banner-wraper .custom-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
h1.banner-heading {
  color: var(--primary-color);
}
.custom-banner-content {
  box-shadow: 0 0 0 0 #fff;
  background-color: #ffffffa1;
  padding: 30px;
  border-radius: 20px;
  max-width: 820px;
}
.custom-banner-content p {
  color: #193465;
}

@media (min-width: 991px) {
  .custom-banner-content p {
    font-size: 22px;
  }
}
.steps-flow {
  padding-left: 30px;
  position: relative;
}

.steps-flow:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: 9px;
  background-color: #0061a154;
}

.steps-flow .step {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.steps-flow .step + .step {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #0061a154;
}

.steps-flow .step > span {
  flex-basis: 80px;
  min-width: 0;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  background-color: #3581b4;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 5px;
  margin-bottom: 5px;
}

.steps-flow .step > span::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 25px;
  background-color: #3581b4;
  clip-path: polygon(100% 75%, 50% 100%, 0 75%, 0 0, 50% 25%, 100% 0);
  left: -30px;
  top: 0;
}

.steps-flow .step > .content {
  min-width: 0;
  flex-basis: 100%;
  border-radius: 5px;
}

.steps-flow .step .content > *:last-child {
  margin-bottom: 0;
}

.steps-flow .step > .content .title {
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 991px) {
  [class*="col-lg"]:has(.steps-flow) + [class*="col-lg"] .steps-flow {
    padding-top: 15px;
  }

  [class*="col-lg"]:has(.steps-flow) + [class*="col-lg"]:has(.steps-flow) .step:first-child {
    padding-top: 15px;
    border-top: 1px solid lavender;
  }
}

@media (max-width: 767px) {
  [class*="col-lg"]:has(.steps-flow) + [class*="col-lg"] .steps-flow {
    padding-top: 15px;
  }

  [class*="col-sm"]:has(.steps-flow) + [class*="col-lg"]:has(.steps-flow) .step:first-child {
    padding-top: 15px;
    border-top: 1px solid lavender;
  }
}
.common-card > .check-square > li::before {
  color: white;
}
.common-card > .check-square > li::before {
  color: white;
}

.common-box {
  background-color: #fff;
  padding: 25px;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 10px #e0e0e0;
}

.common-box p:last-child {
  margin-bottom: 0;
}

.common-box {
  background-color: #fff;
  padding: 25px;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 10px #e0e0e0;
}

.common-box p:last-child {
  margin-bottom: 0;
}

ul.check-square.check-box {
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px;
}

.check-square.check-box li {
  margin-bottom: 0;
  border: 1px solid #e8e8e8;
  padding: 20px;
  padding-left: 50px;
  font-weight: 500;
  box-shadow: 0 3px 10px #ececec;
  border-radius: 5px;
  font-size: 20px;
}

.check-square.check-box li::before {
  color: #97d516;
  top: 28%;
  left: 3%;
  font-size: 20px;
}
@media (max-width: 991px) {
  ul.check-square.check-box {
    grid-template-columns: auto;
    gap: 15px;
  }
  .check-square.check-box li {
    font-size: 18px;
  }
  .check-square.check-box li::before {
    top: 27%;
  }
}
@media (max-width: 767px) {
  .check-square.check-box li::before {
    color: #97d516;
    top: 26%;
    left: 3%;
    font-size: 18px;
  }
  .check-square.check-box li {
    font-size: 18px;
    padding: 15px;
    padding-left: 45px;
  }
}

/*======= Contact Form ======*/
.dynamic-form .form-grid {
  gap: 2rem;
}
.dynamic-form .form-title {
  display: none;
}

.dynamic-form .form-group {
  flex: 1 1 420px;
}

.dynamic-form .form-actions {
  text-align: center;
  margin-top: 2.5rem;
}

.dynamic-form .btn-submit {
  background: linear-gradient(135deg, #0061a1, #0061a1);
  padding: 8px 20px;
  font-size: 1.6rem;
  min-width: 150px;
}

.dynamic-form .floating-label {
  font-size: 1.7rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.dynamic-form .form-control {
  font-size: 1.6rem;
  width: 100%;
  padding: 8px;
  box-shadow: inset 0 0 4px -0.5px rgb(212 212 212 / 50%);
}