@charset "UTF-8";


:root {
  --theme-color: #2d9cdb;
  --theme-color2: #6B61FC;
  --title-color: #1F1F1F;
  --body-color: #5C6574;
  --smoke-color: #E0E0E0;
  --smoke-color2: #F8F8F8;
  --smoke-color3: #EBEEFF;
  --smoke-color4: #F9F8FF;
  --black-color: #000000;
  --black-color2: #0A0A0A;
  --gray-color: #bdbdbd;
  --white-color: #ffffff;
  --light-color: #72849B;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --th-border-color: #E0E0E0;
  --title-font: "Poppins", sans-serif;
  --body-font: "DM Sans", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1320px;
  --container-gutters: 24px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}



/*------------------- 1.5. Typography -------------------*/
html,
body {
  scroll-behavior: auto !important;
}



body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}



body.theme-blue {
  --theme-color: #7444FD;
}




table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--th-border-color);
}



th {
  font-weight: 700;
  color: var(--title-color);
}



td,
th {
  border: 1px solid var(--th-border-color);
  padding: 9px 12px;
}



a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}



a:hover {
  color: var(--title-color);
}




a:active,
a.nice-select.open, a:focus, a:hover, a:visited {
  text-decoration: none;
  outline: 0;
}



button {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}



img {
  border: none;
  max-width: 100%;
}



ins {
  text-decoration: none;
}



pre {
  font-family: var(--body-font);
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}



span.ajax-loader:empty,
p:empty {
  display: none;
}



p {
  font-family: var(--body-font);
  margin: 0 0 18px 0;
  color: var(--body-color);
  line-height: 1.75;
}



h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}



.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 15px 0;
}



.h1,
h1 {
  font-size: 64px;
  line-height: 1.208;
}



.h2,
h2 {
  font-size: 44px;
  line-height: 1.25;
  font-weight: 600;
}



.h3,
h3 {
  font-size: 36px;
  line-height: 1.278;
}



.h4,
h4 {
  font-size: 30px;
  line-height: 1.333;
}



.h5,
h5 {
  font-size: 24px;
  line-height: 1.417;
}



.h6,
h6 {
  font-size: 20px;
  line-height: 1.5;
}



/* Large devices */
@media (max-width: 1199px) {
  .h1,
  h1 {
    font-size: 44px;
    line-height: 1.3;
  }


  .h2,
  h2 {
    font-size: 36px;
    line-height: 1.3;
  }


  .h3,
  h3 {
    font-size: 30px;
  }


  .h4,
  h4 {
    font-size: 24px;
  }


  .h5,
  h5 {
    font-size: 20px;
  }


  .h6,
  h6 {
    font-size: 16px;
  }


}

/* Small devices */
@media (max-width: 767px) {
  .h1,
  h1 {
    font-size: 40px;
  }


  .h2,
  h2 {
    font-size: 34px;
    line-height: 1.3;
  }


  .h3,
  h3 {
    font-size: 26px;
  }


  .h4,
  h4 {
    font-size: 22px;
  }


  .h5,
  h5 {
    font-size: 18px;
  }


  .h6,
  h6 {
    font-size: 16px;
  }


}

/* Extra small devices */
@media (max-width: 575px) {
  .h1,
  h1 {
    font-size: 34px;
    line-height: 1.35;
  }


  .h2,
  h2 {
    font-size: 28px;
  }


}

/* Extra small devices */
@media (max-width: 375px) {
  .h1,
  h1 {
    font-size: 32px;
  }


}


/*=================================
    03. Utilities
==================================*/
/*------------------- 3.1. Preloader -------------------*/
/*======================= 
    Preloader
=======================*/
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: var(--white-color);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}



@-webkit-keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }


  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }


}

@keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }


  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }


}

/*------------------- 3.2. Buttons -------------------*/
.th-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 19.5px 40px;
  border-radius: 100px;
}



@media (max-width: 375px) {
  .th-btn.style-radius {
    padding: 18px 25px;
  }


}

.th-btn.btn-fw {
  width: 100%;
}



.scroll-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}



/*------------------- 3.3. Titles -------------------*/
.sec-title {
  margin-bottom: calc(var(--section-title-space) - 10px);
  margin-top: -0.32em;
  text-transform: capitalize;
}



@media (max-width: 575px) {
  .sub-title.sub-title4.style1 {
    padding-left: 40px;
  }


}

@media (max-width: 450px) {
  .sub-title.sub-title4.style1 {
    padding-left: 0;
  }


}

.sub-title.sub-title4.style1:before {
  margin-left: 0rem;
  /* Extra small devices */
}



@media (max-width: 375px) {
  .sub-title.sub-title4.style1:before {
    display: none;
  }


}

.sub-title.sub-title4.style1:after {
  display: none;
}



@media (max-width: 575px) {
  .sub-title.sub-title4::before, .sub-title.sub-title4:after {
    width: 30px;
  }


}

@media (max-width: 450px) {
  .sub-title.sub-title4::before, .sub-title.sub-title4:after {
    display: none;
  }


}

.sub-title.sub-title4::before {
  background-color: var(--theme-color);
  margin-left: -2.5rem;
  /* Extra small devices */
}



@media (max-width: 575px) {
  .sub-title.sub-title4::before {
    margin-left: -1.3rem;
  }


}

.sub-title.sub-title4::after {
  background-color: var(--theme-color);
  margin-left: 10px;
}



@media (max-width: 1199px) {
  .sec-text2 {
    max-width: 100%;
  }


}

.title-area {
  margin-bottom: calc(var(--section-title-space) - 10px);
  position: relative;
  z-index: 2;
}



hr.title-line {
  margin-top: 0;
  background-color: var(--th-border-color);
  opacity: 1;
}



/* Large devices */
@media (max-width: 1199px) {
  .sub-title {
    margin-bottom: 20px;
  }


}

/* Medium devices */
@media (max-width: 991px) {
  .shadow-title {
    font-size: 60px;
  }


}

/* Extra small devices */
@media (max-width: 575px) {
  .shadow-title {
    font-size: 52px;
  }


}

/* Extra small devices */
@media (max-width: 375px) {
  .shadow-title {
    font-size: 40px;
  }


}

/*Magnific popup transition********/
.mfp-zoom-in .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
}



/*------------------- 3.6. Font -------------------*/
.font-icon {
  font-family: var(--icon-font);
}



/*------------------- 3.7. Background -------------------*/
.bg-theme {
  background-color: var(--theme-color) !important;
}


.bg-blue2 {
  background-color: #000 !important;
}



.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}



/*------------------- 3.8. Text Color -------------------*/
.text-theme {
  color: var(--theme-color) !important;
}



a.text-theme:hover,
.text-reset:hover {
  text-decoration: underline;
}



/*------------------- 3.9. Overlay -------------------*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}



[data-overlay] {
  position: relative;
  z-index: 2;
}



[data-overlay] [class^="col-"],
[data-overlay] [class*="col-"] {
  z-index: 1;
}



[data-overlay]:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}



[data-overlay="theme"]:before {
  background-color: var(--theme-color);
}



[data-overlay="title"]:before {
  background-color: var(--title-color);
}



[data-overlay="white"]:before {
  background-color: var(--white-color);
}



[data-overlay="black"]:before {
  background-color: var(--black-color);
}



[data-overlay="overlay1"]:before {
  background-color: #080E1C;
}



[data-opacity="1"]:before {
  opacity: 0.1;
}



[data-opacity="2"]:before {
  opacity: 0.2;
}



[data-opacity="3"]:before {
  opacity: 0.3;
}



[data-opacity="4"]:before {
  opacity: 0.4;
}



[data-opacity="5"]:before {
  opacity: 0.5;
}



[data-opacity="6"]:before {
  opacity: 0.6;
}



[data-opacity="7"]:before {
  opacity: 0.7;
}



[data-opacity="8"]:before {
  opacity: 0.8;
}



[data-opacity="9"]:before {
  opacity: 0.9;
}



[data-opacity="10"]:before {
  opacity: 1;
}



/*------------------- 3.10. Animation -------------------*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}



@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }


  30% {
    opacity: 0.4;
  }


  100% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    opacity: 0;
  }


}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }


  30% {
    opacity: 0.4;
  }


  100% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    opacity: 0;
  }


}

@-webkit-keyframes ripple2 {
  0% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0.4;
  }


  50% {
    opacity: 0.3;
  }


  80% {
    opacity: 0.2;
  }


  100% {
    -webkit-transform: scale(2.2);
            transform: scale(2.2);
    opacity: 0;
  }


}

@keyframes ripple2 {
  0% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0.4;
  }


  50% {
    opacity: 0.3;
  }


  80% {
    opacity: 0.2;
  }


  100% {
    -webkit-transform: scale(2.2);
            transform: scale(2.2);
    opacity: 0;
  }


}

.fancy-animation {
  -webkit-animation: morph 8s ease-in-out infinite;
          animation: morph 8s ease-in-out infinite;
}



@-webkit-keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }


  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }


  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }


}

@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }


  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }


  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }


}

.movingX {
  -webkit-animation: movingX 8s linear infinite;
          animation: movingX 8s linear infinite;
}



@-webkit-keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }


  50% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }


  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }


}

@keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }


  50% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }


  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }


}

.moving {
  -webkit-animation: moving 8s linear infinite;
          animation: moving 8s linear infinite;
}



@-webkit-keyframes moving {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }


  50% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }


  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }


}

@keyframes moving {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }


  50% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }


  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }


}

.jump {
  -webkit-animation: jumpAni 7s linear infinite;
          animation: jumpAni 7s linear infinite;
}



@-webkit-keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }


  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }


  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }


}

@keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }


  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }


  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }


}

.jump-reverse {
  -webkit-animation: jumpReverseAni 7s linear infinite;
          animation: jumpReverseAni 7s linear infinite;
}



@-webkit-keyframes jumpReverseAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }


  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }


  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }


}

@keyframes jumpReverseAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }


  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }


  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }


}

.spin {
  -webkit-animation: spin 15s linear infinite;
          animation: spin 15s linear infinite;
}



@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }


  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }


}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }


  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }


}

@-webkit-keyframes titleFill {
  0% {
    width: 0;
  }


  80% {
    width: 100%;
  }


  100% {
    width: 100%;
  }


}

@keyframes titleFill {
  0% {
    width: 0;
  }


  80% {
    width: 100%;
  }


  100% {
    width: 100%;
  }


}

@-webkit-keyframes lineDown {
  0% {
    -webkit-transform: 0;
            transform: 0;
    opacity: 0;
  }


  30% {
    opacity: 1;
  }


  60% {
    opacity: 1;
  }


  100% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
    opacity: 1;
  }


}

@keyframes lineDown {
  0% {
    -webkit-transform: 0;
            transform: 0;
    opacity: 0;
  }


  30% {
    opacity: 1;
  }


  60% {
    opacity: 1;
  }


  100% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
    opacity: 1;
  }


}

.swing {
  -webkit-animation: swing 10s infinite ease-in-out;
          animation: swing 10s infinite ease-in-out;
}



@-webkit-keyframes swing {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }


  25% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }


  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }


  75% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }


}

@keyframes swing {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }


  25% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }


  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }


  75% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }


}

.dance {
  -webkit-animation: dance 2s alternate infinite;
          animation: dance 2s alternate infinite;
}



@-webkit-keyframes dance {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }


  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }


}

@keyframes dance {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }


  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }


}

.dance2 {
  -webkit-animation: dance2 4s alternate infinite;
          animation: dance2 4s alternate infinite;
}



@-webkit-keyframes dance2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }


  50% {
    -webkit-transform: translate3d(15px, -15px, 0);
            transform: translate3d(15px, -15px, 0);
  }


  100% {
    -webkit-transform: translate3d(0, -15px, 15px);
            transform: translate3d(0, -15px, 15px);
  }


}

@keyframes dance2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }


  50% {
    -webkit-transform: translate3d(15px, -15px, 0);
            transform: translate3d(15px, -15px, 0);
  }


  100% {
    -webkit-transform: translate3d(0, -15px, 15px);
            transform: translate3d(0, -15px, 15px);
  }


}

@-webkit-keyframes zoom1 {
  0% {
    scale: 0.2;
  }


  50% {
    scale: 1;
  }


  100% {
    scale: 0.2;
  }


}

@keyframes zoom1 {
  0% {
    scale: 0.2;
  }


  50% {
    scale: 1;
  }


  100% {
    scale: 0.2;
  }


}

@-webkit-keyframes topBottomLine {
  0% {
    top: 0;
  }


  50% {
    top: calc(100% - 30px);
  }


  100% {
    top: 0;
  }


}

@keyframes topBottomLine {
  0% {
    top: 0;
  }


  50% {
    top: calc(100% - 30px);
  }


  100% {
    top: 0;
  }


}

.bg-color-ani,
.color-animate {
  -webkit-animation: bgColor 6s linear infinite;
          animation: bgColor 6s linear infinite;
}



@-webkit-keyframes bgColor {
  0% {
    background-color: #F2BA4C;
  }


  25% {
    background-color: #81F24C;
  }


  50% {
    background-color: #41F27D;
  }


  75% {
    background-color: #0500FF;
  }


  100% {
    background-color: #F2BA4C;
  }


}

@keyframes bgColor {
  0% {
    background-color: #F2BA4C;
  }


  25% {
    background-color: #81F24C;
  }


  50% {
    background-color: #41F27D;
  }


  75% {
    background-color: #0500FF;
  }


  100% {
    background-color: #F2BA4C;
  }


}

@-webkit-keyframes footerLine {
  0% {
    left: 40px;
  }


  50% {
    left: 0;
  }


  100% {
    left: 40px;
  }


}

@keyframes footerLine {
  0% {
    left: 40px;
  }


  50% {
    left: 0;
  }


  100% {
    left: 40px;
  }


}

@-webkit-keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }


  50% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }


}

@keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }


  50% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }


}

@-webkit-keyframes animate-positive {
  0% {
    width: 0;
  }


}

@keyframes animate-positive {
  0% {
    width: 0;
  }


}

.fadein,
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-name: var(--animation-name);
          animation-name: var(--animation-name);
}



@-webkit-keyframes shine {
  100% {
    left: 125%;
  }


}

@keyframes shine {
  100% {
    left: 125%;
  }


}

.swiper-slide-active .fadein {
  --animation-name: fadein;
}



@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }


  100% {
    opacity: 1;
  }


}

@keyframes fadein {
  0% {
    opacity: 0;
  }


  100% {
    opacity: 1;
  }


}

@-webkit-keyframes slideinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }


}

@keyframes slideinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }


}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }


  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
            transform: translateX(calc(-100% - var(--gap)));
  }


}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }


  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
            transform: translateX(calc(-100% - var(--gap)));
  }


}

@-webkit-keyframes slideinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(180px);
            transform: translateX(180px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }


}

@keyframes slideinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(180px);
            transform: translateX(180px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }


}

@-webkit-keyframes slideindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }


}

@keyframes slideindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }


}

@-webkit-keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }


}

@keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }


}

@-webkit-keyframes slidebottomright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(120px) translateY(120px);
            transform: translateX(120px) translateY(120px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }


}

@keyframes slidebottomright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(120px) translateY(120px);
            transform: translateX(120px) translateY(120px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }


}

@-webkit-keyframes slidetopleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px) translateY(-100px);
            transform: translateX(-100px) translateY(-100px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }


}

@keyframes slidetopleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px) translateY(-100px);
            transform: translateX(-100px) translateY(-100px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }


}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }


}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }


}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}



@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }


}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }


}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}



@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }


}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }


}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}



@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }


}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }


}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}



@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }


  50% {
    opacity: 1;
  }


}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }


  50% {
    opacity: 1;
  }


}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }


}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}



@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }


}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}



@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }


}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}



@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }


}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}



@keyframes dance {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }


  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }


}

.dance2 {
  -webkit-animation: dance2 4s alternate infinite;
          animation: dance2 4s alternate infinite;
}



@keyframes dance2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }


  50% {
    -webkit-transform: translate3d(15px, -15px, 0);
            transform: translate3d(15px, -15px, 0);
  }


  100% {
    -webkit-transform: translate3d(0, -15px, 15px);
            transform: translate3d(0, -15px, 15px);
  }


}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }


  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }


}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }


  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }


}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}



@-webkit-keyframes slideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }


}

@keyframes slideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }


  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }


}

.slideUp {
  -webkit-animation-name: slideOutUp;
          animation-name: slideOutUp;
}



/*=================================
    04. Template Style
==================================*/
/*------------------- 4.1. Widget  -------------------*/
.widget_nav_menu ul,
.widget_meta ul,
.widget_pages ul,
.widget_archive ul,
.widget_categories ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
}



.widget_nav_menu > ul,
.widget_nav_menu .menu,
.widget_meta > ul,
.widget_meta .menu,
.widget_pages > ul,
.widget_pages .menu,
.widget_archive > ul,
.widget_archive .menu,
.widget_categories > ul,
.widget_categories .menu {
  margin: 0 0 -10px 0;
}



.widget_nav_menu a,
.widget_meta a,
.widget_pages a,
.widget_archive a,
.widget_categories a {
  display: block;
  background-color: var(--white-color);
  border: 1px solid var(--smoke-color);
  margin: 0 0 10px 0;
  padding: 16px 45px 19px 25px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.313;
  color: var(--body-color);
  border-radius: 100px;
}



.widget_nav_menu a::before,
.widget_meta a::before,
.widget_pages a::before,
.widget_archive a::before,
.widget_categories a::before {
  content: "\f061";
  position: absolute;
  right: 25px;
  top: 17px;
  font-family: var(--icon-font);
  font-weight: 600;
  color: var(--theme-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}



.widget_nav_menu li,
.widget_meta li,
.widget_pages li,
.widget_archive li,
.widget_categories li {
  display: block;
  position: relative;
}



.widget_nav_menu li > span,
.widget_meta li > span,
.widget_pages li > span,
.widget_archive li > span,
.widget_categories li > span {
  color: var(--white-color);
  background-color: #272A34;
  font-weight: 600;
  text-align: center;
  position: absolute;
  right: 24px;
  top: 15px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  pointer-events: none;
  min-width: 20px;
  text-align: right;
}



.widget_nav_menu a:hover,
.widget_meta a:hover,
.widget_pages a:hover,
.widget_archive a:hover,
.widget_categories a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
}



.widget_nav_menu a:hover:before,
.widget_meta a:hover:before,
.widget_pages a:hover:before,
.widget_archive a:hover:before,
.widget_categories a:hover:before {
  color: var(--white-color);
}



.widget_nav_menu a:hover ~ span,
.widget_meta a:hover ~ span,
.widget_pages a:hover ~ span,
.widget_archive a:hover ~ span,
.widget_categories a:hover ~ span {
  color: var(--white-color);
  background-color: var(--theme-color);
}



.widget_nav_menu .children,
.widget_meta .children,
.widget_pages .children,
.widget_archive .children,
.widget_categories .children {
  margin-left: 10px;
}



.widget_nav_menu a,
.widget_meta a,
.widget_pages a {
  padding-right: 20px;
}



.widget_nav_menu .sub-menu {
  margin-left: 10px;
}



.widget {
  padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px);
  background-color: var(--smoke-color2);
  margin-bottom: 40px;
  position: relative;
  border-radius: 30px;
}



.widget[data-overlay]:before {
  z-index: -1;
}



.widget .th-social a {
  box-shadow: 0px 9px 20px rgba(0, 0, 0, 0.06);
}



.widget.widget-author {
  padding: var(--widget-padding-y, 30px) var(--widget-padding-x, 30px);
  background-color: transparent;
  border: 1px solid var(--smoke-color);
  border-radius: 30px;
  margin-right: 16px;
  /* Medium Large devices */
}



@media (max-width: 1399px) {
  .widget.widget-author {
    margin: 0;
  }


}

.widget.widget-author .author-widget-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  /* Small devices */
}



@media (max-width: 767px) {
  .widget.widget-author .author-widget-wrap {
    display: block;
    text-align: center;
  }


}

.widget.widget-author .author-widget-wrap .avater {
  min-width: 189px;
  display: grid;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 15px;
  /* Small devices */
}



@media (max-width: 767px) {
  .widget.widget-author .author-widget-wrap .avater {
    margin-bottom: 25px;
  }


}

.widget.widget-author .author-widget-wrap .avater img {
  border-radius: 15px;
}



.widget.widget-author .author-widget-wrap .box-title {
  margin-bottom: 3px;
}



.widget.widget-author .author-widget-wrap .desig {
  color: var(--theme-color);
  display: block;
  margin-bottom: 5px;
}



.widget.widget-author .author-widget-wrap .author-bio {
  margin-bottom: -0.3rem;
}



.widget.widget_categories.style2 {
  background-color: #EBEEFF;
}



.widget.widget_categories.style2 a {
  border: none;
}



.widget.widget_categories.style2 a:before {
  color: var(--body-color);
}



.widget.widget_categories.style2 a:hover:before {
  color: var(--white-color);
}



.widget_title {
  position: relative;
  font-size: 22px;
  font-weight: 500;
  font-family: var(--title-font);
  line-height: 1em;
  margin: -0.12em 0 28px 0;
}



.widget .search-form {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}



.widget .search-form input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 55px;
  border-radius: 100px;
  padding-right: 55px;
}



.widget .search-form button {
  border: none;
  font-size: 16px;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  padding: 0;
  width: 55px;
  height: 55px;
  text-align: center;
  border-radius: 100px;
  position: absolute;
  top: 0;
  right: 0;
}



.widget .search-form button:hover {
  background-color: var(--title-color);
}



@media (max-width: 1299px) {
  .widget_cta {
    --space: 30px;
  }


}

.widget_cta:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0.9;
  background: -webkit-linear-gradient(top, rgba(62, 102, 243, 0) -18.65%, #0031DD 99.96%);
  background: linear-gradient(180deg, rgba(62, 102, 243, 0) -18.65%, #0031DD 99.96%);
}



@media (max-width: 1299px) {
  .widget_cta .banner-title {
    font-size: 20px;
    line-height: 30px;
  }


}

.widget_cta .th-btn {
  border-radius: 30px;
}



@media (max-width: 1199px) {
  .widget_offer {
    padding: 30px;
  }


}

.widget_offer .offer-banner {
  text-align: center;
}



@media (max-width: 1199px) {
  .widget_offer .offer-banner .offer {
    padding: 30px;
  }


}

.widget_offer .offer-banner .offer-title {
  font-size: 20px;
  font-weight: 500;
  margin: -0.3rem 0 2px 0;
  /* Large devices */
}



@media (max-width: 1199px) {
  .widget_offer .offer-banner .offer-title {
    font-size: 16px;
  }


}

.widget_offer .offer-banner .offer-text {
  font-family: var(--title-font);
  margin-bottom: 20px;
}



@media (max-width: 1199px) {
  .widget_offer .offer-banner .th-btn {
    padding: 17px 30px;
  }


}

.widget_info .widget_title {
  border-bottom: 1px solid var(--smoke-color);
  margin-bottom: 20px;
  padding-bottom: 25px;
}



@media (max-width: 991px) {
  .sidebar-area.style2 {
    margin-left: 0;
  }


}

.sidebar-area ul.wp-block-latest-posts {
  margin-bottom: 0;
}



.sidebar-area .widget .wp-block-search {
  margin-bottom: 0;
}



.widget_banner .widget_title {
  color: var(--white-color);
}



@media (max-width: 360px) {
  .widget-banner {
    height: 280px;
  }


}

.widget-banner .text {
  display: block;
  margin-top: -0.4em;
  margin-bottom: 15px;
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 500;
}



/* Medium Large devices */
@media (max-width: 1299px) {
  .widget-banner .title {
    font-size: 34px;
  }


}

.project-info-list .contact-feature {
  padding: 17px;
}



.widget_shopping_cart .widget_title {
  margin-bottom: 30px;
  border-bottom: none;
}



@media (min-width: 1200px) {
  .sidebar-shop .widget {
    padding: 30px;
  }


}

@media (min-width: 992px) {
  .sidebar-shop .widget {
    margin-bottom: 24px;
  }


}

/* Large devices */
@media (max-width: 1199px) {
  .widget {
    --widget-padding-y: 30px;
    --widget-padding-x: 30px;
  }


  .widget_title {
    font-size: 22px;
    margin: -0.12em 0 24px 0;
  }


}

/* Medium devices */
@media (max-width: 991px) {
  .sidebar-area {
    padding-top: 30px;
  }


  .widget {
    --widget-padding-y: 40px;
    --widget-padding-x: 40px;
  }


}

/* Small devices */
@media (max-width: 767px) {
  .widget {
    padding: 35px 20px;
  }


}

@media (max-width: 330px) {
  .recent-post .post-title {
    font-size: 14px;
    line-height: 24px;
  }


}

.footer-widget {
  margin-bottom: 50px;
}



.footer-widget,
.footer-widget .widget {
  padding: 0;
  border: none;
  padding-bottom: 0;
  background-color: transparent;
  box-shadow: none;
}



.footer-widget .form-group > i {
  color: #0021a6;
  top: 18px;
}



.footer-widget .sidebar-gallery {
  max-width: 287px;
}



.footer-widget .widget_title {
  color: var(--title-color);
  margin: -0.12em 0 35px 0;
  padding: 0 0 17px 0;
}



.footer-widget .widget_title:before, .footer-widget .widget_title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 61px;
  height: 2px;
  background: var(--theme-color);
}



.footer-widget .widget_title:after {
  width: 16px;
  border: 2px solid var(--smoke-color3);
  height: 10px;
  background: transparent;
  bottom: -3px;
  left: 40px;
  -webkit-animation: footerLine 7s linear infinite;
          animation: footerLine 7s linear infinite;
}



.footer-widget.widget_meta ul, .footer-widget.widget_pages ul, .footer-widget.widget_archive ul, .footer-widget.widget_categories ul, .footer-widget.widget_nav_menu ul {
  margin-top: -5px;
}



.footer-widget.widget_meta .menu,
.footer-widget.widget_meta > ul, .footer-widget.widget_pages .menu,
.footer-widget.widget_pages > ul, .footer-widget.widget_archive .menu,
.footer-widget.widget_archive > ul, .footer-widget.widget_categories .menu,
.footer-widget.widget_categories > ul, .footer-widget.widget_nav_menu .menu,
.footer-widget.widget_nav_menu > ul {
  margin-bottom: -5px;
}



.footer-widget.widget_meta a, .footer-widget.widget_pages a, .footer-widget.widget_archive a, .footer-widget.widget_categories a, .footer-widget.widget_nav_menu a {
  font-size: 16px;
  font-weight: 400;
  padding: 0px;
  margin-bottom: 21px;
  font-family: var(--body-font);
  display: block;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: transparent;
  border: none;
  position: relative;
}



.footer-widget.widget_meta a:before, .footer-widget.widget_pages a:before, .footer-widget.widget_archive a:before, .footer-widget.widget_categories a:before, .footer-widget.widget_nav_menu a:before {
  display: none;
}



.footer-widget.widget_meta a:hover, .footer-widget.widget_pages a:hover, .footer-widget.widget_archive a:hover, .footer-widget.widget_categories a:hover, .footer-widget.widget_nav_menu a:hover {
  background-color: transparent;
  color: var(--theme-color);
}



.footer-widget.widget_meta li > span, .footer-widget.widget_pages li > span, .footer-widget.widget_archive li > span, .footer-widget.widget_categories li > span, .footer-widget.widget_nav_menu li > span {
  width: auto;
  height: auto;
  position: relative;
  background-color: transparent;
  color: var(--body-color);
  line-height: 1;
}



.footer-widget.widget_meta li:last-child a, .footer-widget.widget_pages li:last-child a, .footer-widget.widget_archive li:last-child a, .footer-widget.widget_categories li:last-child a, .footer-widget.widget_nav_menu li:last-child a {
  margin-bottom: 0;
}



.footer-widget .recent-post {
  margin-top: -0.3em;
  margin-bottom: 28px;
}



.footer-widget .recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}



.footer-widget .recent-post .recent-post-meta a {
  font-weight: 400;
  line-height: 1.2;
}



.footer-widget .recent-post .recent-post-meta i {
  color: var(--theme-color);
}



.footer-widget .recent-post .recent-post-meta a:hover i {
  color: var(--theme-color);
}



.th-widget-about .about-logo {
  margin-bottom: 35px;
}



.th-widget-about .about-text {
  margin-bottom: 25px;
  margin-top: -0.5em;
}



.newsletter-widget .form-control {
  background-color: var(--white-color) !important;
  border: 1px solid var(--th-border-color);
}



/* Large devices */
@media (max-width: 1199px) {
  .footer-widget.widget_meta a, .footer-widget.widget_pages a, .footer-widget.widget_archive a, .footer-widget.widget_categories a, .footer-widget.widget_nav_menu a {
    margin-bottom: 16px;
  }


}

/* Small devices */
@media (max-width: 767px) {
  .footer-widget .widget_title {
    margin-bottom: 35px;
  }


  .th-widget-about .about-text {
    margin-bottom: 20px;
  }


}

/*------------------- 4.2. Header  -------------------*/
.th-header {
  position: relative;
  z-index: 41;
}



@-webkit-keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
            transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }


  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
            transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }


}

@keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
            transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }


  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
            transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }


}

.main-menu a {
  display: block;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  color: var(--title-color);
  font-family: var(--body-font);
  text-transform: capitalize;
}



@media (max-width: 575px) {
  .header-logo {
    max-width: 150px;
  }


}

/* Large devices */
@media (max-width: 1199px) {
  .main-menu > ul > li > a {
    padding: 37px 0;
  }


}

.header-button .th-btn {
  min-width: 160px;
  /* Large devices */
}



@media (max-width: 1199px) {
  .header-button .th-btn {
    display: none;
  }


}

/* default-header start  ---------------------------------- */
.default-header .menu-area {
  position: relative;
  z-index: 2;
  background-color: var(--white-color);
  padding: 15px 0;
}



/* header layout1 start  ---------------------------------- */
.header-layout1 .menu-area {
  position: relative;
  z-index: 2;
  padding: 15px 0;
  border-bottom: 2px solid var(--white-color);
}



/* header layout1 end  ---------------------------------- */
/* header layout2 start  ---------------------------------- */
.header-layout2 .menu-area {
  position: relative;
  z-index: 2;
  padding: 15px 0 0 0;
  border-bottom: 2px solid var(--white-color);
}



/* header layout2 end  ---------------------------------- */
/* header layout3 start  ---------------------------------- */
.header-layout3 .menu-area {
  position: relative;
  z-index: 2;
  padding: 14px 0;
  border: 1px solid var(--smoke-color);
}



/* header layout3 end  ---------------------------------- */
/* header-layout4 start ------------------- */
.header-layout4.header-absolute {
  top: 30px;
}



@media (max-width: 375px) {
  .header-layout4 .menu-area {
    padding: 16px 15px;
  }


}

.header-layout4 .main-menu.style2 > ul > li {
  margin: 0 4px;
}



/* header-layout 5 start ------------------------*/
.header-layout5 .sticky-wrapper.sticky .menu-area {
  padding: 15px 0;
}



@media (max-width: 1699px) {
  .header-layout5 .menu-area {
    padding: 15px 0;
  }


}

.header-layout5 .main-menu > ul > li > a:hover {
  color: var(--title-color);
}



/* header-layout6 start -------------------------*/
.header-layout6 .sticky-wrapper.sticky {
  background-color: var(--title-color);
}



@media (max-width: 1699px) {
  .header-layout6 .menu-area {
    padding: 15px 0;
  }


}

.header-layout6 .main-menu > ul > li > a:hover {
  color: var(--title-color);
}



/* header-layout7 start -------------------*/
.header-layout7 {
  padding: 20px 0;
  z-index: 10;
  /* Large devices */
}



@media (max-width: 1199px) {
  .header-layout7 {
    padding: 10px 0;
  }


}

.header-layout7 .menu-area {
  position: relative;
  z-index: 3;
  padding: 5px 13px 5px 20px;
  border-radius: 50px;
}



@media (max-width: 1600px) {
  .header-layout7 .menu-area:before {
    max-width: 100%;
  }


}

@media (max-width: 1199px) {
  .header-layout7 .menu-area:before {
    display: none;
  }


}

.header-layout7 .menu-area:after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 38%;
  height: 80px;
  background-color: var(--title-color);
  z-index: 1;
  border-radius: 0 50px 50px 0px;
  -webkit-clip-path: path("M575 0H156.354C146.771 0 137.506 3.44058 130.246 9.69565L125.25 14L120.254 9.69565C112.994 3.44058 103.729 0 94.1455 0H29.7031L0.550781 80H94.1455C103.729 80 112.994 76.5594 120.254 70.3044L125.25 66L130.246 70.3043C137.506 76.5594 146.771 80 156.355 80H575C597.091 80 615 62.0914 615 40C615 17.9086 597.091 0 575 0Z");
          clip-path: path("M575 0H156.354C146.771 0 137.506 3.44058 130.246 9.69565L125.25 14L120.254 9.69565C112.994 3.44058 103.729 0 94.1455 0H29.7031L0.550781 80H94.1455C103.729 80 112.994 76.5594 120.254 70.3044L125.25 66L130.246 70.3043C137.506 76.5594 146.771 80 156.355 80H575C597.091 80 615 62.0914 615 40C615 17.9086 597.091 0 575 0Z");
  /* Extra large devices */
}



@media (max-width: 1699px) {
  .header-layout7 .menu-area:after {
    width: 36.8%;
  }


}

@media (max-width: 1500px) {
  .header-layout7 .menu-area:after {
    display: none;
  }


}

.header-layout7 .main-menu {
  position: relative;
  padding-left: 80px;
  z-index: 4;
  /* Large devices */
}



@media (max-width: 1199px) {
  .header-layout7 .main-menu {
    padding-left: 0;
  }


}

.header-layout7 .main-menu ul.sub-menu {
  padding: 18px 20px 18px 18px;
  left: -27px;
  margin-top: 25px;
}



@media (max-width: 1500px) {
  .header-layout7 .main-menu.style2 > ul li.menu-item-has-children:last-child a {
    color: var(--title-color);
  }


}

.header-layout7 .main-menu.style2 > ul li .sub-menu li a {
  color: var(--title-color) !important;
}



@media (max-width: 1299px) {
  .header-layout7 .th-btn {
    display: none;
  }


}

.header-layout7 .icon-btn {
  color: var(--white-color);
  border: 1px solid var(--white-color);
  z-index: 3;
  /* Extra large devices */
}



@media (max-width: 1500px) {
  .header-layout7 .icon-btn {
    border-color: var(--body-color);
    color: var(--body-color);
  }


}

/* header layout 8 --------------------*/
.header-layout8 .menu-area {
  border-bottom: none;
}



/*------------------- 4.3. Footer  -------------------*/
.footer-wrapper {
  --border-color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
  overflow: hidden;
}



.widget-area {
  padding-top: var(--section-space);
  padding-bottom: 30px;
}



.copyright-wrap {
  border-top: 2px solid var(--white-color);
  padding: 25px 0;
  background-size: 100% auto;
}



.copyright-text {
  margin: 0;
  color: var(--smoke-color);
}



.copyright-text a {
  color: var(--theme-color);
  text-decoration: none;
}



.copyright-text a:hover {
  color: var(--title-color);
}




@media (max-width: 1199px) {
  .footer-newsletter-content {
    text-align: center;
    margin-bottom: 25px;
  }


}

/* Medium devices */
@media (max-width: 991px) {
  .footer-wrapper .widget-area {
    padding-top: var(--section-space-mobile);
    padding-bottom: 30px;
  }


  .copyright-text {
    text-align: center;
  }


}

/* default-footer start ---------------------------*/
.default-footer .widget-area {
  padding-top: 80px;
}



/* default-footer end ---------------------------*/
/* footer-layout1 start ---------------------------*/
.footer-layout1 {
  background-color: #EFF1F9;
}



.footer-layout2 .widget-area {
  padding-top: 80px;
}



@media (max-width: 1500px) {
  .footer-layout2 .footer-area {
    border-radius: 0;
  }


}

.footer-layout2 .th-screen.th-visible {
  border-radius: 0;
  width: 100%;
}



.footer-layout2 .copyright-wrap {
  position: relative;
  border: none;
  padding: 32px 0;
  background-size: 100% auto;
  background-color: #080020;
  z-index: 2;
}



.footer-layout2 .copyright-wrap:before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 100%;
  height: 328px;
  background-color: #080020;
  z-index: -1;
}



.footer-layout2 .copyright-wrap .copyright-text {
  color: var(--white-color);
}



@media (max-width: 1199px) {
  .footer-layout2 .th-circle .circle.style1 {
    display: none;
  }


}

.footer-layout2 .th-circle .circle.style2 {
  width: 16px;
  height: 16px;
  top: 25%;
  right: 10%;
  background-color: #17D2D4;
  -webkit-animation: fadeLeftRight 10s linear infinite;
          animation: fadeLeftRight 10s linear infinite;
}



@media (max-width: 575px) {
  .footer-layout2 .th-circle .circle.style3 {
    display: none;
  }


}

.footer-layout3 {
  background-color: #FFECEF;
}



.footer-layout3 .footer-widget .widget_title:after {
  border: 2px solid #FFECEF;
}



.footer-layout3 .copyright-wrap {
  position: relative;
  border: none;
  padding: 25px 0;
  background-color: #080020;
  z-index: 2;
}



.footer-layout3 .copyright-wrap .copyright-text {
  color: var(--white-color);
}



.footer-layout4 .widget-area {
  padding-bottom: 70px;
}



.footer-layout4 .footer-widget .widget_title {
  color: var(--white-color);
}



.footer-layout4 .footer-widget .widget_title:after {
  border: 2px solid #022124;
}



.footer-layout4 .copyright-wrap {
  border-top: none;
  padding: 25px 0;
  background-color: #000010;
}



.footer-layout4 .copyright-wrap .copyright-text {
  color: var(--white-color);
}



.footer-layout4 .copyright-wrap .copyright-text a:hover {
  color: inherit;
}



/* footer layout5 start --------------------*/
.footer-layout5 {
  background-color: #F5F8F3;
}



.footer-layout5 .widget-area {
  background: #F5F8F3;
  border: 1px solid #1F1F1F;
  border-radius: 40px;
  padding: 60px 60px 10px;
  margin-bottom: 60px;
  /* Small devices */
}



@media (max-width: 767px) {
  .footer-layout5 .widget-area {
    padding: 60px 40px 10px;
  }


}

.footer-layout5 .widget-area .th-widget-about {
  position: relative;
  padding-right: 80px;
  /* Small devices */
}



@media (max-width: 767px) {
  .footer-layout5 .widget-area .th-widget-about {
    padding-right: 0;
  }


}

.footer-layout5 .widget-area .th-widget-about:before {
  content: "";
  position: absolute;
  top: -60px;
  right: 0;
  min-height: 354px;
  width: 1px;
  background-color: var(--title-color);
  /* Medium Large devices */
  /* Large devices */
}



@media (max-width: 1299px) {
  .footer-layout5 .widget-area .th-widget-about:before {
    min-height: 365px;
  }


}

@media (max-width: 1199px) {
  .footer-layout5 .widget-area .th-widget-about:before {
    display: none;
  }


}

.footer-layout5 .widget-area .footer-widget .widget_title:after {
  border: 2px solid #F5F8F3;
}



.footer-layout5 .widget-area .footer-widget.widget_nav_menu a {
  margin-bottom: 16.7px;
}



.footer-layout5 .copyright-wrap {
  border: none;
  background-color: #000010;
  padding: 21px 0;
}



.footer-layout5 .copyright-wrap .copyright-text {
  color: var(--white-color);
}



.footer-layout5 .copyright-wrap .copyright-text a:hover {
  color: var(--white-color);
}



.footer-layout6 .footer-widget .widget_title {
  color: var(--white-color);
}



.footer-layout6 .footer-widget .widget_title:after {
  width: 16px;
  border: 2px solid var(--black-color2);
}



.footer-layout6 .copyright-text a:hover {
  color: var(--white-color);
}



/* footer-layout 7 start ------------------*/


@media (max-width: 991px) {
  .footer-layout7 {
    background-image: none !important;
  }


}

.footer-layout7 .footer-widget .widget_title:after {
  border: 2px solid var(--smoke-color2);
}



.footer-layout7 .widget-area {
  padding-top: 100px;
}



.footer-layout7 .copyright-wrap {
  background-color: #E8E8E8;
  max-width: 1400px;
  display: block;
  margin: auto auto 62px auto;
  padding: 40px;
  border: none;
  border-radius: 30px;
  /* Extra small devices */
}



@media (max-width: 575px) {
  .footer-layout7 .copyright-wrap {
    margin-bottom: 30px;
  }


}

.footer-layout7 .footer-logo {
  margin-bottom: 12px;
  /* Medium devices */
}



@media (max-width: 991px) {
  .footer-layout7 .footer-logo {
    text-align: center;
  }


}

.footer-layout7 .box-title {
  font-size: 18px;
  font-weight: 500;
}



@media (max-width: 991px) {
  .footer-layout7 .footer-newsletter {
    max-width: 100%;
    margin: auto;
  }


}

.footer-layout7 .footer-newsletter-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* Medium devices */
}



@media (max-width: 991px) {
  .footer-layout7 .footer-newsletter-content {
    display: block;
    margin-top: 20px;
  }


}

.footer-layout7 .newsletter-form .form-control {
  min-height: 50px;
}



@media (max-width: 767px) {
  .footer-layout7 .newsletter-form .th-btn {
    position: relative;
    margin-top: 10px;
  }


}

.footer-layout7 .social-links a {
  font-size: 14px;
  color: var(--body-color);
  margin-right: 15px;
}



/* footer-layout8 -----------------------*/
.footer-layout8 .footer-text2 {
  color: #5C6574;
}



.footer-layout8 .newsletter-form.style2 .th-btn {
  color: var(--white-color);
}



.footer-layout8 .newsletter-form.style2 .th-btn:hover {
  color: var(--title-color);
}



.footer-layout8 .footer-top {
  border-bottom: 1px solid rgba(208, 211, 218, 0.1);
}



.footer-layout8 .footer-widget .widget_title {
  color: var(--white-color);
}



.footer-layout8 .footer-widget .widget_title:after {
  border: 2px solid #011359;
}



.footer-layout8 .copyright-wrap {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}



.footer-layout8 .copyright-text a:hover {
  color: var(--white-color);
}





/*=================================
    05. Spacing
==================================*/
/*-- Padding Left And Right --*/
.px-5 {
  padding-right: 5px;
  padding-left: 5px;
}



/*-- Padding Top And Bottom --*/
.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}



/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}



/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}



/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}



/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}



/*-- margin Left And Right --*/
.mx-5 {
  margin-right: 5px;
  margin-left: 5px;
}



/*-- margin Top And Bottom --*/
.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}



/*-- margin Top --*/
.mt-5 {
  margin-top: 5px;
}



/*-- margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}



/*-- margin Left --*/
.ml-5 {
  margin-left: 5px;
}



/*-- margin Right --*/
.mr-5 {
  margin-right: 5px;
}



@media (max-width: 1699px) {
  .me-80 {
    margin-right: 0;
  }


}

.ms-80 {
  margin-left: 80px;
}



@media (max-width: 1699px) {
  .ms-80 {
    margin-left: 0;
  }


}

.mt-60 {
  margin-top: 60px;
}



/* Medium devices */
@media (max-width: 991px) {
  .space,
  .space-top {
    padding-top: var(--section-space-mobile);
  }
}

/* index */

     .lpp:hover .imgg {
            transform: scale(1.1);
        }

        .lpp {
            border: 1px solid #000;

        }

        .lpp:hover h4 {
            background: #ebf9ff;
        }

        .lpp-heading {
            position: relative;
            padding: 10px 30px 13px 30px;
            margin-bottom: 0px;
            margin-top: -6px;
        }

        .lpp-heading::after {
            content: "\203A";
            /* Unicode arrow */
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 5%;
            font-size: 36px;
            color: #000;
            /* Change color as needed */
        }

        .imgg {
            border-bottom: 1px solid #000;
        }

        .img-box {
            padding: 50px;
        }

        .head1 {
            padding: 20px 50px 20px 50px;
        }

        .service-card {
            position: relative;
            overflow: hidden;
            border: 1px solid #ddd;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            height: 200px;
            /* Adjust height as needed */
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Gradient overlay for the first card */
        .service-card.gradient-overlay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #00C4B4, #007BFF);
            opacity: 0.8;
        }

        .card-title {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: #333;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .gradient-overlay .card-title {
            color: white;
        }

        .arrow {
            position: absolute;
            bottom: 20px;
            right: 20px;
            font-size: 1.5rem;
            color: #007BFF;
            text-decoration: none;
            font-weight: bold;
        }

        .arrow:hover {
            color: #0056b3;
        }

        .box {
            border: 1px solid #000
        }

        .head {
            border-top: 1px solid #000;
            padding: 10px 10px 10px 10px;
        }

        .ari {
            float: right;
            font-size: 25px;
        }

        .box {
            cursor: pointer;
        }

        .img-hover {
            overflow: hidden;
        }

        .img-hover img {
            width: 100%;
            transition: transform 0.4s ease;
        }

        /* Zoom image when .box is hovered */
        .box:hover .img-hover img {
            transform: scale(1.1);
        }

        a {
            color: #000;
            text-decoration: none;
        }

      
        .menu-bar {
            background-color: #2d9cdb;
            /* blue background */
            padding: 15px 0;
            text-align: center;
        }

        .menu-bar ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: inline-block;
        }

        .menu-bar ul li {
            display: inline;
            margin: 0 25px;
        }

        .menu-bar ul li {
            color: white;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            transition: color 0.3s;
        }

/* ===============================
   MENU BAR (RESPONSIVE)
================================ */

.menu-bar {
  background-color: #2d9cdb;
            /* blue background */
  padding: 15px 0;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* List */
.menu-bar-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Item */
.menu-bar-list li {
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  cursor: default;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Hover (desktop only) */
@media (hover: hover) {
  .menu-bar-list li:hover {
    background: linear-gradient(135deg, var(--p1), var(--p4));
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  }
}

/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */

/* Tablets */
@media (max-width: 768px) {
  .menu-bar {
    padding: 16px 10px;
  }

  .menu-bar-list {
    gap: 12px 16px;
  }

  .menu-bar-list li {
    font-size: 0.85rem;
    padding: 9px 16px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .menu-bar {
    border-radius: 14px;
  }

  .menu-bar-list {
    gap: 10px;
  }

  .menu-bar-list li {
    font-size: 0.8rem;
    padding: 8px 14px;
  }
}

        .lbtn {
            font-family: "Poppins", Sans-serif;
            font-size: 18px;
            font-weight: 500;
            color: #000;
            background-color: #00C5FF;
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
            padding: 15px 50px 15px 50px;
            border: 1px solid #00C5FF;
        }

        .lbtn:hover {
            transform: scale(1.1);
            /* Grow effect */
            animation: pulse 1s infinite;
            /* Pulse effect */
            transition: 0.9s;
        }

        .footer-text {
            color: #e0e0e0;
        }

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
            }

            50% {
                box-shadow: 0 0 15px 10px rgba(76, 175, 80, 0);
            }
        }

        .rounded {
            /* border: #011359;
    border-style: solid; */
            border-width: 4px;
            border-radius: 5px !important;

        }

        /* Container spacing */
.header-container {
    padding: 20px 0;
}

/* Row alignment */
.header-row {
    display: flex;
    align-items: center;     /* vertical centering */
}

/* Logo */
.logo-wrapper {
    padding-left: 20px;
}

.logo-wrapper img {
    max-width: 100%;
    height: auto;
    padding: 4px;
}

/* Search */
.search-wrapper {
    padding: 0 18px;
}

.search-wrapper input {
    height: 44px;
}

/* Right section */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;              /* proper spacing */
}

/* Cart icon */
.cart-icon {
    font-size: 32px;
    color: #000;
    margin-right: 10px;
}

/* Button */
.sign-btn {
    padding: 8px 16px;
}
    .header-row {
        display: flex;
        align-items: center;   /* vertical centering */
        height: 100%;
    }

    .header-right {
        display: flex;
        align-items: center;   /* center icon + button vertically */
        justify-content: flex-end;
        height: 100%;
    }

    /* Disclaimer Page Styling */
.disclaimer-section {
    padding: 60px 0;
    background-color: #f9fafc;
}

.disclaimer-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.disclaimer-box h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.disclaimer-box h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--theme-color);
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--theme-color);
    color: #ffffff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 9998;
}

.scroll-top-btn:hover {
    background: var(--title-color);
    transform: translateY(-3px);
}


/* Footer */
.footer {
  text-align: center;
  background: var(--theme-color);
  color: #fff;
  padding: 20px;
  font-size: 14px;
  margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .form-box { flex-direction: column; }
  .input-with-btn { flex-direction: column; align-items: stretch; }
  .input-with-btn button { width: 100%; height: 46px; }
}


    /* Feature Boxes */
    .features {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin: 40px 0;
      flex-wrap: wrap;
      max-width: 1400px;
    }

    .feature {
      background: var(--theme-color);
      color: #fff;
      padding: 80px 30px;
      border-radius: 10px;
      width: 350px;
      font-size: 20px;
      text-align: center;
      transition: 0.3s;
      position: relative;
      margin: 35px auto;
    }

    .feature:hover {
      background: #4338ca;
      transform: translateY(-5px);
    }

    .feature i {
      display: block;
      margin: 25px auto 0;
      font-size: 22px;
      transition: 0.3s;
    }

    .feature:hover i {
      transform: translateX(5px);
    }

    /* Setup Section */
    .setup-section {
      background: #dedcdc;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      padding: 50px 100px ;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      margin-bottom: 40px;
    }

    .setup-text {
      flex: 1;
      min-width: 280px;
      text-align: left;
    }

    .setup-text h2 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .setup-text p {
      font-size: 15px;
      margin-bottom: 20px;
    }

    .setup-text button {
      background: #2563eb;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }

    .setup-text button:hover {
      background: #1e4ed8;
    }

    .setup-img img {
      width: 100%;
      max-width: 400px;
      border-radius: 10px;
    }

    /* assistance & Troubleshooting */
    .assistance-section {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      text-align: left;
    }

    .assistance-box {
      background: #fff;
      border-radius: 10px;
      flex: 1;
      padding: 30px;
      min-width: 280px;
    }

    .assistance-box h3 {
      font-size: 35px;
      margin-bottom: 10px;
    }

    .assistance-box p {
      font-size: 15px;
      line-height: 2.1em;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .form-box {
        flex-direction: column;
        align-items: stretch;
      }
      .features {
        flex-direction: column;
      }
      .setup-section {
        flex-direction: column;
      }
      .button-block {
        align-items: stretch;
      }
      .form-box button {
        width: 100%;
      }
    }

    /* privacy */

.privacy {
    max-width: 1200px;         /* keeps content readable, not stretched */
    margin: 40px auto;        /* centers it horizontally with top/bottom space */
    padding: 30px 40px;       /* inner spacing */
    background: #fff;         /* optional: white background for clarity */
    border-radius: 12px;      /* soft corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* subtle shadow */
    line-height: 1.6;
    color: #333;
}

.privacy h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: #222;
}

.privacy h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #444;
}

.privacy p,
.privacy ul {
    margin-bottom: 15px;
}


    /* privacy end */

    /* footer start */

      .footer {
      background-color: var(--theme-color);
      color: white;
      padding: 40px 20px 20px 20px;
    }

    .footer-container {
      display: flex;
      /* flex-wrap: wrap; */
      align-items: flex-start;
      justify-content: space-around;
      max-width: 1200px;
      margin: auto;
      gap: 20;
    }

    .footer-column.service {
  flex: 0 0 30%;   /* fixed 30% width */
}

.footer-column.newsletter {
  flex: 0 0 70%;   /* fixed 70% width */
}

    .footer-column {
      flex: 1;
      min-width: 250px;
      margin: 10px 0px;
    }

    .footer-column h3 {
      border-bottom: 2px solid #fff;
      padding-bottom: 8px;
      margin-bottom: 16px;
      text-align: left;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin: 10px 0;
      text-align: left;
    }

    .footer-column ul li a {
      text-decoration: none;
      color: #fff;
      transition: color 0.3s;
    }

    .footer-column ul li a:hover {
      color: #ffffff;
    }

    .newsletter p {
      margin-bottom: 10px;
      line-height: 1.4;
      text-align: left;
      color: white;
    }

    .contact-number {
      font-weight: bold;
      font-size: 16px;
    }

.footer-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #fff;
  margin-top: 30px;
  padding: 20px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom-text {
  font-size: 14px;
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.payment-logos {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  min-width: 300px;
}

.payment-logos a {
  display: inline-flex;
  align-items: center;
}

.payment-logos img {
  height: 40px;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.payment-logos img:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer-bottom-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-bottom-text {
    text-align: center;
  }

  .payment-logos {
    justify-content: center;
  }
}

/* ===== ABOUT US SECTION ===== */
    .about-section {
      padding: 80px 8%;
      background-color: #ffffff;
    }

    .about-container {
      display: flex;
      align-items: center;
      gap: 50px;
      flex-wrap: wrap;
    }

    .about-image {
      flex: 1;
    }

    .about-image img {
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .about-content {
      flex: 1;
    }

    .about-content h2 {
      font-size: 36px;
      margin-bottom: 20px;
      color: #0d6efd;
    }

    .about-content p {
      line-height: 1.8;
      margin-bottom: 16px;
      font-size: 16px;
    }

    /* ===== MISSION CARDS ===== */
    .mission-section {
      margin-top: 70px;
    }

    .mission-title {
      text-align: center;
      font-size: 32px;
      margin-bottom: 50px;
      color: #084298;
    }

    .mission-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .mission-card {
      background: #f8f9ff;
      padding: 35px 25px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }

    .mission-card:hover {
      transform: translateY(-8px);
    }

    .mission-card i {
      font-size: 42px;
      color: #0d6efd;
      margin-bottom: 20px;
    }

    .mission-card h3 {
      font-size: 22px;
      margin-bottom: 15px;
    }

    .mission-card p {
      font-size: 15px;
      line-height: 1.7;
    }

     /* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 8%;
  background-color: #f4f7ff;
}

.contact-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: stretch;
}

/* LEFT SIDE */
.contact-info {
  flex: 1;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-info img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.contact-details {
  padding: 30px;
}

.contact-details h2 {
  color: #0d6efd;
  margin-bottom: 15px;
}

.contact-details p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 15px;
}

.contact-item i {
  color: #0d6efd;
  font-size: 18px;
  margin-right: 12px;
}

/* RIGHT FORM */
.contact-form {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-form h2 {
  color: #084298;
  margin-bottom: 10px;
}

.contact-form p {
  font-size: 14px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0d6efd;
}

.contact-btn {
  width: 100%;
  background: linear-gradient(135deg, #0d6efd, #084298);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 15px;
}

.contact-item i {
  color: #0d6efd;
  font-size: 18px;
  margin-right: 12px;
  margin-top: 3px;
}

/* ===== POPUP MODAL ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 2000;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: #fff;
  padding: 40px 35px;
  border-radius: 18px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  transform: scale(0.7);
  transition: transform 0.4s ease;
}

.popup-overlay.active .popup-box {
  transform: scale(1);
}

.popup-icon i {
  font-size: 60px;
  color: #28a745;
  margin-bottom: 20px;
}

.popup-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #084298;
}

.popup-box p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.popup-box button {
  background: linear-gradient(135deg, #0d6efd, #084298);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.popup-box button:hover {
  transform: translateY(-2px);
}