@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800;900&family=Satisfy&family=Poppins:wght@300;400;500;600;700&family=Schoolbell&display=swap" rel="stylesheet');
.tp-product-tab-2 .nav-tabs .nav-link .tp-product-tab-tooltip, .tp-tab-line, .tp-swiper-dot .swiper-pagination-bullet, .tp-swiper-dot-border .swiper-pagination-bullet, .tp-swiper-scrollbar, .back-to-top-wrapper, a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-hotspot svg, .tp-pagination ul li a svg, .tp-pagination ul li span svg, .tp-swiper-arrow button svg, .tp-theme-toggle-main span svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* transform */
.tp-product-tab-2 .nav-tabs .nav-link:not(:first-child)::after {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

:root {
  /**
  @font family declaration
  */
  --tp-ff-body: 'Montserrat', sans-serif;
  --tp-ff-heading: 'Montserrat', sans-serif;
  --tp-ff-satisfy: 'Satisfy', cursive;
  --tp-ff-poppins: 'Poppins', sans-serif;
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --tp-common-white: #fff;
  --tp-common-black: #000000;
  --tp-common-black-2: #0D0D0D;
  --tp-grey-1: #F8F8F8;
  --tp-text-body: #54595F;
  --tp-theme-1: #1a1552
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  max-width: 1320px;
}

.custom-container-1 {
  max-width: 1830px;
}

.custom-container-2 {
  max-width: 1650px;
}

.custom-container-3 {
  max-width: 1870px;
}

.custom-container-4 {
  max-width: 1750px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-family: var(--tp-ff-body);
  font-size: 16px;
  font-weight: normal;
  color: var(--tp-text-body);
  line-height: 30px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tp-ff-heading);
  color: var(--tp-common-black);
  margin-top: 0px;
  font-weight: 700;
  line-height: 1.2;
  -webkit-transition: color 0.3s 0s ease-out;
  -moz-transition: color 0.3s 0s ease-out;
  -ms-transition: color 0.3s 0s ease-out;
  -o-transition: color 0.3s 0s ease-out;
  transition: color 0.3s 0s ease-out;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: var(--tp-ff-p);
  color: var(--tp-text-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
}

img {
  max-width: 100%;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
  outline: none;
  height: 65px;
  width: 100%;
  background-color: transparent;
  line-height: 65px;
  font-size: 16px;
  font-family: var(--tp-ff-heading);
  color: var(--tp-common-black);
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid transparent;
  resize: none;
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--tp-common-black);
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder { /* Firefox 19+ */
  color: var(--tp-common-black);
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder { /* Firefox 4-18 */
  color: var(--tp-common-black);
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* IE 10+  Edge*/
  color: var(--tp-common-black);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
textarea::placeholder { /* MODERN BROWSER */
  color: var(--tp-common-black);
}
[dir=rtl] input[type=text],
[dir=rtl] input[type=email],
[dir=rtl] input[type=tel],
[dir=rtl] input[type=number],
[dir=rtl] input[type=password],
[dir=rtl] input[type=url],
[dir=rtl] textarea {
  text-align: right;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus {
  border-color: var(--tp-theme-1);
}
input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=url]:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

textarea {
  line-height: 1.4;
  padding-top: 20px;
  padding-bottom: 17px;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

::selection {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--tp-common-black);
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: var(--tp-common-black);
  font-size: 14px;
  opacity: 1;
}

.z-index {
  position: relative;
  z-index: 1;
}

.z-index-2 {
  position: relative;
  z-index: 2;
}

.z-index-3 {
  position: relative;
  z-index: 3;
}

.z-index-4 {
  position: relative;
  z-index: 4;
}

.z-index-5 {
  position: relative;
  z-index: 5;
}

.z-index-6 {
  position: relative;
  z-index: 6;
}

.z-index-7 {
  position: relative;
  z-index: 7;
}

.z-index-8 {
  position: relative;
  z-index: 8;
}

.z-index-9 {
  position: relative;
  z-index: 9;
}

.gx-5 {
  --bs-gutter-x: 10px;
}

.gx-10 {
  --bs-gutter-x: 10px;
}

.gx-15 {
  --bs-gutter-x: 15px;
}

.gx-20 {
  --bs-gutter-x: 20px;
}

.gx-25 {
  --bs-gutter-x: 25px;
}

.gx-30 {
  --bs-gutter-x: 30px;
}

.gx-35 {
  --bs-gutter-x: 35px;
}

.gx-40 {
  --bs-gutter-x: 40px;
}

.gx-45 {
  --bs-gutter-x: 45px;
}

.gx-50 {
  --bs-gutter-x: 50px;
}

.gx-80 {
  --bs-gutter-x: 80px;
}

/*---------------------------------
    1.2 Common Classes
---------------------------------*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.demo {
  -webkit-transition: color 0.3s 0s linear;
  -moz-transition: color 0.3s 0s linear;
  -ms-transition: color 0.3s 0s linear;
  -o-transition: color 0.3s 0s linear;
  transition: color 0.3s 0s linear;
  -webkit-transition: color 0.3s linear, transform 0.2s ease;
  -moz-transition: color 0.3s linear, transform 0.2s ease;
  -ms-transition: color 0.3s linear, transform 0.2s ease;
  -o-transition: color 0.3s linear, transform 0.2s ease;
  transition: color 0.3s linear, transform 0.2s ease;
}
[dir=rtl] .demo {
  margin-left: 0;
  margin-right: 15px;
}
div.demo img {
  margin-left: 10px;
}

[tp-theme=tp-theme-dark] .demo {
  color: yellow;
}

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body-overlay {
  background-color: var(--tp-common-black);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.body-overlay:hover {
  cursor: url("../img/icon/cross-out.png"), pointer;
}

.body-overlay.opened {
  opacity: 0.7;
  visibility: visible;
}

/* dropcap */
.tp-dropcap::first-letter {
  font-size: 90px;
  font-weight: 500;
  float: left;
  text-align: center;
  color: var(--tp-common-black);
  margin-right: 5px;
  line-height: inherit;
  text-transform: capitalize;
}

.class {
  stroke-dasharray: 189px, 191px;
  stroke-dashoffset: 0px;
}

/* gutter for x axis */
.tp-gx-20 {
  --bs-gutter-x: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-gx-20 {
    --bs-gutter-x: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-gx-20 {
    --bs-gutter-x: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-gx-20 {
    --bs-gutter-x: 15px;
  }
}
@media (max-width: 767px) {
  .tp-gx-20 {
    --bs-gutter-x: 10px;
  }
}
.tp-gx-20 [class*=col-] {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* gutter for x axis */
.tp-gx-30 {
  --bs-gutter-x: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-gx-30 {
    --bs-gutter-x: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-gx-30 {
    --bs-gutter-x: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-gx-30 {
    --bs-gutter-x: 15px;
  }
}
@media (max-width: 767px) {
  .tp-gx-30 {
    --bs-gutter-x: 10px;
  }
}
.tp-gx-30 [class*=col-] {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* gutter for x axis */
.tp-gx-40 {
  --bs-gutter-x: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-gx-40 {
    --bs-gutter-x: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-gx-40 {
    --bs-gutter-x: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-gx-40 {
    --bs-gutter-x: 30px;
  }
}
@media (max-width: 767px) {
  .tp-gx-40 {
    --bs-gutter-x: 15px;
  }
}
.tp-gx-40 [class*=col-] {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

@media (min-width: 1400px) {
  .container-large {
    max-width: 1325px;
  }
}
/*---------------------------------
    1.3 Default Spacing
---------------------------------*/
/*----------------------------------------*/
/*  2.1 Back to top
/*----------------------------------------*/
.back-to-top-wrapper {
  position: fixed;
  right: 50px;
  bottom: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .back-to-top-wrapper {
    right: 20px;
    bottom: 20px;
  }
}
.back-to-top-wrapper.back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

.back-to-top-btn {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: var(--tp-theme-1);
  box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
  color: var(--tp-common-white);
  border-radius: 50%;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.back-to-top-btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.back-to-top-btn:hover {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}

/*----------------------------------------*/
/*  2.2 Theme Settings
/*----------------------------------------*/
.tp-theme-settings-area {
  position: fixed;
  top: 50%;
  left: 0;
  width: 240px;
  background-color: #fff;
  border: 1px solid #EAEAEF;
  -webkit-transform: translateY(-50%) translateX(-100%);
  -moz-transform: translateY(-50%) translateX(-100%);
  -ms-transform: translateY(-50%) translateX(-100%);
  -o-transform: translateY(-50%) translateX(-100%);
  transform: translateY(-50%) translateX(-100%);
  z-index: 991;
  direction: ltr;
  border-bottom-right-radius: 4px;
}
.tp-theme-settings-area.settings-opened {
  -webkit-transform: translateY(-50%) translateX(0%);
  -moz-transform: translateY(-50%) translateX(0%);
  -ms-transform: translateY(-50%) translateX(0%);
  -o-transform: translateY(-50%) translateX(0%);
  transform: translateY(-50%) translateX(0%);
}
.tp-theme-settings-area.settings-opened .tp-theme-settings-gear {
  opacity: 0;
}
.tp-theme-settings-area.settings-opened .tp-theme-settings-close {
  opacity: 1;
}
.tp-theme-settings-open {
  position: absolute;
  top: -1px;
  left: 100%;
}
.tp-theme-settings-open button {
  background-color: var(--tp-common-white);
  border: 1px solid #EAEAEF;
  border-left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 24px;
  color: var(--tp-common-black);
  position: relative;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.tp-theme-settings-gear {
  display: inline-block;
  -webkit-animation: tp-theme-setting-spin 4s linear infinite;
  -moz-animation: tp-theme-setting-spin 4s linear infinite;
  -ms-animation: tp-theme-setting-spin 4s linear infinite;
  -o-animation: tp-theme-setting-spin 4s linear infinite;
  animation: tp-theme-setting-spin 4s linear infinite;
}
@-webkit-keyframes tp-theme-setting-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes tp-theme-setting-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes tp-theme-setting-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes tp-theme-setting-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.tp-theme-settings-close {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.tp-theme-header-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
}
.tp-theme-wrapper {
  padding: 20px 30px 30px;
}
.tp-theme-toggle {
  text-align: center;
}
.tp-theme-toggle-main {
  display: inline-block;
  width: 74px;
  margin: auto;
  position: relative;
  z-index: 1;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px;
  border-radius: 100px;
}
.tp-theme-toggle-light, .tp-theme-toggle-dark {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  color: #D9D9D9;
}
.tp-theme-toggle-light.active, .tp-theme-toggle-dark.active {
  color: var(--tp-common-black);
}
.tp-theme-toggle input {
  display: none;
}
.tp-theme-toggle:hover {
  cursor: pointer;
}
.tp-theme-toggle label {
  color: var(--tp-common-white);
  font-size: 14px;
  font-weight: 500;
}
.tp-theme-toggle label:hover {
  cursor: pointer;
}
.tp-theme-toggle #tp-theme-toggler {
  display: none;
}
.tp-theme-toggle #tp-theme-toggler:checked + i {
  right: calc(50% - 4px);
}
.tp-theme-toggle-slide {
  position: absolute;
  top: 50%;
  right: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50%;
  height: 26px;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
  border-radius: 30px;
  -webkit-transform: translate3d(0, 0);
  transform: translate3d(0, 0);
  -webkit-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
.tp-theme-dir {
  text-align: center;
}
.tp-theme-dir-main {
  display: inline-block;
  width: 160px;
  margin: auto;
  position: relative;
  z-index: 1;
  background-color: #f0f0f5;
  padding: 4px;
  border-radius: 20px;
}
.tp-theme-dir-ltr, .tp-theme-dir-rtl {
  display: inline-block;
  width: 48%;
  height: 26px;
  line-height: 26px;
}
.tp-theme-dir input {
  display: none;
}
.tp-theme-dir:hover {
  cursor: pointer;
}
.tp-theme-dir label {
  color: var(--tp-common-black);
  font-size: 14px;
  font-weight: 500;
}
.tp-theme-dir label:hover {
  cursor: pointer;
}
.tp-theme-dir #tp-dir-toggler {
  display: none;
}
.tp-theme-dir #tp-dir-toggler:checked + i {
  right: calc(50% - 4px);
}
.tp-theme-dir-slide {
  position: absolute;
  top: 50%;
  right: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50%;
  height: 26px;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
  border-radius: 30px;
  -webkit-transform: translate3d(0, 0);
  transform: translate3d(0, 0);
  -webkit-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
.tp-theme-color-item.active button::before {
  opacity: 1;
  visibility: visible;
}
.tp-theme-color-btn {
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
}
.tp-theme-color-btn::before {
  position: absolute;
  content: "\f00c";
  font-weight: 600;
  font-family: var(--tp-ff-fontawesome);
  color: var(--tp-common-white);
  font-size: 16px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  opacity: 0;
  visibility: hidden;
}
.tp-theme-color-btn.tp-color-settings-btn[data-color="#F50963"] {
  background-color: #F50963;
}
.tp-theme-color-btn.tp-color-settings-btn[data-color="#008080"] {
  background-color: #008080;
}
.tp-theme-color-btn.tp-color-settings-btn[data-color="#F31E5E"] {
  background-color: #F31E5E;
}
.tp-theme-color-btn.tp-color-settings-btn[data-color="#AB6C56"] {
  background-color: #AB6C56;
  color: black;
}
.tp-theme-color-btn.tp-color-settings-btn[data-color="#4353FF"] {
  background-color: #4353FF;
}
.tp-theme-color-btn.tp-color-settings-btn[data-color="#3661FC"] {
  background-color: #3661FC;
}
.tp-theme-color-btn.tp-color-settings-btn[data-color="#2CAE76"] {
  background-color: #2CAE76;
}
.tp-theme-color-btn.tp-color-settings-btn[data-color="#FF5A1B"] {
  background-color: #FF5A1B;
}
.tp-theme-color-btn.tp-color-settings-btn[data-color="#03041C"] {
  background-color: #03041C;
}
.tp-theme-color-btn.tp-color-settings-btn[data-color="#ED212C"] {
  background-color: #ED212C;
}
.tp-theme-color-input {
  margin-top: 15px;
}
.tp-theme-color-input h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.tp-theme-color-input label {
  display: inline-block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--tp-theme-1);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.tp-theme-color-input label:hover {
  cursor: pointer;
}
.tp-theme-color-input input {
  display: none;
}

/*----------------------------------------*/
/*  2.3 Buttons
/*----------------------------------------*/
.tp-btn-theme {
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
  display: inline-block;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
  text-align: center;
  position: relative;
  z-index: 1;
}
.tp-btn-theme.theme-lg {
  padding: 0 61px;
  height: 70px;
  line-height: 70px;
}
.tp-btn-theme.black-bg {
  padding: 0 61px;
  height: 70px;
  line-height: 70px;
  border-radius: 5px;
  background-color: var(--tp-common-black);
  color: #ffffff;
}

.tp-btn-theme.black-bg span {
  color: #ffffff;
}
.tp-btn-theme.height {
  height: 64px;
  line-height: 64px;
  padding: 0 50px;
}
.tp-btn-theme.height-2 {
  height: 50px;
  line-height: 50px;
}
.tp-btn-theme span svg {
  display: inline-block;
  margin-left: 4px;
  color: var(--tp-common-white);
}
.tp-btn-theme:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}

.tp-btn-black {
  height: 50px;
  line-height: 50px;
  padding: 0 38px;
  display: inline-block;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
  position: relative;
  z-index: 1;
  text-align: center;
}
.tp-btn-black span svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  color: var(--tp-theme-1);
  display: inline-block;
}
.tp-btn-black.height {
  height: 60px;
  line-height: 60px;
}
.tp-btn-black.theme-bg {
  background-color: #1a1552;
}
.tp-btn-black.theme-bg svg {
  color: var(--tp-common-black);
}
.tp-btn-black.theme-bg:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}
.tp-btn-black.hover-2 {
  transition: 0.3s;
}
.tp-btn-black.hover-2:hover {
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}
.tp-btn-black:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

.tp-btn-black-lg {
  height: 50px;
  line-height: 50px;
  padding: 0 44px;
  display: inline-block;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
  text-align: center;
  position: relative;
  z-index: 1;
}
.tp-btn-black-lg:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

.tp-btn-black-sm {
  height: 50px;
  line-height: 50px;
  padding: 0 31px;
  display: inline-block;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
  text-align: center;
  position: relative;
  z-index: 1;
}
.tp-btn-black-sm span svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  color: var(--tp-theme-1);
  display: inline-block;
}
.tp-btn-black-sm:hover {
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}

.tp-btn-border-lg {
  height: 50px;
  line-height: 48px;
  padding: 0 38px;
  display: inline-block;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  color: var(--tp-common-black);
  text-align: center;
  border: 1px solid var(--tp-common-black);
  position: relative;
  z-index: 1;
}
.tp-btn-border-lg span svg {
  position: absolute;
  top: 51%;
  transform: translateY(-50%);
  right: -25px;
  color: var(--tp-theme-1);
  display: inline-block;
  z-index: 1;
}
.tp-btn-border-lg.white-border {
  color: var(--tp-common-white);
  border: 1px solid var(--tp-common-white);
}
.tp-btn-border-lg.white-border:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
  border: 1px solid var(--tp-theme-1);
}
.tp-btn-border-lg.grey-border {
  border: 1px solid var(--tp-theme-1);
}
.tp-btn-border-lg.grey-border:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}
.tp-btn-border-lg.grey-border-2 {
  border-color: #E6E6E6;
}
.tp-btn-border-lg:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}

.tp-btn-border {
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  display: inline-block;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  color: var(--tp-common-black);
  text-align: center;
  border: 1px solid var(--tp-theme-1);
  position: relative;
  z-index: 2;
}
.tp-btn-border span svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  color: var(--tp-theme-1);
  display: inline-block;
}
.tp-btn-border.height {
  height: 65px;
  line-height: 65px;
  border: 2px solid var(--tp-theme-1);
  color: var(--tp-common-white);
}
.tp-btn-border.height:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
  border: 2px solid var(--tp-theme-1);
}
.tp-btn-border.black-border {
  border-color: var(--tp-common-black);
}
.tp-btn-border.black-border:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
  border: 1px solid var(--tp-common-black);
}
.tp-btn-border:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
  border: 1px solid var(--tp-theme-1);
}

.tp-btn-border-bottom {
  display: inline-block;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  color: #1a1a1a; /* Dark color for better visibility */
  text-align: center;
  position: relative;
  z-index: 1;
}
.tp-btn-border-bottom span {
  color: #1a1a1a; /* Dark color for better visibility */
}
.tp-btn-border-bottom span svg {
  display: inline-block;
  margin-left: 6px;
  color: var(--tp-theme-1);
}
.tp-btn-border-bottom .bottom-line {
  overflow: hidden;
  left: 0;
  bottom: 4px;
  height: 1px;
  width: 107px;
  position: absolute;
  background: var(--tp-theme-1);
  display: block;
  position: relative;
}
.tp-btn-border-bottom .bottom-line::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 7px;
  height: 1px;
  background-color: #fff;
  animation: lineAnim 1.5s linear infinite;
}

.tp-menu-btn {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
  width: 140px;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  overflow: hidden;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  text-align: center;
  position: relative;
  z-index: 1;
}
.tp-menu-btn:hover {
  background-color: var(--tp-common-black);
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  2.4 Animations
/*----------------------------------------*/
/* pulse effect animation */
@-webkit-keyframes tp-pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@-moz-keyframes tp-pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@-ms-keyframes tp-pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes tp-pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@-webkit-keyframes tp-pulse-2 {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@-moz-keyframes tp-pulse-2 {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@-ms-keyframes tp-pulse-2 {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes tp-pulse-2 {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@-webkit-keyframes tp-shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}
@-moz-keyframes tp-shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}
@-ms-keyframes tp-shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}
@keyframes tp-shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}
@keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-20px);
  }
}
@-webkit-keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@-moz-keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@-ms-keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@-webkit-keyframes tp-rotate-center {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes tp-rotate-center {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes tp-rotate-center {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes tp-rotate-center {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes tp-mobile-view {
  0%, 10% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
  50%, 60% {
    -webkit-transform: translateY(-57%);
    -moz-transform: translateY(-57%);
    -ms-transform: translateY(-57%);
    -o-transform: translateY(-57%);
    transform: translateY(-57%);
  }
  90%, 100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-moz-keyframes tp-mobile-view {
  0%, 10% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
  50%, 60% {
    -webkit-transform: translateY(-57%);
    -moz-transform: translateY(-57%);
    -ms-transform: translateY(-57%);
    -o-transform: translateY(-57%);
    transform: translateY(-57%);
  }
  90%, 100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-ms-keyframes tp-mobile-view {
  0%, 10% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
  50%, 60% {
    -webkit-transform: translateY(-57%);
    -moz-transform: translateY(-57%);
    -ms-transform: translateY(-57%);
    -o-transform: translateY(-57%);
    transform: translateY(-57%);
  }
  90%, 100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@keyframes tp-mobile-view {
  0%, 10% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
  50%, 60% {
    -webkit-transform: translateY(-57%);
    -moz-transform: translateY(-57%);
    -ms-transform: translateY(-57%);
    -o-transform: translateY(-57%);
    transform: translateY(-57%);
  }
  90%, 100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-webkit-keyframes tp-svg-line {
  100% {
    stroke-dashoffset: 350;
  }
}
@-moz-keyframes tp-svg-line {
  100% {
    stroke-dashoffset: 350;
  }
}
@-ms-keyframes tp-svg-line {
  100% {
    stroke-dashoffset: 350;
  }
}
@keyframes tp-svg-line {
  100% {
    stroke-dashoffset: 350;
  }
}
@-webkit-keyframes tp-border-loader {
  0% {
    stroke-dashoffset: -356px;
    stroke-dasharray: 356px, 366px;
  }
  95% {
    stroke-dashoffset: 0;
    stroke-dasharray: 356px, 366px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 0, 366px;
  }
}
@-moz-keyframes tp-border-loader {
  0% {
    stroke-dashoffset: -356px;
    stroke-dasharray: 356px, 366px;
  }
  95% {
    stroke-dashoffset: 0;
    stroke-dasharray: 356px, 366px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 0, 366px;
  }
}
@-ms-keyframes tp-border-loader {
  0% {
    stroke-dashoffset: -356px;
    stroke-dasharray: 356px, 366px;
  }
  95% {
    stroke-dashoffset: 0;
    stroke-dasharray: 356px, 366px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 0, 366px;
  }
}
@keyframes tp-border-loader {
  0% {
    stroke-dashoffset: -356px;
    stroke-dasharray: 356px, 366px;
  }
  95% {
    stroke-dashoffset: 0;
    stroke-dasharray: 356px, 366px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 0, 366px;
  }
}
@keyframes tfLeftToRight {
  49% {
    transform: translateX(30%);
  }
  50% {
    opacity: 0;
    transform: translateX(-30%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes scrollText-2 {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-50px);
  }
  50% {
    transform: translatey(-40px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes rotate2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes sliderShape {
  0%, 100% {
    border-radius: 42% 58% 70% 30%/45% 45% 55% 55%;
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }
  34% {
    border-radius: 70% 30% 46% 54%/30% 29% 71% 70%;
    transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
  }
  50% {
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }
  67% {
    border-radius: 100% 60% 60% 100%/100% 100% 60% 60%;
    transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
  }
}
@keyframes lineAnim {
  0% {
    left: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    left: 100%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/*----------------------------------------*/
/*  2.5 Preloader
/*----------------------------------------*/
#loading {
  background-color: var(--tp-theme-1);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999;
  margin-top: 0px;
  top: 0px;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 200px;
  width: 200px;
  margin-top: -100px;
  margin-left: -100px;
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.object {
  -moz-border-radius: 50% 50% 50% 50%;
  -webkit-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  position: absolute;
  border-top: 5px solid #FFF;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #FFF;
  border-right: 5px solid transparent;
  -webkit-animation: animate 2s infinite;
  animation: animate 2s infinite;
}

#object_one {
  left: 75px;
  top: 75px;
  width: 50px;
  height: 50px;
}

#object_two {
  left: 65px;
  top: 65px;
  width: 70px;
  height: 70px;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

#object_three {
  left: 55px;
  top: 55px;
  width: 90px;
  height: 90px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

#object_four {
  left: 45px;
  top: 45px;
  width: 110px;
  height: 110px;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@keyframes animate {
  50% {
    -ms-transform: rotate(360deg) scale(0.8);
    -webkit-transform: rotate(360deg) scale(0.8);
    transform: rotate(360deg) scale(0.8);
  }
}
/*----------------------------------------*/
/*  2.6 Background
/*----------------------------------------*/
.white-bg {
  background-color: var(--tp-common-white);
}

.black-bg {
  background-color: var(--tp-common-black);
}

.theme-bg {
  background-color: #1a1552;
}

.grey-bg {
  background-color: var(--tp-grey-1);
}

/*----------------------------------------*/
/*  2.7 Carousel
/*----------------------------------------*/
/* tp range slider css */
.tp-range-slider .inside-slider {
  padding-left: 7px;
  padding-right: 17px;
}
.tp-range-slider .noUi-target {
  background-color: #191C3C;
  border-radius: 12px;
  border: 0;
  box-shadow: none;
}
.tp-range-slider .noUi-connect {
  background-color: var(--tp-theme-primary);
}
.tp-range-slider .noUi-horizontal {
  height: 6px;
}
.tp-range-slider .noUi-handle {
  height: 24px;
  width: 24px;
  background-color: var(--tp-theme-primary);
  border-radius: 50%;
  border: 4px solid var(--tp-common-white);
  box-shadow: 0px 4px 10px rgba(5, 9, 43, 0.3);
  top: -9px;
}
.tp-range-slider .noUi-handle:hover {
  cursor: pointer;
}
.tp-range-slider .noUi-handle::before, .tp-range-slider .noUi-handle::after {
  display: none;
}
.tp-range-slider-dark .noUi-handle {
  border: 4px solid #2D314B;
}

/* tp swiper slider dot */
.tp-swiper-dot {
  line-height: 1;
}
.tp-swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--tp-grey-3);
  opacity: 1;
  margin: 0 3px;
  position: relative;
}
.tp-swiper-dot .swiper-pagination-bullet button {
  font-size: 0;
}
.tp-swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--tp-theme-primary);
}
.tp-swiper-dot.tp-swiper-dot-style-darkRed .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--tp-theme-secondary);
}

.tp-swiper-dot-border {
  line-height: 1;
}
.tp-swiper-dot-border .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  opacity: 1;
  margin: 0 3px;
  position: relative;
  border: 1px solid rgba(2, 6, 38, 0.4);
}
.tp-swiper-dot-border .swiper-pagination-bullet button {
  font-size: 0;
}
.tp-swiper-dot-border .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--tp-common-black);
  border-color: var(--tp-common-black);
}
.tp-swiper-dot-border .swiper-pagination-bullet:hover {
  border-color: var(--tp-common-black);
}
.tp-swiper-dot-border.tp-swiper-dot-style-darkRed .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--tp-theme-secondary);
}

.tp-swiper-arrow button {
  width: 40px;
  height: 40px;
  line-height: 38px;
  font-size: 20px;
  text-align: center;
  background-color: transparent;
  color: var(--tp-text-2);
  border: 1px solid rgba(2, 6, 38, 0.1);
  border-radius: 50%;
}
.tp-swiper-arrow button:hover {
  background-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
/* tp swiper scrollbar */
.tp-swiper-scrollbar {
  background-color: #EDEFF2;
  height: 2px;
}
.tp-swiper-scrollbar .tp-swiper-scrollbar-drag {
  background-color: var(--tp-common-black);
  height: 100%;
}
.tp-swiper-scrollbar .tp-swiper-scrollbar-drag:hover {
  cursor: pointer;
}
.tp-swiper-scrollbar:hover, .tp-swiper-scrollbar:focus {
  -webkit-transform: scaleY(3);
  -moz-transform: scaleY(3);
  -ms-transform: scaleY(3);
  -o-transform: scaleY(3);
  transform: scaleY(3);
}

/* tp slick arrow */
.tp-slick-dot .slick-dots li {
  display: inline-block;
  margin: 0 4px;
}
.tp-slick-dot .slick-dots li.slick-active button {
  background-color: var(--tp-common-white);
}
.tp-slick-dot .slick-dots li button {
  font-size: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
}
.tp-slick-dot-blue .slick-dots li.slick-active button {
  background-color: var(--tp-theme-primary);
}
.tp-slick-dot-blue .slick-dots li button {
  background-color: var(--tp-grey-3);
}

/*----------------------------------------*/
/*  2.8 Nice Select
/*----------------------------------------*/
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border: solid 1px #E6E6E6;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  color: var(--tp-common-black);
  font-family: var(--tp-ff-heading);
  font-size: 14px;
  font-weight: normal;
  height: 70px;
  line-height: 70px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: var(--tp-theme-1);
}
.nice-select::after {
  position: absolute;
  content: "\f107";
  top: 50%;
  right: 33px;
  font-size: 18px;
  font-family: var(--tp-ff-fontawesome);
  color: #54595F;
  font-weight: 500;
  pointer-events: none;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  margin-top: 0;
  transform-origin: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nice-select.open::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled::after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small::after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  width: 100%;
  border: 1px solid #E6E6E6;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

/*----------------------------------------*/
/*  2.9 Pagination
/*----------------------------------------*/
.tp-pagination ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.tp-pagination ul li {
  display: inline-block;
}
.tp-pagination ul li:not(:last-child) {
  margin-right: 6px;
}
.tp-pagination ul li a, .tp-pagination ul li span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border: 1px solid rgba(2, 6, 38, 0.1);
  font-size: 16px;
  font-weight: 500;
  color: var(--tp-text-body);
}
.tp-pagination ul li a:hover, .tp-pagination ul li a.current, .tp-pagination ul li span:hover, .tp-pagination ul li span.current {
  background: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
/*----------------------------------------*/
/*  2.10 Offcanvas
/*----------------------------------------*/
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 24, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: 0.45s ease-in-out;
}
.body-overlay.apply {
  opacity: 1;
  visibility: visible;
}
.body-overlay:hover {
  cursor: url(../img/cross-out.png), pointer;
}

.tpoffcanvas {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  right: -100%;
  width: 480px;
  bottom: 0;
  box-shadow: 0 16px -32px 0 rgba(0, 0, 0, 0.8);
  background-color: var(--tp-common-black);
  z-index: 999999;
  padding: 50px;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.45s ease-in-out;
  overflow-y: scroll;
}
.tpoffcanvas .homemenu {
  margin-bottom: 30px;
}
.tpoffcanvas .homemenu-title {
  color: var(--tp-common-white);
}
.tpoffcanvas .tp-main-menu-mobile {
  margin-bottom: 50px;
}
.tpoffcanvas .tp-main-menu-mobile {
  margin-bottom: 50px;
}
.tpoffcanvas.opened {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .tpoffcanvas {
    width: 300px;
    padding: 40px 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tpoffcanvas {
    width: 400px;
    padding: 40px;
  }
}
.tpoffcanvas.opened {
  right: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
}
.tpoffcanvas__title p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.49);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 50px;
}
.tpoffcanvas__contact-title h5 {
  font-size: 14px;
  color: #888888;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  display: inline-block;
}
.tpoffcanvas__input-title h4 {
  font-size: 14px;
  color: #888888;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  display: inline-block;
}
.tpoffcanvas__input {
  margin-bottom: 100px;
}
.tpoffcanvas__input input {
  background: rgba(118, 118, 130, 0.3);
  border: transparent;
  height: 60px;
  width: 100%;
  padding-left: 20px;
  padding-right: 80px;
  color: var(--tp-common-white);
}
.tpoffcanvas__input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--tp-common-white);
}
.tpoffcanvas__input input::-moz-placeholder { /* Firefox 19+ */
  color: var(--tp-common-white);
}
.tpoffcanvas__input input:-moz-placeholder { /* Firefox 4-18 */
  color: var(--tp-common-white);
}
.tpoffcanvas__input input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: var(--tp-common-white);
}
.tpoffcanvas__input input::placeholder { /* MODERN BROWSER */
  color: var(--tp-common-white);
}
.tpoffcanvas__input button {
  height: 60px;
  width: 60px;
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
  font-size: 16px;
  position: absolute;
  top: 0;
  right: 0;
}
.tpoffcanvas__contact-info {
  margin-bottom: 50px;
}
.tpoffcanvas__contact-info ul li {
  font-size: 14px;
  margin-bottom: 15px;
  list-style-type: none;
  letter-spacing: 1.2px;
  color: var(--tp-common-white);
}
@media (max-width: 767px) {
  .tpoffcanvas__contact-info ul li {
    font-size: 14px;
  }
}
.tpoffcanvas__contact-info ul li:last-child {
  margin-bottom: 0;
}
.tpoffcanvas__contact-info ul li a {
  margin-left: 10px;
  transition: 0.3s;
}
.tpoffcanvas__contact-info ul li a:hover {
  color: var(--tp-theme-1);
}
.tpoffcanvas__logo {
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpoffcanvas__logo {
    padding-top: 0;
  }
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tpoffcanvas__logo {
    padding-top: 0;
  }
}
.tpoffcanvas__close-btn button {
  position: absolute;
  right: 30px;
  top: 30px;
  transition: 1s;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.3s;
  height: 40px;
  width: 40px;
  line-height: 45px;
  color: var(--tp-common-white);
}
.tpoffcanvas__close-btn button:hover i {
  transform: rotate(360deg);
}
.tpoffcanvas__close-btn button i {
  font-weight: 300;
  font-size: 20px;
  transition: 0.9s;
}
.tpoffcanvas__social {
  margin-top: 30px;
}
.tpoffcanvas__social .social-icon a {
  height: 55px;
  width: 55px;
  line-height: 58px;
  text-align: center;
  font-size: 16px;
  background-color: rgba(251, 251, 253, 0.08);
  color: var(--tp-common-white);
  margin-right: 15px;
  transition: 0.3s;
  display: inline-block;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .tpoffcanvas__social .social-icon a {
    margin-right: 3px;
    height: 50px;
    width: 50px;
    line-height: 53px;
    font-size: 15px;
  }
}
.tpoffcanvas__social .social-icon a:hover {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  2.11 Breadcrumb
/*----------------------------------------*/
/* .breadcrumb__pt {
  padding-top: 120px;
} */
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  /* .breadcrumb__pt {
    padding-top: 90px;
  } */
}
.breadcrumb__height {
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  background-position: center;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb__height {
    height: 320px;
  }
}
@media (max-width: 767px) {
  .breadcrumb__height {
    height: 280px;
  }
}
.breadcrumb__overlay {
  position: relative;
}
.breadcrumb__overlay::after {
  display: none;
}
.breadcrumb__title {
  font-weight: 800;
  font-size: 72px;
  text-transform: capitalize;
  color: var(--tp-common-white);
  margin-bottom: 15px;
  line-height: 1.1;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .breadcrumb__title {
    font-size: 62px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .breadcrumb__title {
    font-size: 53px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb__title {
    font-size: 52px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb__title {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .breadcrumb__title {
    font-size: 42px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    margin-top: 77px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__title {
    margin-bottom: 0;
  }
}
.breadcrumb__list {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.breadcrumb__list span {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: #1a1a1a;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .breadcrumb__list span {
    font-size: 14px;
    font-weight: 600;
  }
  .breadcrumb__list {
    padding: 12px 22px;
    gap: 8px;
  }
  .breadcrumb__list span a {
    font-size: 14px;
  }
  .breadcrumb__list span.dvdr i {
    font-size: 12px;
    margin: 0 8px;
  }
}
.breadcrumb__list span.dvdr i {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  color: #1a1a1a;
  opacity: 0.6;
}
.breadcrumb__list span a {
  color: #1a1552;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 600;
  cursor: pointer;
}
.breadcrumb__list span a:hover {
  color: #1a1552;
  text-decoration: underline;
}
.breadcrumb__content {
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .breadcrumb__content {
    flex-wrap: wrap;
  }
}
.breadcrumb__section-title-box {
  margin-bottom: 25px !important;
}
.breadcrumb__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.85) contrast(1.1);
}

/*----------------------------------------*/
/*  2.12 Accordion
/*----------------------------------------*/
.tp-custom-accordion .accordion-items {
  margin-bottom: 20px;
}
.tp-custom-accordion .accordion-buttons {
  position: relative;
  width: 100%;
  font-weight: 700;
  font-size: 20px;
  text-align: left;
  padding: 25px 30px;
  padding-right: 55px;
  transition: 0.3s;
  font-family: var(--tp-ff-heading);
  color: var(--tp-common-black);
  background-color: #F8F8F8;
  display: flex;
  align-items: start;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-custom-accordion .accordion-buttons {
    font-size: 17px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-custom-accordion .accordion-buttons {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-custom-accordion .accordion-buttons {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .tp-custom-accordion .accordion-buttons {
    font-size: 15px;
    padding-left: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-custom-accordion .accordion-buttons {
    font-size: 17px;
  }
}
.tp-custom-accordion .accordion-buttons::after {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 5 Pro";
  top: 21px;
  right: 20px;
  font-weight: 700;
  font-size: 12px;
  opacity: 1;
  transition: 0.3s;
  height: 28px;
  width: 28px;
  line-height: 27px;
  border-radius: 50%;
  text-align: center;
  color: var(--tp-theme-1);
  border: 1px solid var(--tp-theme-1);
}
@media (max-width: 767px) {
  .tp-custom-accordion .accordion-buttons::after {
    right: 20px;
  }
}
.tp-custom-accordion .accordion-buttons span {
  margin-right: 5px;
  display: inline-block;
}
.tp-custom-accordion .accordion-buttons.collapsed::after {
  content: "\f067";
}
.tp-custom-accordion .collapsed {
  position: relative;
  z-index: 99;
}
.tp-custom-accordion .accordion-body {
  padding-top: 17px;
  padding-bottom: 2px;
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 16px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-custom-accordion .accordion-body {
    font-size: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-custom-accordion .accordion-body {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-custom-accordion .accordion-body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .tp-custom-accordion .accordion-body {
    font-size: 13px;
    padding-right: 0;
    line-height: 26px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-custom-accordion .accordion-body {
    font-size: 14px;
  }
}

/*----------------------------------------*/
/*  2.13 Tab
/*----------------------------------------*/
.tp-tab .nav-tabs {
  padding: 0;
  margin: 0;
  border: 0;
}
.tp-tab .nav-tabs .nav-link {
  padding: 0;
  margin: 0;
  border: 0;
}

.tp-product-tab-2 .nav-tabs .nav-link {
  font-size: 20px;
  color: #A0A2A4;
  position: relative;
}
@media (max-width: 767px) {
  .tp-product-tab-2 .nav-tabs .nav-link {
    font-size: 15px;
  }
}
.tp-product-tab-2 .nav-tabs .nav-link:not(:first-child) {
  margin-left: 28px;
}
.tp-product-tab-2 .nav-tabs .nav-link:not(:first-child)::after {
  position: absolute;
  left: -17px;
  top: 50%;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #CED2D6;
}
.tp-product-tab-2 .nav-tabs .nav-link.active {
  color: var(--tp-theme-secondary);
}
.tp-product-tab-2 .nav-tabs .nav-link.active .tp-product-tab-tooltip {
  opacity: 1;
  visibility: visible;
}
.tp-product-tab-2 .nav-tabs .nav-link .tp-product-tab-tooltip {
  position: absolute;
  top: -24px;
  right: 0;
  background-color: var(--tp-theme-secondary);
  color: var(--tp-common-white);
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  padding: 4px 9px;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  font-weight: 700;
}
.tp-product-tab-2 .nav-tabs .nav-link .tp-product-tab-tooltip::after {
  position: absolute;
  content: "";
  bottom: 0;
  bottom: -5px;
  left: 7px;
  width: 13px;
  height: 6px;
  background-color: var(--tp-theme-secondary);
  clip-path: polygon(100% 0, 0 0, 28% 100%);
}
.tp-product-tab-3 .nav-tabs .nav-link {
  font-size: 16px;
  padding: 0 0;
}
@media (max-width: 767px) {
  .tp-product-tab-3 .nav-tabs .nav-link {
    font-size: 15px;
  }
}
.tp-product-tab-3 .nav-tabs .nav-link:not(:first-child) {
  margin-left: 23px;
}
.tp-product-tab-3 .nav-tabs .nav-link:not(:first-child)::after {
  width: 4px;
  height: 4px;
  left: -14px;
}
.tp-product-tab-3 .nav-tabs .nav-link.active {
  color: var(--tp-common-black);
}
.tp-product-tab-3 .nav-tabs .nav-link.active .tp-product-tab-tooltip {
  opacity: 1;
  visibility: visible;
}
.tp-product-tab-3 .nav-tabs .nav-link .tp-product-tab-tooltip {
  background-color: var(--tp-theme-primary);
}
.tp-product-tab-3 .nav-tabs .nav-link .tp-product-tab-tooltip::after {
  background-color: var(--tp-theme-primary);
}
.tp-product-tab-5 .nav-tabs .nav-link {
  padding: 0 5px;
}
@media (max-width: 767px) {
  .tp-product-tab-5 .nav-tabs .nav-link {
    font-size: 15px;
  }
}
.tp-product-tab-5 .nav-tabs .nav-link:not(:last-child)::after {
  left: -15px;
}
.tp-product-tab-5 .nav-tabs .nav-link:not(:first-child) {
  margin-left: 22px;
}
.tp-product-tab-5 .nav-tabs .nav-link.active {
  color: var(--tp-common-black);
}
.tp-product-tab-5 .nav-tabs .nav-link.active .tp-product-tab-tooltip {
  opacity: 1;
  visibility: visible;
}
.tp-product-tab-5 .nav-tabs .nav-link .tp-product-tab-tooltip {
  background-color: var(--tp-theme-green);
}
.tp-product-tab-5 .nav-tabs .nav-link .tp-product-tab-tooltip::after {
  background-color: var(--tp-theme-green);
}

.tp-tab-line {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 38%;
  height: 2px;
  background-color: var(--tp-common-black);
}

/*----------------------------------------*/
/*  2.14 Modal
/*----------------------------------------*/
/*----------------------------------------*/
/*  2.15 Section Title
/*----------------------------------------*/
.tp-section-subtitle {
  color: var(--tp-theme-1);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  display: inline-block;
  text-transform: capitalize;
  padding-bottom: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-section-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .tp-section-subtitle {
    font-size: 14px;
  }
}

.tp-section-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-section-title {
    font-size: 42px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-section-title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-section-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-section-title {
    font-size: 38px;
  }
  .tp-section-title br {
    display: none;
  }
}
@media (max-width: 767px) {
  .tp-section-title {
    font-size: 29px;
  }
  .tp-section-title br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-section-title {
    font-size: 34px;
  }
  .tp-section-title br {
    display: none;
  }
}

/*----------------------------------------*/
/*  2.16 Search css start
/*----------------------------------------*/
.search__popup {
  padding: 70px;
  padding-top: 70px;
  padding-bottom: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 55%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  -webkit-transform: translateY(calc(-100% - 80px));
  -moz-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  -o-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  -moz-transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transition-delay: 0.7s;
}
.search__popup.search-opened {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  transition-delay: 0s;
}
.search__popup.search-opened .search__input {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}
.search__popup.search-opened .search__input::after {
  width: 100%;
  transition-delay: 0.5s;
}
.search__popup-2 {
  background-color: var(--tp-common-black-13);
}
.search__popup-2 .search__input .search-input-field ~ .search-focus-border {
  background-color: var(--tp-theme-8);
}
.search__popup-3 .search__input .search-input-field ~ .search-focus-border {
  background-color: var(--tp-theme-10);
}
.search__top {
  margin-bottom: 80px;
}
.search__input {
  position: relative;
  height: 80px;
  transition: all 0.3s ease-out 0s;
  transition-delay: 0.5s;
  opacity: 0;
}
.search__input::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-out 0s;
  transition-delay: 0.3s;
}
.search__input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 24px;
  color: var(--tp-common-white);
  border-bottom: 1px solid transparent;
  padding: 0;
  padding-right: 30px;
}
.search__input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}
.search__input input::-moz-placeholder { /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}
.search__input input:-moz-placeholder { /* Firefox 4-18 */
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}
.search__input input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}
.search__input input::placeholder { /* MODERN BROWSER */
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}
.search__input button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--tp-common-white);
}
.search__input .search-input-field ~ .search-focus-border {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--tp-common-orange);
  -webkit-transition: 0.5s 0.3s 0s ease-out;
  -moz-transition: 0.5s 0.3s 0s ease-out;
  -ms-transition: 0.5s 0.3s 0s ease-out;
  -o-transition: 0.5s 0.3s 0s ease-out;
  transition: 0.5s 0.3s 0s ease-out;
}
.search__input .search-input-field:focus ~ .search-focus-border {
  width: 100%;
  left: 0;
  right: auto;
  -webkit-transition: 0.5s 0.3s 0s ease-out;
  -moz-transition: 0.5s 0.3s 0s ease-out;
  -ms-transition: 0.5s 0.3s 0s ease-out;
  -o-transition: 0.5s 0.3s 0s ease-out;
  transition: 0.5s 0.3s 0s ease-out;
}

.search__close-btn {
  font-size: 25px;
  color: rgba(255, 255, 255, 0.3);
}
.search__close-btn:hover {
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  2.17 Hostspot css start
/*----------------------------------------*/
.tp-hotspot {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 16px;
  color: var(--tp-common-black);
  border-radius: 50%;
  background-color: var(--tp-common-white);
  position: absolute;
  z-index: 1;
}
.tp-hotspot:hover {
  cursor: pointer;
}

/*----------------------------------------*/
/*  2.178 Range Slider css start
/*----------------------------------------*/
.ui-button-icon-only, .ui-controlgroup-vertical .ui-controlgroup-item {
  box-sizing: border-box;
}

.ui-checkboxradio-disabled, .ui-state-disabled {
  pointer-events: none;
}

.ui-datepicker .ui-icon, .ui-icon {
  text-indent: -99999px;
  background-repeat: no-repeat;
}

.ui-helper-reset, .ui-menu {
  outline: 0;
  list-style: none;
}

.ui-helper-hidden, .ui-resizable-autohide .ui-resizable-handle, .ui-resizable-disabled .ui-resizable-handle {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
}

.ui-helper-clearfix:after, .ui-helper-clearfix:before {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
}

.ui-front {
  z-index: 100;
}

.ui-state-disabled {
  cursor: default !important;
}

.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25em;
  position: relative;
  overflow: hidden;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0;
  padding: 0.5em 0.5em 0.5em 0.7em;
  font-size: 100%;
}

.ui-autocomplete, .ui-menu .ui-menu {
  position: absolute;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

.ui-autocomplete {
  top: 0;
  left: 0;
  cursor: default;
}

.ui-menu {
  padding: 0;
  margin: 0;
  display: block;
}

.ui-button, .ui-controlgroup {
  display: inline-block;
  vertical-align: middle;
}

.ui-button, .ui-menu-icons, .ui-resizable {
  position: relative;
}

.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px 0.4em;
}

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0;
}

.ui-menu .ui-state-active, .ui-menu .ui-state-focus {
  margin: -1px;
}

.ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em;
}

.ui-button, .ui-controlgroup .ui-controlgroup-label {
  padding: 0.4em 1em;
}

.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.2em;
  margin: auto 0;
}

.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

.ui-button {
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: visible;
}

.ui-button, .ui-button:active, .ui-button:hover, .ui-button:link, .ui-button:visited {
  text-decoration: none;
}

.ui-button-icon-only {
  width: 2em;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-button-icon-only {
  text-indent: 0;
}

.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: 0.4em 1em;
}

button.ui-button::-moz-focus-inner, input.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-controlgroup > .ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0;
}

.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus, .ui-controlgroup > .ui-controlgroup-item:focus {
  z-index: 9999;
}

.ui-controlgroup-vertical > .ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%;
}

.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
  border-left: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
  border-top: none;
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none;
}

.ui-controlgroup-vertical .ui-spinner-input {
  width: 75%;
  width: calc(100% - 2.4em);
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
  box-shadow: inset 1px 1px 1px #ccc;
  border-radius: 0.12em;
  border: none;
}

.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none;
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon, .ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid;
}

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}

.ui-datepicker .ui-datepicker-next, .ui-datepicker .ui-datepicker-prev {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-next-hover, .ui-datepicker .ui-datepicker-prev-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-next span, .ui-datepicker .ui-datepicker-prev span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: 700;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td a, .ui-datepicker td span {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-multi .ui-datepicker-group, .ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group, .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

.ui-datepicker .ui-icon {
  display: block;
  overflow: hidden;
  left: 0.5em;
  top: 0.3em;
}

.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0;
  padding: 1px;
  height: 20px;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: 0 0;
  overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0;
  background-image: none;
  margin-top: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}

.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0;
}

.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0;
}

.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0;
}

.ui-dialog .ui-resizable-ne, .ui-dialog .ui-resizable-nw, .ui-dialog .ui-resizable-se, .ui-dialog .ui-resizable-sw {
  width: 7px;
  height: 7px;
}

.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}

.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-draggable-handle, .ui-selectable, .ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted #000;
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: 700;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0;
  height: auto;
  border: 0;
}

.ui-selectmenu-open {
  display: block;
}

.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em;
}

.ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

.ui-slider.ui-state-disabled .ui-slider-handle, .ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.ui-slider-horizontal {
  height: 0.8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min, .ui-spinner-down {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max, .ui-spinner-up {
  top: 0;
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: none;
  background: 0 0;
  color: inherit;
  padding: 0.222em 0;
  margin: 0.2em 2em 0.2em 0.4em;
  vertical-align: middle;
}

.ui-spinner-button {
  width: 1.6em;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

.ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none;
}

.ui-tabs {
  position: relative;
  padding: 0.2em;
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: 0 0;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
}

body .ui-tooltip {
  border-width: 2px;
}

.ui-widget, .ui-widget button, .ui-widget input, .ui-widget select, .ui-widget textarea {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
}

.ui-widget-content a, .ui-widget-header a {
  color: #333;
}

.ui-widget-header {
  border: 1px solid #ddd;
  background: #e9e9e9;
  color: #333;
  font-weight: 700;
}

.ui-button, .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, html .ui-button.ui-state-disabled:active, html .ui-button.ui-state-disabled:hover {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: 400;
  color: #454545;
}

.ui-button, .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited, a.ui-button, a:link.ui-button, a:visited.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-button:focus, .ui-button:hover, .ui-state-focus, .ui-state-hover, .ui-widget-content .ui-state-focus, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-focus, .ui-widget-header .ui-state-hover {
  border: 1px solid #ccc;
  background: #ededed;
  font-weight: 400;
  color: #2b2b2b;
}

.ui-state-focus a, .ui-state-focus a:hover, .ui-state-focus a:link, .ui-state-focus a:visited, .ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited, a.ui-button:focus, a.ui-button:hover {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px #5e9ed6;
}

.ui-button.ui-state-active:hover, .ui-button:active, .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: 400;
  color: #fff;


}

.ui-icon-background, .ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #fff;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
  color: #fff;
  text-decoration: none;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a, .ui-state-error-text, .ui-widget-content .ui-state-error a, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error a, .ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
  font-weight: 700;
}

.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: Alpha(Opacity=70);
  font-weight: 400;
}

.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35);
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
}

.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon, .ui-widget-content .ui-icon, .ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-button:focus .ui-icon, .ui-button:hover .ui-icon, .ui-state-focus .ui-icon, .ui-state-hover .ui-icon {
  background-image: url("images/ui-icons_555555_256x240.png");
}

.ui-button:active .ui-icon, .ui-state-active .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.png");
}

.ui-button .ui-state-highlight.ui-icon, .ui-state-highlight .ui-icon {
  background-image: url("images/ui-icons_777620_256x240.png");
}

.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
  background-image: url("images/ui-icons_777777_256x240.png");
}

.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-first, .ui-icon-seek-start {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

.ui-corner-all, .ui-corner-left, .ui-corner-tl, .ui-corner-top {
  border-top-left-radius: 3px;
}

.ui-corner-all, .ui-corner-right, .ui-corner-top, .ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all, .ui-corner-bl, .ui-corner-bottom, .ui-corner-left {
  border-bottom-left-radius: 3px;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-br, .ui-corner-right {
  border-bottom-right-radius: 3px;
}

.ui-widget-overlay {
  background: #aaa;
  opacity: 0.3;
  filter: Alpha(Opacity=30);
}

.ui-widget-shadow {
  -webkit-box-shadow: 0 0 5px #666;
  box-shadow: 0 0 5px #666;
}

/*----------------------------------------*/
/*  3.1 Header Style 1
/*----------------------------------------*/
.tp-onepage-header.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  width: 100%;
  z-index: 999;
  visibility: visible;
  background-color: var(--tp-common-white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -khtml-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -moz-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -ms-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -o-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}
.tp-onepage-header.header-sticky.sticky-bg {
  background-color: var(--tp-common-black);
}
.tp-onepage-header.header-sticky .tp-header-2-pt {
  padding-top: 0;
}
.tp-onepage-header.header-sticky .tp-header-menu > nav > ul > li > a {
  padding: 20px 0;
}
.tp-onepage-header.header-sticky.tp-header-style-4 .tp-header-menu > nav > ul > li > a::after {
  bottom: 34%;
}
.tp-onepage-header.header-sticky.tp-header-style-4 .tp-header-icon a.cart-icon {
  color: var(--tp-theme-1);
}
.tp-onepage-header.header-sticky.tp-header-style-4 .tp-header-bar button {
  color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
}
.tp-onepage-header.header-sticky.tp-header-style-5.background-bg {
  background-color: var(--tp-common-black);
}

.tp-header-area.tp-header-sticky-cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  visibility: hidden;
  transform: translateY(-100%);
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: transform 500ms ease, visibility 500ms ease;
  transform: perspective(300px) rotateX(0deg) perspective(300px) rotateX(-90deg);
  transform-origin: top;
  transition: all 0.5s ease-in-out;
}
.tp-header-area.tp-header-sticky-cloned .tp-header-menu > nav > ul > li > a {
  padding: 25px 0;
}
.tp-header-area.tp-header-sticky-cloned .tp-header-bar button {
  border-radius: 0;
  color: var(--tp-common-black);
  border-color: var(--tp-common-black);
}
.tp-header-area.tp-header-sticky-cloned .tp-header-icon a.cart-icon svg {
  color: var(--tp-common-black);
}
.tp-header-area.tp-header-sticky-cloned .tp-header-icon a.cart-icon span svg {
  color: var(--tp-common-black);
}
.tp-header-area.tp-header-sticky-cloned.tp-header-style-4 .tp-header-menu > nav > ul > li > a::after {
  bottom: 38%;
}
.tp-header-area.tp-header-sticky-cloned.tp-header-style-4 .tp-header-icon a.cart-icon {
  color: var(--tp-theme-1);
}
.tp-header-area.tp-header-sticky-cloned.tp-header-style-4 .tp-header-icon a.cart-icon span {
  background-color: var(--tp-common-black);
}
.tp-header-area.tp-header-sticky-cloned.tp-header-style-4 .tp-header-icon a.cart-icon span::after {
  background-color: var(--tp-common-white);
}
.tp-header-area.tp-header-sticky-cloned.tp-header-style-4 .tp-header-icon a.cart-icon span i {
  color: var(--tp-common-white);
}
.tp-header-area.tp-header-pinned {
  transform: translateY(0%);
  visibility: visible;
}

.tp-header-2-area.tp-header-sticky-cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  visibility: hidden;
  transform: translateY(-100%);
  background-color: rgb(255, 255, 255);
  transition: transform 500ms ease, visibility 500ms ease;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transform: perspective(300px) rotateX(0deg) perspective(300px) rotateX(-90deg);
  transform-origin: top;
  transition: all 0.5s ease-in-out;
}
.tp-header-2-area.tp-header-sticky-cloned .tp-header-2-menu > nav > ul > li > a {
  padding: 25px 0;
  color: var(--tp-common-black);
}
.tp-header-2-area.tp-header-sticky-cloned .tp-header-2-menu > nav > ul > li > a::before {
  background-color: var(--tp-common-black);
}
.tp-header-2-area.tp-header-sticky-cloned .tp-header-2-menu > nav > ul > li.has-dropdown::after {
  color: var(--tp-common-black);
}
.tp-header-2-area.tp-header-sticky-cloned .tp-header-2-bar button svg {
  color: var(--tp-common-black);
}
.tp-header-2-area.tp-header-sticky-cloned .tp-header-2-icon button svg {
  color: var(--tp-common-black);
}
.tp-header-2-area.tp-header-sticky-cloned .tp-header-2-icon > a.cart-icon svg {
  color: var(--tp-common-black);
}
.tp-header-2-area.tp-header-sticky-cloned .tp-header-2-icon > a.cart-icon > span svg {
  color: var(--tp-common-black);
}
.tp-header-2-area.tp-header-sticky-cloned.tp-header-inner-style .tp-header-2-menu > nav > ul > li > a {
  padding: 25px 0;
  padding-top: 35px;
}
.tp-header-2-area.tp-header-sticky-cloned.tp-header-inner-style .tp-header-2-menu > nav > ul > li > a::after {
  top: 36%;
}
.tp-header-2-area.tp-header-sticky-cloned.tp-header-inner-style .tp-header-icon.cart:hover .minicart {
  top: 151%;
}
.tp-header-2-area.tp-header-pinned {
  transform: translateY(0%) perspective(300px) rotateX(0deg);
  visibility: visible;
}
.tp-header-2-area.tp-header-2-pt {
  padding-top: 0;
}

.tp-header-style-5.tp-header-sticky-cloned .tp-header-menu > nav > ul > li > a {
  padding: 25px 0;
  color: var(--tp-common-black);
}
.tp-header-style-5.tp-header-sticky-cloned .tp-header-menu > nav > ul > li > a::after {
  background-color: var(--tp-common-black);
}

.tp-header-tranparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.tp-header-top-height {
  padding: 10px 0;
}
.tp-header-top-left ul li {
  display: inline-block;
  list-style-type: none;
}
.tp-header-top-left ul li:not(:last-child) {
  margin-right: 18px;
}
.tp-header-top-left ul li i {
  margin-right: 5px;
  color: var(--tp-common-white);
}
.tp-header-top-left ul li a {
  color: var(--tp-common-white);
  position: relative;
  text-transform: capitalize;
}
.tp-header-top-left ul li a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  left: auto;
  height: 1px;
  width: 0;
  background-color: var(--tp-common-white);
  transition: 0.7s;
  display: inline-block;
}
.tp-header-top-left ul li a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.tp-header-top-social a {
  font-size: 16px;
  display: inline-block;
  color: var(--tp-common-white);
  transition: 0.3s;
}
.tp-header-top-social a:hover {
  color: var(--tp-common-black);
}
.tp-header-top-social a:not(:last-child) {
  margin-right: 21px;
}
.tp-header-menu {
  padding-left: 285px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-header-menu {
    padding-left: 200px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header-menu {
    padding-left: 150px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-menu {
    padding-left: 85px;
  }
}
.tp-header-menu > nav > ul > li {
  display: inline-block;
  margin: 0px 13px;
  position: relative;
}
.tp-header-menu > nav > ul > li > a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  display: inline-block;
  padding: 36px 0;
  color: var(--tp-common-black);
  position: relative;
}
.tp-header-menu > nav > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 40%;
  right: 0;
  left: auto;
  height: 1px;
  width: 0;
  background-color: var(--tp-common-white);
  transition: 0.7s;
  display: inline-block;
}
.tp-header-menu > nav > ul > li > .submenu {
  position: absolute;
  top: 100%;
  left: 0px;
  width: 200px;
  z-index: 999;
  padding: 20px 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  transform: translate3d(15px, 0px, 0px);
  transform-origin: top center;
  text-align: start;
  background-color: rgb(255, 255, 255);
  border-top: 3px solid var(--tp-theme-1);
  backdrop-filter: blur(12.5px);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.tp-header-menu > nav > ul > li > .submenu > li {
  margin: 0;
  margin-bottom: 0px;
  display: block;
}
.tp-header-menu > nav > ul > li > .submenu > li > a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  padding: 0;
  text-transform: capitalize;
  color: var(--tp-common-black);
  position: relative;
}
.tp-header-menu > nav > ul > li > .submenu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  left: auto;
  height: 1px;
  width: 0;
  background-color: var(--tp-theme-1);
  transition: 0.7s;
  display: inline-block;
}
.tp-header-menu > nav > ul > li > .submenu > li:hover > a::after {
  width: 100%;
  right: auto;
  left: 0;
  background-color: var(--tp-common-black);
}
.tp-header-menu > nav > ul > li:hover > a::after {
  width: 100%;
  right: auto;
  left: 0;
  background-color: var(--tp-common-black);
}
.tp-header-menu > nav > ul > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0px, 0px, 0px);
}
.tp-header-icon {
  position: relative;
}
.tp-header-icon .cart-icon {
  display: inline-block;
  margin-right: 42px;
  color: var(--tp-theme-1);
  font-size: 22px;
  position: relative;
}
.tp-header-icon .cart-icon span {
  position: absolute;
  top: -2px;
  right: 0px;
  height: 13.5px;
  width: 13.5px;
  line-height: 6.5px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--tp-common-black);
}
.tp-header-icon .cart-icon span::after {
  display: inline-block;
  content: "";
  height: 100%;
  width: 100%;
  background-color: var(--tp-common-white);
  transform: scale(1.4);
  border-radius: 50%;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}
.tp-header-icon .cart-icon span i {
  font-size: 9px;
  font-weight: 700;
  color: var(--tp-common-white);
}
.tp-header-icon .cart-icon .shopping-cart {
  position: relative;
  z-index: -1;
}
.tp-header-icon.cart:hover .minicart {
  opacity: 1;
  visibility: visible;
  top: 176%;
}
.tp-header-bar button {
  height: 50px;
  width: 50px;
  line-height: 50px;
  margin: 15px 0;
  margin-left: 20px;
  font-size: 18px;
  color: var(--tp-common-black);
  border: 1px solid var(--tp-common-black);
}

.tp-header-menu > nav > ul.tp-onepage-menu > li > a.active::after {
  width: 100%;
  right: auto;
  left: 0;
  background-color: var(--tp-common-black);
}

.tp-header-2-pt .tp-header-2-menu > nav > ul.tp-onepage-menu > li > a.active::before {
  width: 100%;
  right: auto;
  left: 0;
  background-color: var(--tp-common-white);
}

.tp-header-style-5 .tp-header-menu > nav > ul.tp-onepage-menu > li > a.active::after {
  background-color: var(--tp-common-white);
}

.minicart {
  background: #fff;
  padding: 25px;
  position: absolute;
  right: 61%;
  top: 250%;
  transition: all 0.3s ease 0s;
  width: 350px;
  z-index: 9;
  box-shadow: 0px 8px 20px rgba(61, 110, 168, 0.3);
  visibility: hidden;
  opacity: 0;
}

.cart-thumb {
  padding-right: 15px;
}
.cart-title {
  font-size: 15px;
}
.cart-title a {
  display: inline-block;
  position: relative;
}
.cart-title a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  left: auto;
  height: 1px;
  width: 0;
  background-color: var(--tp-theme-1);
  transition: 0.7s;
  display: inline-block;
}
.cart-title a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
  background-color: var(--tp-common-black);
}
.cart-del-icon {
  font-weight: 700;
  color: var(--tp-common-black);
}
.cart-del-icon span {
  transition: 0.3s;
}
.cart-del-icon span:hover {
  cursor: pointer;
  color: red;
}
.cart-content {
  text-align: start;
}
.cart-content span {
  font-size: 14px;
  color: #747691;
}
.cart-content span del {
  color: #a5a7bc;
  font-size: 13px;
}
.cart-content-wrap {
  padding-bottom: 7px;
}
.cart-total-price {
  border-top: 1px solid #cacadb;
  padding-top: 15px;
  margin-top: 10px;
  margin-bottom: 25px;
}
.cart-total-price span {
  color: #747691;
  font-weight: 700;
  font-size: 16px;
}

/*----------------------------------------*/
/*  3.2 Header Style 2
/*----------------------------------------*/
.tp-header-2-pt {
  padding-top: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-header-2-pt {
    padding-top: 0;
  }
}
.tp-header-2-menu {
  padding-left: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-2-menu {
    padding-left: 36px;
  }
}
.tp-header-2-menu > nav > ul {
  counter-reset: count;
}
.tp-header-2-menu > nav > ul > li {
  display: inline-block;
  margin: 0px 18px;
  position: relative;
}
.tp-header-2-menu > nav > ul > li > a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  display: inline-block;
  padding: 30px 0;
  color: var(--tp-common-white);
  position: relative;
}
.tp-header-2-menu > nav > ul > li > a::after {
  position: absolute;
  counter-increment: count;
  content: counter(count, decimal-leading-zero);
  left: 0;
  top: 10px;
  font-size: 12px;
  font-weight: 500;
}
.tp-header-2-menu > nav > ul > li > a::before {
  position: absolute;
  content: "";
  bottom: 30px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--tp-common-white);
  transition: 0.3s;
}
.tp-header-2-menu > nav > ul > li > .submenu {
  position: absolute;
  top: 100%;
  left: 0px;
  width: 200px;
  z-index: 999;
  padding: 20px 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  transform: translate3d(15px, 0px, 0px);
  transform-origin: top center;
  text-align: start;
  background-color: rgb(255, 255, 255);
  border-top: 3px solid var(--tp-theme-1);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.tp-header-2-menu > nav > ul > li > .submenu > li {
  margin: 0;
  margin-bottom: 0px;
  display: block;
}
.tp-header-2-menu > nav > ul > li > .submenu > li > a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  padding: 0;
  text-transform: capitalize;
  color: var(--tp-common-black);
  position: relative;
}
.tp-header-2-menu > nav > ul > li > .submenu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  left: auto;
  height: 1px;
  width: 0;
  background-color: var(--tp-common-black);
  transition: 0.7s;
  display: inline-block;
}
.tp-header-2-menu > nav > ul > li > .submenu > li:hover > a::after {
  width: 100%;
  right: auto;
  left: 0;
  background-color: var(--tp-common-black);
}
.tp-header-2-menu > nav > ul > li.has-dropdown::after {
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  transition: 0.3s;
  margin-left: 5px;
  transform: translateY(2px);
  color: var(--tp-common-white);
}
.tp-header-2-menu > nav > ul > li:hover.has-dropdown::after {
  transform: rotate(-180deg);
}
.tp-header-2-menu > nav > ul > li:hover > a::before {
  width: 100%;
}
.tp-header-2-menu > nav > ul > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
.tp-header-2-right ul li {
  display: inline-block;
  list-style-type: none;
}
.tp-header-2-right ul li:not(:last-child) {
  margin-right: 28px;
}
.tp-header-2-icon {
  position: relative;
}
.tp-header-2-icon > a svg {
  color: var(--tp-common-white);
}
.tp-header-2-icon button svg {
  color: var(--tp-common-white);
}
.tp-header-2-icon.cart:hover .minicart {
  opacity: 1;
  visibility: visible;
  top: 176%;
}
.tp-header-2-icon .minicart {
  right: 0%;
  top: 250%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-header-2-bar {
    margin: 20px 0;
  }
}
.tp-header-2-bar button svg {
  color: var(--tp-common-white);
}

.tp-header-style-3 .tp-header-menu {
  padding-left: 280px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-header-style-3 .tp-header-menu {
    padding-left: 220px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header-style-3 .tp-header-menu {
    padding-left: 155px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-style-3 .tp-header-menu {
    padding-left: 80px;
  }
}
.tp-header-style-3 .tp-header-menu > nav > ul > li > a {
  padding: 36px 0;
}

.tp-header-style-4 .tp-header-menu {
  padding-left: 165px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-header-style-4 .tp-header-menu {
    padding-left: 115px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header-style-4 .tp-header-menu {
    padding-left: 85px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-style-4 .tp-header-menu {
    padding-left: 25px;
  }
}
.tp-header-style-4 .tp-header-menu > nav > ul > li > a {
  padding: 52px 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header-style-4 .tp-header-menu > nav > ul > li > a {
    padding: 35px 0;
  }
}
.tp-header-style-4 .tp-header-bar button {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 40px;
  color: var(--tp-common-white);
  border-color: var(--tp-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-header-style-4 .tp-header-bar button {
    border-radius: 0;
    color: var(--tp-common-black);
    border-color: var(--tp-common-black);
  }
}
.tp-header-style-4 .tp-header-icon a.cart-icon {
  margin-right: 20px;
  color: var(--tp-common-white);
}
.tp-header-style-4 .tp-header-icon a.cart-icon span {
  background-color: var(--tp-common-white);
}
.tp-header-style-4 .tp-header-icon a.cart-icon span::after {
  background-color: var(--tp-theme-1);
}
.tp-header-style-4 .tp-header-icon a.cart-icon span i {
  color: var(--tp-theme-1);
}
.tp-header-style-4 .tp-header-icon .minicart {
  right: 49%;
}

.tp-header-style-5 .tp-header-menu {
  padding-left: 335px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-header-style-5 .tp-header-menu {
    padding-left: 230px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header-style-5 .tp-header-menu {
    padding-left: 200px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-style-5 .tp-header-menu {
    padding-left: 120px;
  }
}
.tp-header-style-5 .tp-header-menu > nav > ul > li > a {
  color: var(--tp-common-white);
  padding: 42px 0;
}
.tp-header-style-5 .tp-header-menu > nav > ul > li > a::after {
  background-color: var(--tp-common-white);
}
.tp-header-style-5 .tp-header-bar button {
  border-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-header-style-5 .tp-header-bar button {
    border-radius: 50%;
    color: var(--tp-common-white);
  }
}
.tp-header-style-5 .tp-header-icon a.cart-icon span::after {
  background-color: var(--tp-common-black);
}
.tp-header-style-5 .tp-header-icon a.cart-icon span i {
  color: var(--tp-common-black);
}
.tp-header-style-5 .tp-header-icon .pdf-icon {
  color: var(--tp-theme-1);
  margin-left: 17px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-inner-style .tp-header-right {
    margin-left: -20px;
  }
}
.tp-header-inner-style .tp-header-right ul li {
  display: inline-block;
  list-style-type: none;
}
.tp-header-inner-style .tp-header-icon .cart-icon {
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  margin-right: 28px;
  background-color: rgba(166, 161, 130, 0.1);
  color: var(--tp-common-black);
}
.tp-header-inner-style .tp-header-icon .cart-icon span {
  top: -3px;
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-weight: 600;
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}
.tp-header-inner-style .tp-header-icon > a {
  color: var(--tp-common-black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: capitalize;
}
.tp-header-inner-style .tp-header-icon .pdf-icon {
  color: var(--tp-theme-1);
  margin-left: 17px;
}
.tp-header-inner-style .tp-header-icon .minicart {
  right: 41%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-header-inner-style .tp-header-2-bar {
    margin: 20px 0;
  }
}
.tp-header-inner-style .tp-header-2-bar button > svg {
  color: var(--tp-common-black);
}
.tp-header-inner-style .tp-header-2-menu {
  padding-left: 195px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-header-inner-style .tp-header-2-menu {
    padding-left: 150px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header-inner-style .tp-header-2-menu {
    padding-left: 75px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-inner-style .tp-header-2-menu {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-inner-style .tp-header-2-menu > nav > ul > li {
    margin: 0 14px;
  }
}
.tp-header-inner-style .tp-header-2-menu > nav > ul > li > a {
  padding-top: 55px;
  padding-bottom: 35px;
  color: var(--tp-common-black);
}
.tp-header-inner-style .tp-header-2-menu > nav > ul > li > a::before {
  bottom: 34%;
  transform: translate(0, -50%);
  background-color: var(--tp-common-black);
}
.tp-header-inner-style .tp-header-2-menu > nav > ul > li > a::after {
  left: 0;
  top: 42%;
  transform: translate(0, -50%);
}
.tp-header-inner-style .tp-header-2-menu > nav > ul > li .submenu > ul > li > a {
  padding: 0;
}
.tp-header-inner-style .tp-header-2-menu > nav > ul > li.has-dropdown::after {
  color: var(--tp-common-black);
}

/* HEADER CSS */
/*----------------------------------------*/
/*  4.1 Main menu css
/*----------------------------------------*/
.tp-header-menu nav ul li .has-homemenu {
  width: 1100px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.tp-header-menu nav ul li .has-homemenu .homemenu {
  padding: 0px 10px;
  position: relative;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header-menu nav ul li .has-homemenu {
    left: -150px;
    width: 1000px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-menu nav ul li .has-homemenu {
    left: -150px;
    width: 1000px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-menu nav ul li .has-homemenu {
    left: -100px;
    width: 900px;
  }
}

.tp-header-2-menu nav ul li .has-homemenu {
  width: 1100px;
  opacity: 0;
  left: -105px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.tp-header-2-menu nav ul li .has-homemenu .homemenu {
  padding: 0px 10px;
  position: relative;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-2-menu nav ul li .has-homemenu {
    width: 900px;
  }
}

.homemenu-btn {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.homemenu-title {
  font-size: 12px;
  margin-bottom: 0;
  color: var(--tp-common-black);
  display: inline-block;
  font-weight: 500;
  position: relative;
}
.homemenu-title::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  left: auto;
  height: 1px;
  width: 0;
  background-color: var(--tp-theme-1);
  transition: 0.7s;
  display: inline-block;
}
.homemenu-title:hover::after {
  width: 100%;
  right: auto;
  left: 0;
  background-color: var(--tp-common-black);
}

.homemenu-thumb {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.tp-main-menu-mobile .tp-submenu {
  display: none;
}
.tp-main-menu-mobile .header-icon {
  display: none;
}
.tp-main-menu-mobile ul {
  position: static;
  display: block;
  box-shadow: none;
}
.tp-main-menu-mobile ul li {
  list-style: none;
  position: relative;
  width: 100%;
  padding: 0;
}
.tp-main-menu-mobile ul li:not(:last-child) a {
  border-bottom: 1px solid rgba(6, 7, 40, 0.1);
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn {
  position: absolute;
  right: 0;
  top: 21%;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  font-size: 18px;
  color: #7F8387;
  font-family: "Font Awesome 5 Pro";
  transition: all 0.3s ease-in-out;
  z-index: 1;
  width: 25px;
  height: 25px;
  line-height: 22px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn i {
  transition: all 0.3s ease-in-out;
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn.dropdown-opened i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover {
  background-color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}
.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover i {
  color: var(--tp-common-white);
}
.tp-main-menu-mobile ul li.has-dropdown > a.expanded {
  color: var(--tp-theme-1);
}
.tp-main-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened {
  background-color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}
.tp-main-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened i {
  color: var(--tp-common-white);
}
.tp-main-menu-mobile ul li.has-dropdown:hover > a::after {
  color: var(--tp-theme-green);
}
.tp-main-menu-mobile ul li.has-dropdown-2 > a .dropdown-toggle-btn {
  position: absolute;
  right: 0;
  top: 21%;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  font-size: 18px;
  color: #7F8387;
  font-family: "Font Awesome 5 Pro";
  transition: all 0.3s ease-in-out;
  z-index: 1;
  width: 25px;
  height: 25px;
  line-height: 22px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.tp-main-menu-mobile ul li.has-dropdown-2 > a .dropdown-toggle-btn i {
  transition: all 0.3s ease-in-out;
}
.tp-main-menu-mobile ul li.has-dropdown-2 > a .dropdown-toggle-btn.dropdown-opened i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.tp-main-menu-mobile ul li.has-dropdown-2 > a .dropdown-toggle-btn:hover {
  background-color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}
.tp-main-menu-mobile ul li.has-dropdown-2 > a .dropdown-toggle-btn:hover i {
  color: var(--tp-common-white);
}
.tp-main-menu-mobile ul li.has-dropdown-2 > a.expanded {
  color: var(--tp-theme-1);
}
.tp-main-menu-mobile ul li.has-dropdown-2 > a.expanded .dropdown-toggle-btn.dropdown-opened {
  background-color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}
.tp-main-menu-mobile ul li.has-dropdown-2 > a.expanded .dropdown-toggle-btn.dropdown-opened i {
  color: var(--tp-common-white);
}
.tp-main-menu-mobile ul li.has-dropdown-2:hover > a::after {
  color: var(--tp-theme-green);
}
.tp-main-menu-mobile ul li:last-child a span {
  border-bottom: 0;
}
.tp-main-menu-mobile ul li > a {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--tp-common-white);
  position: relative;
  padding: 7px 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li > a svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.tp-main-menu-mobile ul li > a > i {
  display: inline-block;
  width: 11%;
  margin-right: 13px;
  -webkit-transform: translateY(4px);
  -moz-transform: translateY(4px);
  -ms-transform: translateY(4px);
  -o-transform: translateY(4px);
  transform: translateY(4px);
  font-size: 21px;
  line-height: 1;
}
.tp-main-menu-mobile ul li > a .menu-text {
  font-size: 16px;
  line-height: 11px;
  border-bottom: 1px solid #EAEBED;
  width: 82%;
  display: inline-block;
  padding: 19px 0 17px;
}
.tp-main-menu-mobile ul li img {
  width: 100%;
}
.tp-main-menu-mobile ul li ul {
  padding: 0;
}
.tp-main-menu-mobile ul li ul li {
  padding: 0;
}
.tp-main-menu-mobile ul li ul li a {
  margin-left: auto;
  width: 93%;
  padding: 10px 5%;
  text-shadow: none !important;
  visibility: visible;
  padding-left: 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li ul li li a {
  width: 88%;
  padding: 10px 7%;
  padding-left: 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li ul li li li a {
  width: 83%;
  padding: 10px 9%;
  padding-left: 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li ul li li li li a {
  width: 68%;
  padding: 10px 11%;
  padding-left: 0;
  padding-right: 20px;
}
.tp-main-menu-mobile ul li:hover > a {
  color: var(--tp-theme-1);
}
.tp-main-menu-mobile ul li:hover > a::after {
  color: var(--tp-theme-1);
}
.tp-main-menu-mobile ul li:hover > a .dropdown-toggle-btn i {
  color: var(--tp-theme-1);
}
.tp-main-menu-mobile ul li:hover .mega-menu {
  visibility: visible;
  opacity: 1;
  top: 0;
}
.tp-main-menu-mobile ul li .mega-menu, .tp-main-menu-mobile ul li .submenu {
  position: static;
  min-width: 100%;
  padding: 0;
  box-shadow: none;
  visibility: visible;
  opacity: 1;
  display: none;
}
.tp-main-menu-mobile ul li .mega-menu li, .tp-main-menu-mobile ul li .submenu li {
  float: none;
  display: block;
  width: 100%;
  padding: 0;
}
.tp-main-menu-mobile ul li .mega-menu li:hover a .dropdown-toggle-btn, .tp-main-menu-mobile ul li .submenu li:hover a .dropdown-toggle-btn {
  color: var(--tp-theme-1);
}
.tp-main-menu-mobile .tp-main-menu-content ul li:not(:last-child) .home-menu-title a {
  border-bottom: none;
}
.tp-main-menu-mobile * ul, .tp-main-menu-mobile * li {
  transition: none !important;
}

.tp-onepage-menu li a span {
  display: block;
}

/*----------------------------------------*/
/*  5.2 Postbox css
/*----------------------------------------*/
.postbox__wrapper {
  margin-right: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .postbox__wrapper {
    margin-right: 0;
  }
}

/* Blog Mobile Search Bar */
.blog-mobile-search {
    display: none;
    margin-bottom: 30px;
}

.blog-search-form {
    width: 100%;
}

.blog-search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--theme-color1);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(26, 21, 82, 0.15);
}

.blog-search-input {
    flex: 1;
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    background: #ffffff;
    font-size: 15px;
    color: #1a1a1a;
    outline: none;
    font-family: inherit;
}

.blog-search-input::placeholder {
    color: #999999;
    font-size: 15px;
}

.blog-search-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 8px;
    background: var(--theme-color1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    margin-left: 8px;
    flex-shrink: 0;
}

.blog-search-btn:hover {
    background: #2a2a6e;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.blog-search-btn:active {
    transform: translateY(0);
}

.blog-search-btn i {
    font-size: 18px;
}

/* Show search bar only on mobile */
@media (max-width: 767px) {
    .blog-mobile-search {
        display: block;
        margin-bottom: 30px;
    }
    
    /* Hide sidebar cards on mobile */
    .blog-sidebar-mobile {
        display: none !important;
    }
}

/* Hide search bar on desktop */
@media (min-width: 768px) {
    .blog-mobile-search {
        display: none;
    }
    
    .blog-sidebar-mobile {
        display: block;
    }
}

/* Blog Details Page - Hide Sidebar Cards on Mobile */
@media (max-width: 767px) {
    .blog-details-sidebar-mobile {
        display: none !important;
    }
    
    /* Hide form on mobile */
    .blog-details-form-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .blog-details-sidebar-mobile {
        display: block;
    }
    
    .blog-details-form-mobile {
        display: block;
    }
}
.postbox__thumb {
  position: relative;
}
.postbox__thumb .play-btn {
  position: absolute;
  top: 38%;
  left: 44%;
  z-index: 1;
}
.postbox__thumb .play-btn a {
  height: 85px;
  width: 85px;
  line-height: 87px;
}
.postbox__thumb .play-btn a::after {
  display: none;
}
.postbox__thumb-text {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.postbox__thumb-text-2 {
  position: absolute;
  left: 30px;
  top: 30px;
}
.postbox__thumb-text-2 > span {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  padding: 7px 20px;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}
.postbox__item-single:hover {
  box-shadow: none;
}
.postbox__meta span:not(:last-child) {
  margin-right: 25px;
}
.postbox__meta span svg, .postbox__meta span i {
  margin-right: 4px;
  display: inline-block;
}
.postbox__tag {
  position: absolute;
  bottom: 0px;
  left: 0;
}
.postbox__tag p {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.135em;
  background: var(--tp-theme-1);
  clip-path: polygon(0px 0px, 100% 0px, 92.7% 53.45%, 100% 100%, 0px 100%, 0px 50%);
  width: 130px;
}
.postbox__content-single {
  padding-left: 0;
  padding-right: 0;
  border: none;
}
@media (max-width: 767px) {
  .postbox__content-thumb {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .postbox__content-thumb img {
    margin-bottom: 20px;
  }
}
.postbox__title {
  font-weight: 700;
  font-size: 28px;
  color: var(--tp-common-black);
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .postbox__title {
    font-size: 25px;
  }
}
.postbox__title a:hover {
  color: var(--tp-theme-1);
}
.postbox__blockquote > blockquote {
  padding-left: 30px;
}
.postbox__blockquote > blockquote::after {
  position: absolute;
  content: "";
  top: 9px;
  height: 100px;
  width: 2px;
  left: 0;
  background: var(--tp-theme-1);
}
.postbox__blockquote > blockquote > p {
  font-family: var(--tp-ff-heading);
  font-weight: 500;
  font-size: 26px;
  color: var(--tp-common-black);
  margin-bottom: 15px;
  line-height: 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .postbox__blockquote > blockquote > p {
    font-size: 22px;
  }
  .postbox__blockquote > blockquote > p br {
    display: none;
  }
}
@media (max-width: 767px) {
  .postbox__blockquote > blockquote > p {
    font-size: 17px;
    line-height: 24px;
  }
  .postbox__blockquote > blockquote > p br {
    display: none;
  }
}
.postbox__blockquote > blockquote cite {
  font-weight: 400;
  font-size: 16px;
  font-style: inherit;
  position: relative;
}
.postbox-details-desc-thumb-caption {
  font-size: 18px;
  font-weight: 500;
  color: #807A7A;
  font-style: italic;
  text-align: center;
  display: block;
  margin-top: 30px;
  margin-bottom: 50px;
}
.postbox__list {
  margin-bottom: 60px;
}
.postbox__list-title {
  font-weight: 600;
  font-size: 28px;
  color: #121D2C;
  margin-bottom: 50px;
}
.postbox__list-content ul li {
  list-style: none;
  font-weight: 400;
  font-size: 16px;
  color: #445658;
  margin-bottom: 24px;
  position: relative;
  padding-left: 40px;
}
.postbox__list-content ul li span {
  height: 27px;
  width: 27px;
  line-height: 25px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  background-color: var(--tp-common-white);
  color: var(--tp-theme-1);
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.06);
  position: absolute;
  top: 0;
  left: 0;
}
.postbox__list-content ul li span.active {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}
.postbox__details-share-wrapper {
  padding: 30px 25px;
  border: 2px solid var(--theme-color1);
  border-radius: 12px;
  background: #ffffff;
  margin: 40px 0;
  box-shadow: 0 2px 8px rgba(26, 21, 82, 0.1);
}
.postbox__details-share span {
  font-size: 20px;
  font-weight: 500;
  color: #121416;
  margin-right: 15px;
}
.postbox__details-share a {
  height: 37px;
  width: 37px;
  text-align: center;
  line-height: 37px;
  display: inline-block;
  border: 1px solid var(--tp-theme-1);
  color: var(--tp-theme-1);
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox__details-share a {
    margin-bottom: 10px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    margin-right: 8px;
  }
}
.postbox__details-share a:hover {
  color: var(--tp-common-black);
  border-color: var(--tp-common-black);
}
.postbox__details-tag span {
  font-size: 18px;
  font-weight: 800;
  color: var(--theme-color1);
  margin-right: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox__details-tag span {
    font-size: 16px;
  }
}
.postbox__read-more .postbox-btn {
  position: relative;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: #132047;
}
.postbox__read-more .postbox-btn span {
  margin-left: 5px;
}
.postbox__read-more .postbox-btn span::before {
  position: absolute;
  content: "";
  top: 1px;
  right: -10px;
  border: 1px solid #E8F2F9;
  height: 28px;
  width: 28px;
  display: inline-block;
  border-radius: 50%;
}
.postbox__text-2 {
  border-bottom: none;
}
.postbox__text-2 p {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .postbox__text-2 p {
    font-size: 14px;
  }
}
.postbox__text img {
  max-width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox__text img {
    width: 48.5%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .postbox__text img {
    width: 100%;
  }
}
.postbox__text p {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .postbox__text p {
    font-size: 14px;
  }
}
.postbox__text-single p {
  margin-bottom: 15px;
}
.postbox__slider button {
  position: absolute;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  font-size: 30px;
  color: var(--tp-common-white);
}
.postbox__slider button.postbox-slider-button-next {
  left: auto;
  right: 50px;
}
@media (max-width: 767px) {
  .postbox__slider button.postbox-slider-button-next {
    right: 10px;
  }
}
@media (max-width: 767px) {
  .postbox__slider button {
    left: 10px;
  }
}
.postbox__tag span {
  font-size: 16px;
  margin-bottom: 17px;
  color: var(--tp-common-black);
  margin-right: 10px;
}
.postbox__play-btn a {
  height: 85px;
  width: 85px;
  line-height: 85px;
  background-color: var(--tp-common-white);
  color: var(--tp-theme-1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@media (max-width: 767px) {
  .postbox__play-btn a {
    height: 70px;
    width: 70px;
    line-height: 70px;
  }
}
.postbox__author {
  padding: 45px 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .postbox__author {
    padding: 45px 40px;
  }
}
@media (max-width: 767px) {
  .postbox__author {
    padding: 45px 20px;
  }
}
.postbox__author-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--tp-common-white);
}
.postbox__author-thumb {
  flex: 0 0 auto;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .postbox__author-thumb {
    margin-bottom: 30px;
  }
}
.postbox__author-content p {
  color: #9898a0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .postbox__author-content p {
    font-size: 14px;
  }
  .postbox__author-content p br {
    display: none;
  }
}
.postbox__author-social a {
  color: var(--tp-common-white);
  margin-right: 20px;
  display: inline-block;
  transition: 0.3s;
}
.postbox__author-social a:hover {
  color: var(--tp-theme-1);
}
.postbox__comment ul li {
  margin-bottom: 10px;
  list-style: none;
  border-bottom: 1px solid #e7e6e8;
}
.postbox__comment ul li.children {
  margin-left: 65px;
}
@media (max-width: 767px) {
  .postbox__comment ul li.children {
    margin-left: 15px;
  }
}
.postbox__comment-wrap ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.postbox__comment-wrap .postbox__comment-reply span {
  font-size: 16px;
  font-weight: 600;
  margin-right: 90px;
  display: inline-block;
  color: var(--tp-theme-1);
}
.postbox__comment-wrap .postbox__comment-reply a {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  color: var(--tp-common-black);
}
.postbox__comment-form-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .postbox__comment-form-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.postbox__comment-input {
  position: relative;
  margin-bottom: 20px;
}
.postbox__comment-input span {
  font-weight: 600;
  color: var(--tp-common-black);
  margin-bottom: 12px;
  display: block;
}
.postbox__comment-input input, .postbox__comment-input textarea {
  height: 55px;
  padding: 0 20px;
  width: 100%;
  font-size: 14px;
  color: var(--tp-common-black);
  outline: none;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  box-shadow: 0px 15px 10px rgba(242, 242, 242, 0.18);
}
.postbox__comment-input input:focus, .postbox__comment-input textarea:focus {
  border: 1px solid var(--tp-theme-1);
}
.postbox__comment-input input:focus::placeholder, .postbox__comment-input textarea:focus::placeholder {
  font-size: 0;
}
.postbox__comment-input textarea {
  height: 175px;
  resize: none;
  padding-top: 20px;
  padding-bottom: 20px;
}
.postbox__comment-title {
  font-size: 28px;
  color: #121416;
  font-weight: 600;
  margin-bottom: 20px;
}
.postbox__comment-box {
  padding-top: 20px;
  padding-bottom: 60px;
}
.postbox__comment-avater {
  flex: 0 0 auto;
}
.postbox__comment-avater img {
  border-radius: 50%;
}
@media (max-width: 767px) {
  .postbox__comment-avater {
    margin-bottom: 30px;
  }
}
.postbox__comment-name {
  margin-bottom: 5px;
}
.postbox__comment-name h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: var(--tp-common-black);
}
.postbox__comment-name span {
  font-weight: 500;
  font-size: 12px;
  color: #949392;
}
@media (max-width: 767px) {
  .postbox__comment-text {
    margin-left: 0;
    margin-top: 15px;
  }
}
.postbox__comment-text p {
  font-size: 16px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .postbox__comment-text p {
    font-size: 14px;
  }
  .postbox__comment-text p br {
    display: none;
  }
}
.postbox__comment-reply a {
  position: relative;
  font-weight: 700;
  font-size: 14px;
  display: block;
  padding-left: 25px;
  color: var(--tp-theme-1);
}
.postbox__comment-reply a i {
  position: absolute;
  top: 10px;
  left: 0;
}
.postbox__comment-agree {
  padding-left: 5px;
}
.postbox__comment-agree input {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  display: block;
  width: 16px;
  height: 16px;
  background: var(--tp-common-white);
  border: 1px solid #949392;
  outline: none;
  flex: 0 0 auto;
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}
.postbox__comment-agree input:checked {
  position: relative;
  background-color: var(--tp-theme-1);
  border-color: transparent;
}
.postbox__comment-agree input:checked::after {
  box-sizing: border-box;
  content: "\f00c";
  position: absolute;
  font-family: var(--tp-ff-fontawesome);
  font-size: 10px;
  color: var(--tp-common-white);
  top: 47%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.postbox__comment-agree input:hover {
  cursor: pointer;
}
.postbox__comment-agree label {
  padding-left: 8px;
  color: #838383;
  line-height: 1;
}
.postbox__comment-agree label a {
  color: var(--tp-common-black);
  font-weight: 600;
  padding-left: 4px;
}
.postbox__comment-agree label a:hover {
  color: var(--tp-theme-1);
}
.postbox__comment-agree label:hover {
  cursor: pointer;
}
@media (max-width: 767px) {
  .postbox__comment-info {
    flex-wrap: wrap;
  }
}

.postbox__slider-arrow-wrap button {
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: var(--tp-common-white);
  color: var(--tp-common-black);
  text-align: center;
  font-size: 18px;
  transition: 0.3s;
}
.postbox__slider-arrow-wrap button:hover {
  color: var(--tp-theme-1);
}
.postbox__slider-arrow-wrap .postbox-arrow-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 9;
}
.postbox__slider-arrow-wrap .postbox-arrow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 9;
}
.postbox__wrapper .postbox__content {
  padding: 0;
  padding-top: 30px;
  background-color: transparent;
}
.postbox__wrapper .postbox__meta {
  margin-bottom: 15px;
}
.postbox__wrapper .postbox__meta span {
  font-weight: 400;
  font-size: 14px;
}
@media (max-width: 767px) {
  .postbox__wrapper .postbox__meta span {
    font-size: 12px;
  }
}
.postbox__wrapper .postbox__meta span:not(:last-child) {
  margin-right: 20px;
}
@media (max-width: 767px) {
  .postbox__wrapper .postbox__meta span:not(:last-child) {
    margin-right: 17px;
  }
}
.postbox__wrapper .postbox__meta span i {
  color: var(--tp-theme-1);
  margin-right: 10px;
}
.postbox__wrapper .postbox__meta span i.tag {
  transform: rotate(90deg);
  display: inline-block;
}
.postbox__wrapper .postbox__text > p {
  padding-right: 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .postbox__wrapper .postbox__text > p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .postbox__details-tag {
    margin-bottom: 25px;
  }
}
.postbox__details-tag.tagcloud a {
  padding: 12px 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 30px;
  color: var(--theme-color1);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--theme-color1);
  box-shadow: 0 2px 8px rgba(26, 21, 82, 0.1);
  transition: all 0.3s ease;
}

.postbox__details-tag.tagcloud a:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  color: var(--theme-color1);
  transform: none;
  box-shadow: 0 2px 8px rgba(26, 21, 82, 0.1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .postbox__details-tag.tagcloud a {
    font-size: 13px;
    padding: 10px 20px;
  }
}
.postbox__more-content p {
  font-size: 18px;
  margin-bottom: 13px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .postbox__more-content p {
    font-size: 15px;
  }
}
.postbox__more-content h4 {
  font-size: 18px;
  transition: 0.3s;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .postbox__more-content h4 {
    font-size: 15px;
  }
}
.postbox__more-content h4:hover {
  color: var(--tp-theme-1);
}
.postbox__more-icon {
  position: absolute;
  top: 0;
}
.postbox__more-icon a {
  font-size: 24px;
  transition: 0.3s;
}
.postbox__more-icon:hover a {
  color: var(--tp-theme-1);
}
.postbox__more-left {
  padding-left: 40px;
}
.postbox__more-left .postbox__more-icon {
  left: 0;
}
.postbox__more-right {
  padding-right: 40px;
}
.postbox__more-right .postbox__more-icon {
  right: 0;
}

.basic-pagination ul li {
  list-style: none;
  display: inline-block;
  margin-right: 14px;
}
@media (max-width: 767px) {
  .basic-pagination ul li {
    margin-right: 5px;
  }
}
.basic-pagination ul li:hover a {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}
.basic-pagination ul li:hover a i,
.basic-pagination ul li:hover a span i,
.basic-pagination ul li:hover a span.current i {
  color: var(--tp-common-white); /* Make arrow white on hover */
}
.basic-pagination ul li.active a {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}
.basic-pagination ul li > a {
  height: 60px;
  width: 60px;
  border-radius: 5px;
  display: inline-block;
  line-height: 60px;
  color: var(--tp-theme-1);
}
.basic-pagination ul li > a i,
.basic-pagination ul li > a span i,
.basic-pagination ul li > a span.current i {
  color: var(--tp-theme-1); /* Make arrow visible by default */
  font-size: 18px;
  display: inline-block;
}
.basic-pagination ul li > a.current {
  height: 50px;
  width: 50px;
  display: inline-block;
  line-height: 50px;
  text-align: center;
  font-weight: 900;
  font-size: 18px;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
  transition: all 0.3s ease-in-out;
  border: none;
}

/*----------------------------------------*/
/*  5.3 Recent Post css
/*----------------------------------------*/
.rc__post:hover .rc__post-thumb::after {
  opacity: 1;
  visibility: visible;
  width: 100%;
  right: auto;
  left: 0;
}
.rc__post ul li:not(:last-child) {
  margin-bottom: 15px;
}
.rc__post-title {
  font-weight: 700;
  font-size: 16px;
  margin-right: -20px;
  line-height: 22px;
  margin-bottom: 0;
  color: var(--tp-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rc__post-title {
    font-size: 13px;
  }
  .rc__post-title br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .rc__post-title {
    font-size: 14px;
  }
  .rc__post-title br {
    display: none;
  }
}
.rc__post-title a:hover {
  color: var(--tp-theme-1);
}
.rc__meta span {
  font-weight: 400;
  font-size: 16px;
  display: block;
  margin-bottom: 7px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .rc__meta span {
    font-size: 14px;
  }
}
.rc__meta span i {
  transform: translateY(-2px);
  margin-right: 3px;
  color: var(--tp-theme-1);
}
.rc__post-thumb {
  flex: 0 0 auto;
}
.rc__post-thumb img {
  width: 70px;
  height: 70px;
}

/*----------------------------------------*/
/*  5.4 Sidebar css
/*----------------------------------------*/
.sidebar__widget {
  padding: 50px;
  background: #F4F6F8;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .sidebar__widget {
    padding: 30px 25px;
  }
}
.sidebar__widget-title {
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 30px;
  color: var(--tp-common-black);
}
.sidebar__widget ul li {
  list-style: none;
  height: 56px;
  line-height: 56px;
  border-radius: 2px;
  padding: 0 30px;
  box-shadow: 0px 4px 20px 0px rgba(30, 22, 22, 0.06);
  background: var(--tp-common-white);
}
.sidebar__widget ul li:hover {
  background-color: var(--tp-theme-1);
}
.sidebar__widget ul li:hover a {
  color: var(--tp-common-white);
}
.sidebar__widget ul li.active {
  background-color: var(--tp-theme-1);
}
.sidebar__widget ul li.active a {
  color: var(--tp-common-white);
}
.sidebar__widget ul li:last-child {
  margin-bottom: 10px;
}
.sidebar__widget ul li a {
  position: relative;
  font-weight: 700;
  font-size: 16px;
  color: var(--tp-common-black);
  display: block;
}
.sidebar__widget ul li a span {
  float: right;
}
.sidebar__about {
  padding: 37px 0 38px 0;
}
.sidebar__thumb img {
  border-radius: 50%;
  margin-bottom: 20px;
}
.sidebar__content-title {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--tp-common-black);
  margin-bottom: 6px;
}
.sidebar__content-designation {
  font-weight: 400;
  font-size: 14px;
  color: #727A7D;
  display: block;
  margin-bottom: 13px;
}
.sidebar__content p {
  font-size: 16px;
  color: #838383;
  margin-bottom: 27px;
}
.sidebar__content-social a {
  height: 37px;
  width: 42px;
  line-height: 37px;
  text-align: center;
  display: inline-block;
  border: 1px solid #E8E8E8;
  margin-right: 12px;
}
.sidebar__content-social a i {
  transition: 0.3s;
}
.sidebar__content-social a:hover {
  border: 1px solid var(--tp-theme-1);
  background-color: var(--tp-theme-1);
}
.sidebar__content-social a:hover i {
  color: var(--tp-common-white);
}
.sidebar__search {
  position: relative;
}
.sidebar__search input {
  font-size: 14px;
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 25px;
  text-transform: capitalize;
  border: 1px solid #fff;
  outline: none;
  padding-right: 70px;
  border: 1px solid #e0dddc;
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}
.sidebar__search input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000;
}
.sidebar__search input::-moz-placeholder { /* Firefox 19+ */
  color: #000;
}
.sidebar__search input:-moz-placeholder { /* Firefox 4-18 */
  color: #000;
}
.sidebar__search input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: #000;
}
.sidebar__search input::placeholder { /* MODERN BROWSER */
  color: #000;
}
.sidebar__search input:focus {
  border: 1px solid var(--tp-theme-1);
}
.sidebar__search button {
  font-size: 16px;
  position: absolute;
  top: 0;
  right: 0px;
  width: 60px;
  height: 100%;
  line-height: 60px;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}
.sidebar__banner::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.sidebar__banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  background: var(--tp-common-white);
}
.sidebar__banner-content h4 {
  padding: 15px 20px;
  font-size: 24px;
  color: var(--tp-common-black);
  text-transform: uppercase;
  margin-bottom: 0;
}

.tagcloud a {
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  padding: 2px 15px;
  margin-right: 5px;
  background-color: var(--tp-common-white);
  margin-bottom: 14px;
  display: inline-block;
}
.tagcloud a:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}
.tagcloud a.active {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}

/*----------------------------------------*/
/*  5.1 blog css
/*----------------------------------------*/
.tp-blog-item {
  height: 100%;
  line-height: 0;
  background-color: var(--tp-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .tp-blog-item {
    flex-wrap: wrap;
  }
}
.tp-blog-item:hover .tp-blog-thumb img {
  transform: scale(1.2) rotate(-2deg);
}
.tp-blog-item:hover .tp-blog-thumb::after {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.tp-blog-thumb {
  overflow: hidden;
  position: relative;
  height: 100%;
  flex: 0 0 auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .tp-blog-thumb {
    width: 100%;
  }
}
.tp-blog-thumb img {
  transition: 1.3s all ease;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .tp-blog-thumb img {
    width: 100%;
  }
}
.tp-blog-thumb::after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.tp-blog-meta span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--tp-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog-meta span {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .tp-blog-meta span {
    font-size: 9px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-blog-meta span {
    font-size: 12px;
  }
}
.tp-blog-meta span:not(:last-child) {
  margin-right: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-blog-meta span:not(:last-child) {
    margin-right: 20px;
  }
}
.tp-blog-meta span svg {
  display: inline-block;
  margin-right: 5px;
  transform: translateY(-3px);
}
.tp-blog-title {
  margin-right: 50px;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-blog-title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-blog-title {
    font-size: 21px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-title {
    font-size: 22px;
  }
  .tp-blog-title br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog-title {
    font-size: 25px;
  }
  .tp-blog-title br {
    display: none;
  }
}
@media (max-width: 767px) {
  .tp-blog-title {
    font-size: 19px;
    margin-right: 0px;
  }
  .tp-blog-title br {
    display: none;
  }
}
@media only screen and (min-width: 440px) and (max-width: 575px) {
  .tp-blog-title {
    font-size: 22px;
  }
}
.tp-blog-title a {
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#000000, #000000), linear-gradient(#000000, #000000);
}
.tp-blog-title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-blog-content {
  padding: 27px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-content {
    padding: 27px;
    padding-bottom: 40px;
  }
}
.tp-blog-big-text {
  position: absolute;
  content: "";
  top: 25%;
  right: 10.6%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-blog-big-text {
    right: 9.6%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-blog-big-text {
    right: 7.6%;
  }
}
.tp-blog-big-text h6 {
  color: var(--tp-theme-1);
  font-size: 148px;
  font-style: normal;
  font-weight: 700;
  opacity: 0.05;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-blog-big-text h6 {
    font-size: 130px;
  }
}
.tp-blog-big-text-2 {
  position: absolute;
  content: "";
  bottom: 5%;
  left: 8.6%;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-blog-big-text-2 {
    left: 3%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-blog-big-text-2 {
    left: 1%;
    bottom: 3%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-blog-big-text-2 {
    left: 1%;
  }
}
.tp-blog-big-text-2 h6 {
  color: var(--tp-theme-1);
  font-size: 148px;
  font-style: normal;
  font-weight: 700;
  opacity: 0.05;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-blog-big-text-2 h6 {
    font-size: 130px;
  }
}
.tp-blog-big-text-3 {
  position: absolute;
  content: "";
  top: 3%;
  left: 5.6%;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-blog-big-text-3 {
    left: 2%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-blog-big-text-3 {
    left: 0.5%;
  }
}
.tp-blog-big-text-3 h6 {
  color: var(--tp-theme-1);
  font-size: 118px;
  font-style: normal;
  font-weight: 700;
  opacity: 0.05;
}
.tp-blog-arrow-box {
  position: absolute;
  top: -27%;
  right: 0;
  z-index: 9;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-arrow-box {
    top: -9%;
  }
}
.tp-blog-arrow-box button {
  color: var(--tp-common-black);
}
.tp-blog-arrow-box button.blog-prev {
  margin-right: 75px;
  position: relative;
}
.tp-blog-arrow-box button.blog-prev::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -20px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid var(--tp-common-black);
  transform: translateY(-50%);
}
.tp-blog-arrow-box button.blog-next {
  position: relative;
}
.tp-blog-arrow-box button.blog-next::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -20px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid var(--tp-common-black);
  transform: translateY(-50%);
}

.tp-blog-2-item {
  padding: 20px 0;
  border-top: 1px solid rgba(166, 161, 130, 0.4);
}
.tp-blog-2-item.item-border {
  border-bottom: 1px solid rgba(166, 161, 130, 0.4);
}
.tp-blog-2-item:hover .tp-blog-2-thumb img {
  transform: scale(1.2) rotate(-2deg);
}
.tp-blog-2-item:hover .tp-blog-2-thumb::after {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-blog-2-title-box {
    margin-bottom: 30px;
  }
}
.tp-blog-2-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.3;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-blog-2-title {
    font-size: 22px;
  }
  .tp-blog-2-title br {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-2-title {
    font-size: 18px;
  }
  .tp-blog-2-title br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog-2-title {
    font-size: 27px;
  }
}
@media (max-width: 767px) {
  .tp-blog-2-title {
    font-size: 22px;
  }
  .tp-blog-2-title br {
    display: none;
  }
}
.tp-blog-2-title a {
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#000000, #000000), linear-gradient(#000000, #000000);
}
.tp-blog-2-title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-blog-2-middle-box {
  margin-left: -40px;
  padding-right: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-blog-2-middle-box {
    margin-left: 30px;
    margin-right: -30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-2-middle-box {
    margin-left: 0;
    padding-right: 0;
    margin-right: 0;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog-2-middle-box {
    margin-left: 0;
    padding-right: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .tp-blog-2-middle-box {
    margin-left: 0;
    padding-right: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .tp-blog-2-middle-box .tp-blog-meta {
    margin-bottom: 30px;
  }
}
.tp-blog-2-middle-box .tp-blog-meta span {
  display: block;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-blog-2-middle-box .tp-blog-meta span {
    display: inline-block;
    font-size: 13px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-2-middle-box .tp-blog-meta span {
    display: inline-block;
    margin-right: 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog-2-middle-box .tp-blog-meta span {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .tp-blog-2-middle-box .tp-blog-meta span {
    font-size: 12px;
  }
}
.tp-blog-2-middle-box .tp-blog-meta span:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-blog-2-middle-box .tp-blog-meta span:not(:last-child) {
    margin-bottom: 8px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .tp-blog-2-middle-box .tp-blog-meta span:not(:last-child) {
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-blog-2-top-text p {
    font-size: 14px;
  }
}
.tp-blog-2-thumb {
  overflow: hidden;
  position: relative;
}
.tp-blog-2-thumb a {
  display: inline-block;
}
.tp-blog-2-thumb img {
  transition: 0.7s all ease;
}
.tp-blog-2-thumb::after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.tp-blog-style-2 .tp-blog-item {
  flex-wrap: wrap;
  background-color: transparent;
  overflow: hidden;
}
.tp-blog-style-2 .tp-blog-content {
  padding: 22px 0;
  background-color: transparent;
}
.tp-blog-style-2 .tp-blog-title {
  margin-right: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-style-2 .tp-blog-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .tp-blog-style-2 .tp-blog-title {
    font-size: 21px;
  }
}
.tp-blog-style-2 .tp-btn-border-lg.grey-border-2:hover {
  background-color: var(--tp-common-black);
}
.tp-blog-style-2 .tp-btn-border-lg.grey-border-2:hover span {
  color: var(--tp-common-white);
}
.tp-blog-style-2 .tp-blog-meta span {
  position: relative;
  padding-left: 110px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-blog-style-2 .tp-blog-meta span {
    padding-left: 90px;
  }
}
.tp-blog-style-2 .tp-blog-meta span::after {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 96px;
  height: 1px;
  background-color: var(--tp-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-blog-style-2 .tp-blog-meta span::after {
    width: 65px;
  }
}

.tp-blog-style-3 .tp-blog-meta span {
  padding-left: 0;
  display: inline-block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-blog-style-3 .tp-blog-meta span {
    font-size: 11px;
  }
}
.tp-blog-style-3 .tp-blog-meta span::after {
  display: none;
}
.tp-blog-style-3 .tp-blog-item:hover .tp-blog-thumb img {
  transform: scale(1.04) translateX(1.5%);
}
.tp-blog-style-3 .tp-blog-thumb {
  flex: auto;
  margin-right: 0;
}
.tp-blog-style-3 .tp-blog-thumb img {
  transform: scale(1.04) translateX(-1.5%);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.tp-blog-style-3 .tp-blog-title {
  font-size: 28px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-blog-style-3 .tp-blog-title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-blog-style-3 .tp-blog-title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-style-3 .tp-blog-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog-style-3 .tp-blog-title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .tp-blog-style-3 .tp-blog-title {
    font-size: 21px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-blog-style-3 .tp-blog-title {
    font-size: 24px;
  }
}
.tp-blog-style-3 .tp-blog-link a {
  color: var(--tp-common-black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  display: inline-block;
  line-height: 28px;
}

/*----------------------------------------*/
/*  6.1 Footer Style 1
/*----------------------------------------*/
.tp-footer-logo {
  padding-bottom: 28px;
}
.tp-footer-input-box {
  position: relative;
}
.tp-footer-input-box input {
  height: 56px;
  line-height: 56px;
  color: #54595F;
  padding-right: 70px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.tp-footer-input-box input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--tp-common-black);
}
.tp-footer-input-box input::-moz-placeholder { /* Firefox 19+ */
  color: var(--tp-common-black);
}
.tp-footer-input-box input:-moz-placeholder { /* Firefox 4-18 */
  color: var(--tp-common-black);
}
.tp-footer-input-box input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: var(--tp-common-black);
}
.tp-footer-input-box input::placeholder { /* MODERN BROWSER */
  color: var(--tp-common-black);
}
.tp-footer-icon {
  position: absolute;
  top: 0;
  right: 0;
}
.tp-footer-icon span {
  height: 56px;
  width: 54px;
  line-height: 56px;
  display: inline-block;
  text-align: center;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-footer-text p {
    font-size: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-footer-text p {
    margin-right: -20px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-footer-text p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-footer-text-2 p {
    font-size: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-footer-text-2 p {
    font-size: 14px;
  }
}
.tp-footer-list ul li {
  list-style-type: none;
}
.tp-footer-list ul li:not(:last-child) {
  margin-bottom: 10px;
}
.tp-footer-list ul li a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  position: relative;
  margin-left: 20px;
  transform: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-footer-list ul li a {
    font-size: 14px;
  }
}
.tp-footer-list ul li a::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -20px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: rgba(84, 89, 95, 0.2);
}
.tp-footer-list ul li a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -20px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  background-color: var(--tp-common-black);
  transition: 0.3s;
}
.tp-footer-list ul li a:hover::before {
  transform: translateY(-50%) scale(1);
}
.tp-footer-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  padding-top: 10px;
  margin-bottom: 28px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-footer-title {
    font-size: 21px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-footer-title {
    font-size: 20px;
  }
}
.tp-footer-contact ul li {
  list-style-type: none;
  position: relative;
  padding-left: 23px;
}
.tp-footer-contact ul li:not(:last-child) {
  margin-bottom: 12px;
}
.tp-footer-contact ul li span {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--tp-theme-1);
}
.tp-footer-contact ul li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.5s linear;
  background-image: linear-gradient(#A6A182, #A6A182), linear-gradient(#A6A182, #A6A182);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-footer-contact ul li a {
    font-size: 14px;
  }
}
.tp-footer-contact ul li a:hover {
  background-size: 0% 1px, 100% 1px;
}

.tp-footer-style-2 .tp-footer-title {
  color: var(--tp-common-white);
}
.tp-footer-style-2 .tp-footer-text p {
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-footer-style-2 .tp-footer-text p {
    padding-right: 75px;
  }
}
.tp-footer-style-2 .tp-footer-text-2 p {
  color: rgba(255, 255, 255, 0.7);
}
.tp-footer-style-2 .tp-footer-contact ul li a {
  color: rgba(255, 255, 255, 0.7);
  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7));
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-footer-style-2 .tp-footer-contact ul li a {
    font-size: 14px;
  }
}
.tp-footer-style-2 .tp-footer-list ul li {
  position: relative;
}
.tp-footer-style-2 .tp-footer-list ul li a {
  padding-left: 20px;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.7);
}
.tp-footer-style-2 .tp-footer-list ul li a i {
  position: absolute;
  top: 7px;
  left: 0;
  font-size: 14px;
  color: var(--tp-theme-1);
  font-weight: 400;
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-footer-style-2 .tp-footer-list ul li a {
    font-size: 14px;
  }
}
.tp-footer-style-2 .tp-footer-list ul li a::after {
  display: none;
}
.tp-footer-style-2 .tp-footer-list ul li a::before {
  display: none;
}
.tp-footer-style-2 .tp-footer-list ul li a:hover i {
  color: var(--tp-common-white);
}
.tp-footer-style-2 .tp-footer-input-box {
  position: relative;
  width: 244px;
}
.tp-footer-style-2 .tp-footer-input-box input {
  border: 1px solid #54595F;
  color: var(--tp-common-white);
}
.tp-footer-style-2 .tp-footer-input-box input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--tp-common-white);
}
.tp-footer-style-2 .tp-footer-input-box input::-moz-placeholder { /* Firefox 19+ */
  color: var(--tp-common-white);
}
.tp-footer-style-2 .tp-footer-input-box input:-moz-placeholder { /* Firefox 4-18 */
  color: var(--tp-common-white);
}
.tp-footer-style-2 .tp-footer-input-box input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: var(--tp-common-white);
}
.tp-footer-style-2 .tp-footer-input-box input::placeholder { /* MODERN BROWSER */
  color: var(--tp-common-white);
}
.tp-footer-style-2 .tp-footer-logo {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.tp-footer-style-2 .tp-footer-logo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 122%;
  background-color: var(--tp-theme-1);
}
.tp-footer-style-2 .tp-footer-title {
  position: relative;
  display: inline-block;
  padding-bottom: 21px;
  margin-bottom: 28px;
  overflow: hidden;
}
.tp-footer-style-2 .tp-footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 110%;
  background-color: var(--tp-theme-1);
}

.tp-footer-style-3 .tp-footer-logo::after {
  display: none;
}
.tp-footer-style-3 .tp-footer-title::after {
  position: absolute;
  content: "";
  top: 25px;
  left: -37px;
  height: 1px;
  width: 28px;
  background-color: var(--tp-theme-1);
}
.tp-footer-style-3 .tp-footer-list ul li a {
  padding-left: 0;
}
.tp-footer-style-3 .tp-footer-list ul li a:hover {
  color: var(--tp-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-footer-style-3 .tp-footer-text p {
    margin-right: -20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-footer-style-3 .tp-footer-text p {
    padding-right: 15px;
    margin-right: 0;
  }
}
.tp-footer-style-3 .tp-footer-contact ul li {
  padding-left: 0;
}
.tp-footer-style-3 .tp-footer-social {
  padding-top: 20px;
  position: relative;
}
.tp-footer-style-3 .tp-footer-social::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 1px;
  width: 202px;
  background-color: rgba(166, 161, 130, 0.6);
}
.tp-footer-style-3 .tp-footer-social a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  margin-right: 7px;
  color: var(--tp-common-white);
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}
.tp-footer-style-3 .tp-footer-social a:hover {
  background-color: var(--tp-theme-1);
}

.tp-footer-style-4 .tp-footer-title {
  padding-bottom: 0;
  margin-bottom: 30px;
}
.tp-footer-style-4 .tp-footer-title::after {
  display: none;
}
.tp-footer-style-4 .tp-footer-input-box {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-footer-style-4 .tp-footer-text p {
    padding-right: 60px;
  }
}
.tp-footer-style-4 .tp-footer-widge-style-2 .tp-footer-list ul li a {
  padding-left: 0;
}
.tp-footer-style-4 .tp-footer-widge-style-2 .tp-footer-list ul li a:hover {
  color: var(--tp-common-white);
}
.tp-footer-style-4 .tp-footer-widge-style-2 .tp-footer-contact ul li {
  padding-left: 80px;
  position: relative;
}
.tp-footer-style-4 .tp-footer-widge-style-2 .tp-footer-contact ul li:nth-child(2) {
  padding-left: 70px;
}
.tp-footer-style-4 .tp-footer-widge-style-2 .tp-footer-contact ul li:nth-child(3) {
  padding-left: 50px;
}
.tp-footer-style-4 .tp-footer-widge-style-2 .tp-footer-contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.tp-footer-style-4 .tp-footer-widge-style-2 .tp-footer-contact ul li span {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--tp-common-white);
}

.tp-footer-style-5 .tp-footer-list ul li a {
  padding-left: 0;
}
.tp-footer-style-5 .tp-footer-list ul li a:hover {
  color: var(--tp-common-white);
}
.tp-footer-style-5 .tp-footer-title {
  padding-top: 6px;
  margin-bottom: 30px;
  padding-bottom: 0;
}
.tp-footer-style-5 .tp-footer-title::after {
  display: none;
}
.tp-footer-style-5 .tp-footer-logo {
  padding-bottom: 0;
}
.tp-footer-style-5 .tp-footer-logo::after {
  display: none;
}
.tp-footer-style-5 .tp-footer-contact ul li {
  padding-left: 0px;
}
.tp-footer-style-5 .tp-footer-input-box {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-footer-style-5 .tp-footer-text p {
    padding-right: 76px;
  }
}

.tp-copyright-border {
  border-top: 1px solid rgba(84, 89, 95, 0.2);
}
.tp-copyright-height {
  padding: 17px 0;
}
.tp-copyright-left p {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  margin-bottom: 0;
}
.tp-copyright-right a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  transition: 0.3s;
  position: relative;
}
.tp-copyright-right a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  left: auto;
  height: 1px;
  width: 0;
  background-color: var(--tp-theme-1);
  transition: 0.7s;
  display: inline-block;
}
.tp-copyright-right a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.tp-copyright-right a:not(:last-child) {
  margin-right: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-copyright-right a:not(:last-child) {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-copyright-right a:not(:last-child) {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .tp-copyright-right a:not(:last-child) {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-copyright-left-pt {
    margin-bottom: 10px;
  }
}

.tp-copyright-style-2.tp-copyright-border {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.tp-copyright-style-2.tp-copyright-height {
  padding: 27px 0;
}
.tp-copyright-style-2.tp-copyright-height-2 {
  padding: 30px 0;
}
.tp-copyright-style-2 .tp-copyright-left p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-copyright-style-2 .tp-copyright-left p {
    font-size: 14px;
  }
}
.tp-copyright-style-2 .tp-copyright-right a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-copyright-style-2 .tp-copyright-right a {
    font-size: 14px;
  }
}
.tp-copyright-style-2 .tp-copyright-right a::after {
  background-color: rgba(255, 255, 255, 0.72);
}
.tp-copyright-style-2 .tp-copyright-right a:not(:last-child) {
  margin-right: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-copyright-style-2 .tp-copyright-right a:not(:last-child) {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-copyright-style-2 .tp-copyright-right a:not(:last-child) {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .tp-copyright-style-2 .tp-copyright-logo {
    margin-bottom: 20px;
  }
}

.footer-cols-1 {
  margin-right: 116px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-cols-1 {
    margin-right: 95px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-cols-1 {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-cols-1 {
    margin-right: 60px;
  }
}
@media (max-width: 767px) {
  .footer-cols-1 {
    margin-right: 0px;
  }
}

.footer-cols-2 {
  margin-left: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-cols-2 {
    margin-left: 77px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-cols-2 {
    margin-left: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-cols-2 {
    margin-left: 30px;
  }
}

.footer-cols-3 {
  transform: translateX(100px);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-cols-3 {
    transform: translateX(70px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-cols-3 {
    transform: translateX(0px);
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-cols-4 {
    margin-left: 30px;
  }
}

.footer-cols-2-2 {
  padding-left: 92px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-cols-2-2 {
    padding-left: 0;
    margin-left: -30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-cols-2-2 {
    padding-left: 0;
  }
}

.footer-cols-2-3 {
  margin-left: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-cols-2-3 {
    margin-left: -20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-cols-2-3 {
    margin-left: 0px;
  }
}

.footer-cols-3-2 {
  padding-left: 145px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-cols-3-2 {
    padding-left: 112px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-cols-3-2 {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-cols-3-2 {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .footer-cols-3-2 {
    padding-left: 0px;
  }
}

.footer-cols-3-3 {
  padding-left: 110px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-cols-3-3 {
    padding-left: 95px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-cols-3-3 {
    padding-left: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-cols-3-3 {
    padding-left: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-cols-3-4 {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .footer-cols-3-4 {
    padding-left: 0px;
  }
}

.footer-cols-4-2 {
  padding-left: 130px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-cols-4-2 {
    padding-left: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-cols-4-2 {
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .footer-cols-4-2 {
    padding-left: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-cols-4-2 {
    padding-left: 30px;
  }
}

.footer-cols-4-3 {
  padding-left: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-cols-4-3 {
    padding-left: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-cols-4-3 {
    padding-left: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-cols-4-4 {
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .footer-cols-4-4 {
    padding-left: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-cols-4-4 {
    padding-left: 30px;
  }
}

.footer-cols-5-2 {
  padding-left: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-cols-5-2 {
    padding-left: 0;
  }
}

.footer-cols-5-3 {
  margin-left: -25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-cols-5-3 {
    margin-left: 0;
  }
}

/*----------------------------------------*/
/*  7.17 slider css start
/*----------------------------------------*/
.tp-slider-height {
  padding-top: 315px;
  padding-bottom: 270px;
  position: relative;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-slider-height {
    padding-top: 280px;
    padding-bottom: 230px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-height {
    padding-top: 270px;
    padding-bottom: 240px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-height {
    padding-top: 260px;
    padding-bottom: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-height {
    padding-top: 220px;
    padding-bottom: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-height {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}
@media (max-width: 767px) {
  .tp-slider-height {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-height {
    padding-top: 160px;
    padding-bottom: 140px;
  }
}
.tp-slider-height::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.6;
  background: #000;
  z-index: -1;
}
.tp-slider-title {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-title {
    font-size: 64px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-title {
    font-size: 53px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-title {
    font-size: 54px;
  }
  .tp-slider-title br {
    display: none;
  }
}
@media (max-width: 767px) {
  .tp-slider-title {
    font-size: 34px;
  }
  .tp-slider-title br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-title {
    font-size: 48px;
  }
}
@media only screen and (min-width: 440px) and (max-width: 575px) {
  .tp-slider-title {
    font-size: 40px;
  }
}
.tp-slider-title span {
  color: var(--tp-theme-1);
}
.tp-slider-content p {
  color: var(--tp-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-content p {
    font-size: 15px;
    margin-right: 190px;
  }
  .tp-slider-content p br {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-content p {
    font-size: 14px;
    margin-right: 40px;
  }
  .tp-slider-content p br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-content p {
    font-size: 14px;
    margin-right: 140px;
  }
  .tp-slider-content p br {
    display: none;
  }
}
@media (max-width: 767px) {
  .tp-slider-content p {
    font-size: 12px;
  }
  .tp-slider-content p br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-content p {
    font-size: 14px;
    margin-right: 100px;
  }
}
.tp-slider-icon {
  position: absolute;
  right: 455px;
  bottom: 345px;
  z-index: 2;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-slider-icon {
    right: 290px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-icon {
    right: 230px;
    transform: scale(0.9);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-icon {
    bottom: 340px;
    right: 140px;
    transform: scale(0.8);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-icon {
    bottom: 340px;
    right: 140px;
    transform: scale(0.7);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-slider-icon {
    display: none;
  }
}
.tp-slider-icon span {
  height: 133px;
  width: 133px;
  line-height: 133px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background-color: var(--tp-theme-1);
  position: relative;
  animation: tp-rotate-center 1.9s infinite alternate;
}
.tp-slider-icon span::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 60%;
  height: 60%;
  border: 1px solid var(--tp-theme-1);
  animation: borderanimate2 2.3s linear infinite;
  border-radius: 50%;
}
.tp-slider-icon span svg {
  color: var(--tp-common-white);
}
.tp-slider-funfact-wrap {
  position: absolute;
  right: 315px;
  bottom: 40px;
  z-index: 2;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-slider-funfact-wrap {
    right: 150px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-funfact-wrap {
    right: 80px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-funfact-wrap {
    right: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-funfact-wrap {
    right: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-funfact-wrap {
    right: -30px;
    transform: scale(0.7);
  }
}
@media (max-width: 767px) {
  .tp-slider-funfact-wrap {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-funfact-wrap {
    display: none;
  }
}
.tp-slider-funfact {
  padding: 60px 45px;
  padding-right: 0;
  width: 230px;
  border: 2px solid rgba(255, 255, 255, 0.22);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-funfact {
    padding: 40px 25px;
    padding-right: 0;
    width: 200px;
  }
}
.tp-slider-funfact h5 {
  color: var(--tp-common-white);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-funfact h5 {
    font-size: 20px;
  }
}
.tp-slider-funfact h5 i {
  font-style: normal;
}
.tp-slider-funfact span {
  color: var(--tp-common-white);
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-funfact span {
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-slider-2-content {
    margin-bottom: 80px;
  }
}
.tp-slider-2-content .tp-slider-title {
  line-height: 1.1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-2-content .tp-slider-title {
    font-size: 58px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-2-content .tp-slider-title {
    font-size: 44px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-2-content .tp-slider-title {
    font-size: 51px;
  }
}
@media (max-width: 767px) {
  .tp-slider-2-content .tp-slider-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-2-content .tp-slider-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 440px) and (max-width: 575px) {
  .tp-slider-2-content .tp-slider-title {
    font-size: 34px;
  }
}
.tp-slider-2-content .tp-hero-2-funfact-box {
  margin-right: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-2-content .tp-hero-2-funfact-box {
    margin-right: 200px;
  }
}
@media (max-width: 767px) {
  .tp-slider-2-content .tp-hero-2-funfact-box {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-2-content .tp-hero-2-funfact-box {
    margin-right: 140px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-2-content .tp-hero-2-funfact h5 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-2-content .tp-hero-2-funfact h5 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .tp-slider-2-content .tp-hero-2-funfact h5 {
    font-size: 24px;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-2-content .tp-hero-2-funfact h5 {
    font-size: 30px;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-2-content .tp-hero-2-funfact span {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .tp-slider-2-content .tp-hero-2-funfact span {
    font-size: 11px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-2-content .tp-hero-2-funfact span {
    font-size: 13px;
  }
}
.tp-slider-2-content p {
  margin-right: 120px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-2-content p {
    margin-right: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-2-content p {
    margin-right: 40px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-slider-2-content p {
    margin-right: 0px;
    font-size: 14px;
  }
}
.tp-slider-2-height {
  padding-top: 200px;
  padding-bottom: 145px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-2-height {
    padding-top: 190px;
    padding-bottom: 170px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-2-height {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-2-height {
    padding-top: 150px;
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .tp-slider-2-height {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.tp-slider-2-bg {
  position: relative;
}
.tp-slider-2-bg::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 30%;
  background-color: var(--tp-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-2-bg::after {
    width: 32%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-slider-2-bg::after {
    display: none;
  }
}
.tp-slider-2-active {
  margin-right: -545px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-2-active {
    margin-right: -480px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-2-active {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-2-active {
    margin-right: -370px;
  }
}
@media (max-width: 767px) {
  .tp-slider-2-active {
    margin-right: -205px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-2-active {
    margin-right: -405px;
  }
}
.tp-slider-2-wrapper {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-2-wrapper {
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .tp-slider-2-wrapper {
    margin-left: 15px;
    padding-left: 7px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-2-wrapper {
    margin-left: 25px;
    padding-left: 0px;
  }
}
.tp-slider-2-wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scale(1.08);
  border: 4px solid var(--tp-theme-1);
}
.tp-slider-2-wrapper .tp-slider-icon {
  right: -10%;
  bottom: 6%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-2-wrapper .tp-slider-icon {
    right: -5%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-2-wrapper .tp-slider-icon {
    right: 4%;
    bottom: -10%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-2-wrapper .tp-slider-icon {
    right: 4%;
    bottom: -10%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-2-wrapper .tp-slider-icon {
    display: block;
    right: 18%;
  }
}
.tp-slider-2-wrapper .tp-slider-icon span {
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: var(--tp-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-2-wrapper .tp-slider-icon span {
    height: 85px;
    width: 85px;
    line-height: 85px;
  }
}
.tp-slider-2-wrapper .tp-slider-icon span::after {
  border-color: var(--tp-common-white);
}
.tp-slider-2-wrapper .tp-slider-icon span svg {
  color: var(--tp-theme-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-2-wrapper .tp-slider-icon span svg {
    width: 30px;
  }
}

.tp-slider-3-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: left center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 2500ms ease-in, -webkit-transform 9000ms ease;
  transition: opacity 2500ms ease-in, -webkit-transform 9000ms ease;
  transition: transform 9000ms ease, opacity 2500ms ease-in;
  transition: transform 9000ms ease, opacity 2500ms ease-in, -webkit-transform 9000ms ease;
}
.tp-slider-3-overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
}
.tp-slider-3-height {
  padding-top: 227px;
  padding-bottom: 222px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-slider-3-height {
    padding-top: 180px;
    padding-bottom: 220px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-3-height {
    padding-top: 170px;
    padding-bottom: 200px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-3-height {
    padding-top: 180px;
    padding-bottom: 180px;
    background-position: right;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-3-height {
    padding-top: 170px;
    padding-bottom: 180px;
    background-position: left;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-3-height {
    padding-top: 170px;
    padding-bottom: 180px;
    background-position: center;
  }
}
@media (max-width: 767px) {
  .tp-slider-3-height {
    padding-top: 150px;
    padding-bottom: 160px;
    background-position: left;
  }
}
.tp-slider-3-height .tp-hero-2-funfact-box {
  position: absolute;
  right: 115px;
  bottom: 120px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-3-height .tp-hero-2-funfact-box {
    right: 5%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-3-height .tp-hero-2-funfact-box {
    right: 2%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-3-height .tp-hero-2-funfact-box {
    right: 2%;
    bottom: 160px;
  }
}
@media (max-width: 767px) {
  .tp-slider-3-height .tp-hero-2-funfact-box {
    display: none;
  }
}
.tp-slider-3-height .tp-hero-2-funfact-box::after {
  content: "";
  position: absolute;
  top: -5%;
  left: -43%;
  height: 111%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-3-height .tp-hero-2-funfact-box::after {
    left: -30%;
  }
}
.tp-slider-3-height .tp-hero-2-funfact:not(:last-child) {
  margin-bottom: 118px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-3-height .tp-hero-2-funfact:not(:last-child) {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-3-height .tp-hero-2-funfact:not(:last-child) {
    margin-bottom: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-slider-3-height .tp-hero-2-funfact:not(:last-child) {
    margin-bottom: 65px;
  }
}
.tp-slider-3-height .tp-hero-2-funfact h5 {
  color: var(--tp-common-white);
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-slider-3-height .tp-hero-2-funfact h5 {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-3-height .tp-hero-2-funfact h5 {
    font-size: 41px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-3-height .tp-hero-2-funfact h5 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-3-height .tp-hero-2-funfact h5 {
    font-size: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-slider-3-height .tp-hero-2-funfact h5 {
    font-size: 29px;
  }
}
.tp-slider-3-height .tp-hero-2-funfact span {
  color: var(--tp-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-slider-3-height .tp-hero-2-funfact span {
    font-size: 14px;
  }
}
.tp-slider-3-title {
  color: var(--tp-common-white);
  font-size: 110px;
  font-weight: 400;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-slider-3-title {
    font-size: 100px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-3-title {
    font-size: 85px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-3-title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-3-title {
    font-size: 72px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-3-title {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .tp-slider-3-title {
    font-size: 51px;
  }
}
.tp-slider-3-content {
  transform: translateY(200px);
  opacity: 0;
}
.tp-slider-3-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-3-content p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .tp-slider-3-content p {
    font-size: 14px;
  }
  .tp-slider-3-content p br {
    display: none;
  }
}
.tp-slider-3-content .tp-btn-black span svg {
  color: var(--tp-common-white);
}
.tp-slider-3-big-text {
  color: var(--tp-theme-1);
  font-family: Satisfy;
  font-size: 115px;
  font-weight: 400;
  margin-left: -70px;
  text-transform: capitalize;
  margin-bottom: 3px;
  font-family: var(--tp-ff-satisfy);
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-slider-3-big-text {
    font-size: 105px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-3-big-text {
    margin-left: -40px;
    font-size: 90px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-3-big-text {
    margin-left: 0px;
    font-size: 90px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-3-big-text {
    margin-left: 0px;
    font-size: 85px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-3-big-text {
    margin-left: 0px;
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .tp-slider-3-big-text {
    margin-left: 0px;
    font-size: 58px;
  }
}
.tp-slider-3-social {
  position: absolute;
  left: 50px;
  bottom: 40px;
  z-index: 2;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-3-social {
    left: 52px;
    bottom: 0px;
  }
}
.tp-slider-3-social::after {
  display: inline-block;
  content: "";
  height: 110px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.7);
  transform: translateX(7px);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-3-social::after {
    height: 40px;
  }
}
.tp-slider-3-social a {
  font-size: 20px;
  display: block;
  color: rgba(255, 255, 255, 0.5);
  margin: 19px 0;
  transition: 0.3s;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-3-social a {
    font-size: 14px;
    margin: 4px 0;
  }
}
.tp-slider-3-social a:hover {
  color: var(--tp-common-white);
}
.tp-slider-3-title-box {
  transform: translateY(-200px);
  opacity: 0;
}
.tp-slider-3-wrapper .swiper-slide-active .tp-slider-3-bg {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.tp-slider-3-wrapper .swiper-slide-active .tp-slider-3-title-box {
  opacity: 1;
  transform: translateY(0px);
  transition: all 2500ms ease;
}
.tp-slider-3-wrapper .swiper-slide-active .tp-slider-3-content {
  opacity: 1;
  transform: translateY(0px);
  transition: all 2500ms ease;
}

.tp-slider-dots {
  position: absolute;
  bottom: 62px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.tp-slider-dots .swiper-pagination-bullet {
  height: 2px;
  width: 100px;
  position: relative;
  display: inline-block;
  background-color: rgba(217, 217, 217, 0.3);
  margin: 0 5px;
  opacity: 1;
  border-radius: 0;
  transition: 0.4s;
}
@media (max-width: 767px) {
  .tp-slider-dots .swiper-pagination-bullet {
    width: 38px;
  }
}
.tp-slider-dots .swiper-pagination-bullet-active {
  background-color: #d9d9d9;
}
.tp-slider-dots .swiper-pagination-bullet-active::after {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------*/
/*  7.10 hero css start
/*----------------------------------------*/
.tp-hero-pt {
  padding-top: 190px;
}
.tp-hero-thumb {
  position: relative;
  overflow: hidden;
}
.tp-hero-thumb:hover::after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.tp-hero-thumb::after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  pointer-events: none;
}
.tp-hero-title {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.1;
  padding-bottom: 57px;
  color: rgba(0, 0, 0, 0.8);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-hero-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-title {
    font-size: 54px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .tp-hero-title {
    font-size: 32px;
    padding-bottom: 30px;
  }
  .tp-hero-title br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-title {
    font-size: 35px;
  }
}
.tp-hero-title span {
  padding: 0 50px;
  height: 55px;
  border-radius: 40px;
  display: inline-block;
  transform: translateY(12px);
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-title span {
    padding: 0 38px;
    height: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-title span {
    padding: 0 32px;
    height: 41px;
    transform: translateY(5px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-title span {
    padding: 0 28px;
    height: 30px;
    transform: translateY(5px);
  }
}
@media (max-width: 767px) {
  .tp-hero-title span {
    padding: 0 25px;
    height: 28px;
    transform: translateY(5px);
  }
}
.tp-hero-title span svg {
  transform: translateY(-16px);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-hero-title span svg {
    transform: translateY(-11px);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-title span svg {
    width: 27px;
    transform: translateY(-12px);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-title span svg {
    width: 22px;
    transform: translateY(-9px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-title span svg {
    width: 16px;
    transform: translateY(-9px);
  }
}
@media (max-width: 767px) {
  .tp-hero-title span svg {
    width: 16px;
    transform: translateY(-7px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-title span svg {
    transform: translateY(-9px);
  }
}
.tp-hero-contact-box {
  animation: jumpTwo 4s infinite linear;
  padding: 25px 26px;
  padding-left: 42px;
  padding-bottom: 30px;
  background-color: var(--tp-common-white);
  border-top: 4px solid var(--tp-theme-1);
  box-shadow: 0px 6px 25px 0px rgba(0, 0, 0, 0.05);
}
.tp-hero-contact-box span {
  display: block;
  color: #184037;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 10px;
}
.tp-hero-contact-box a {
  display: block;
  color: #184037;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
.tp-hero-contact-box a::after {
  content: "";
  position: absolute;
  bottom: 3px;
  right: 0;
  left: auto;
  height: 1px;
  width: 0;
  background-color: #184037;
  transition: 0.7s;
  display: inline-block;
}
.tp-hero-contact-box a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.tp-hero-contact-wrap {
  position: absolute;
  top: 58px;
  right: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-contact-wrap {
    transform: scale(0.9);
    top: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-contact-wrap {
    transform: scale(0.8);
    top: 20px;
  }
}
@media (max-width: 767px) {
  .tp-hero-contact-wrap {
    transform: scale(0.5);
    top: 69px;
    right: -15%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-contact-wrap {
    transform: scale(0.7);
    top: 199px;
    right: -4%;
  }
}
@media only screen and (min-width: 440px) and (max-width: 575px) {
  .tp-hero-contact-wrap {
    top: 103px;
    right: -10%;
    transform: scale(0.6);
  }
}
.tp-hero-funfact-box {
  padding: 40px 33px;
  padding-bottom: 30px;
  background-color: var(--tp-common-white);
  animation: tptranslateX2 2.5s infinite alternate;
  box-shadow: 0px 6px 25px 0px rgba(0, 0, 0, 0.05);
}
.tp-hero-funfact-wrap {
  position: absolute;
  bottom: 25px;
  left: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-funfact-wrap {
    transform: scale(0.9);
    bottom: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-funfact-wrap {
    transform: scale(0.8);
    bottom: 0px;
  }
}
@media (max-width: 767px) {
  .tp-hero-funfact-wrap {
    transform: scale(0.5);
    bottom: -90%;
    left: -11%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-funfact-wrap {
    transform: scale(0.7);
    bottom: -44%;
    left: -1%;
  }
}
@media only screen and (min-width: 440px) and (max-width: 575px) {
  .tp-hero-funfact-wrap {
    bottom: -51%;
    left: -8%;
    transform: scale(0.6);
  }
}
.tp-hero-funfact h5 {
  color: var(--tp-theme-1);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0;
}
.tp-hero-funfact h5 i {
  font-style: normal;
}
.tp-hero-funfact span {
  color: var(--tp-common-black);
  font-size: 16px;
  font-weight: 400;
}

.tp-hero-2-height {
  padding-top: 185px;
  padding-bottom: 72px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-2-height .tp-slider-title {
    font-size: 56px;
  }
}
.tp-hero-2-shape-1 {
  position: absolute;
  bottom: 0;
  left: -2%;
  z-index: 1;
  animation: tptranslateX2 2.5s infinite alternate;
}
@media (max-width: 767px) {
  .tp-hero-2-shape-1 {
    left: -11%;
  }
}
.tp-hero-2-shape-2 {
  position: absolute;
  bottom: 46px;
  left: 30px;
}
.tp-hero-2-shape-3 {
  position: absolute;
  bottom: 70px;
  right: 20px;
  animation: tpswing 1s forwards infinite alternate;
  transform-origin: top center;
}
@media (max-width: 767px) {
  .tp-hero-2-shape-3 {
    right: 0;
  }
}
@media (max-width: 767px) {
  .tp-hero-2-shape-3 img {
    transform: scale(0.6);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-2-shape-3 img {
    transform: scale(0.8);
  }
}
.tp-hero-2-content {
  padding-top: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-hero-2-content {
    margin-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-2-content p {
    font-size: 14px;
    padding-right: 180px;
  }
}
@media (max-width: 767px) {
  .tp-hero-2-content p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .tp-hero-2-funfact {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-2-funfact {
    margin-bottom: 0px;
  }
}
.tp-hero-2-funfact h5 {
  font-size: 48px;
  font-weight: 700;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-2-funfact h5 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .tp-hero-2-funfact h5 {
    font-size: 30px;
  }
}
.tp-hero-2-funfact h5 i {
  font-style: normal;
}
.tp-hero-2-funfact span {
  color: rgba(0, 0, 0, 0.7);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.tp-hero-2-funfact-box {
  padding-top: 60px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-hero-2-funfact-box {
    padding-top: 50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-2-funfact-box {
    padding-top: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-2-funfact-box {
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .tp-hero-2-funfact-box {
    padding-top: 40px;
    flex-wrap: wrap;
  }
}
.tp-hero-2-thumb img {
  border-radius: 62% 47% 82% 35%/45% 45% 80% 66%;
  will-change: border-radius, transform, opacity;
  display: inline-block;
}

/*----------------------------------------*/
/*  7.15 project css start
/*----------------------------------------*/
.tp-project-filter button {
  color: #24231D;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
  margin: 0 12px;
  border: 1px solid var(--tp-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-project-filter button {
    height: 50px;
    line-height: 50px;
    padding: 0 24px;
    margin: 0 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-project-filter button {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    margin: 0 5px;
  }
}
@media (max-width: 767px) {
  .tp-project-filter button {
    height: 45px;
    line-height: 45px;
    padding: 0 20px;
    margin: 0 5px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-project-filter button {
    padding: 0 35px;
  }
}
.tp-project-filter button:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}
.tp-project-filter button.active {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
}
.tp-project-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--tp-common-white);
}
.tp-project-title a {
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
}
.tp-project-title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-project-content {
  position: absolute;
  bottom: -16%;
  left: 5%;
  padding: 45px 40px;
  padding-right: 47px;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.tp-project-content p {
  color: var(--tp-common-white);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}
.tp-project-item-wrap {
  margin-bottom: 80px;
}
.tp-project-item-wrap:hover .tp-project-content {
  opacity: 1;
  visibility: visible;
}

.tp-project-style-2 .tp-project-content {
  padding: 32px 27px;
  padding-bottom: 30px;
  display: inline-block;
  left: auto;
  right: 0;
  -webkit-transform-origin: right;
  -khtml-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  -o-transform-origin: right;
  transform-origin: right;
  -webkit-transform: translateY(-50%) perspective(250px) rotateY(-90deg);
  -khtml-transform: translateY(-50%) perspective(250px) rotateY(-90deg);
  -moz-transform: translateY(-50%) perspective(250px) rotateY(-90deg);
  -ms-transform: translateY(-50%) perspective(250px) rotateY(-90deg);
  -o-transform: translateY(-50%) perspective(250px) rotateY(-90deg);
  transform: translateY(-50%) perspective(250px) rotateY(-90deg);
  bottom: -8%;
}
@media (max-width: 767px) {
  .tp-project-style-2 .tp-project-item-wrap {
    margin-bottom: 30px;
  }
}
.tp-project-style-2 .tp-project-item-wrap:hover .tp-project-content {
  -webkit-transform: translateY(-50%) perspective(250px) rotateY(0deg);
  -khtml-transform: translateY(-50%) perspective(250px) rotateY(0deg);
  -moz-transform: translateY(-50%) perspective(250px) rotateY(0deg);
  -ms-transform: translateY(-50%) perspective(250px) rotateY(0deg);
  -o-transform: translateY(-50%) perspective(250px) rotateY(0deg);
  transform: translateY(-50%) perspective(250px) rotateY(0deg);
}
.tp-project-style-2 .tp-project-item-wrap:hover .tp-project-thumb {
  width: 87%;
}
.tp-project-style-2 .tp-project-item-wrap:hover .tp-project-thumb img {
  transform: scale(1.1);
  -webkit-filter: brightness(0.8) contrast(1.1) saturate(1.2);
  filter: brightness(0.8) contrast(1.1) saturate(1.2);
}
.tp-project-style-2 .tp-project-thumb {
  width: 100%;
  height: 100%;
  width: calc(100% - 0px);
  transition: 0.9s;
}
.tp-project-style-2 .tp-project-thumb img {
  transition: 0.9s;
  height: 520px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-project-style-2 .tp-project-thumb img {
    height: 480px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-project-style-2 .tp-project-thumb img {
    height: 450px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-project-style-2 .tp-project-thumb img {
    height: 420px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-project-style-2 .tp-project-thumb img {
    height: 370px;
  }
}
@media (max-width: 767px) {
  .tp-project-style-2 .tp-project-thumb img {
    height: 300px;
  }
}
.tp-project-style-2 .tp-project-item {
  overflow: hidden;
  position: relative;
}
.tp-project-style-2 .tp-project-title {
  margin-bottom: 30px;
}

.tp-project-2-title a {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.5s linear;
  background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-2-title a {
    font-size: 18px;
  }
}
.tp-project-2-title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-project-2-item {
  transition: 0.5s;
}
.tp-project-2-item:hover .tp-project-2-thumb img {
  transform: scale(1.1);
}
.tp-project-2-thumb {
  overflow: hidden;
  position: relative;
}
.tp-project-2-thumb img {
  transition: 1.3s all ease;
}
.tp-project-2-thumb::after {
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}
.tp-project-2-thumb:hover::after {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
.tp-project-2-active {
  padding: 50px 0;
  margin: -50px 0;
}
.tp-project-2-active .swiper-slide.swiper-slide-active .tp-project-2-item {
  transform: translateY(40px);
}

.tp-project-dots .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  background-color: var(--tp-common-black);
  margin: 0 7px;
  opacity: 1;
}
.tp-project-dots .swiper-pagination-bullet::after {
  position: absolute;
  content: "";
  top: 45%;
  left: 50%;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 1px solid var(--tp-theme-1);
  transform: translate(-50%, -50%) scale(2);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.tp-project-dots .swiper-pagination-bullet-active {
  background-color: var(--tp-theme-1);
}
.tp-project-dots .swiper-pagination-bullet-active::after {
  opacity: 1;
  visibility: visible;
}

.tp-project-3-item {
  overflow: hidden;
}
.tp-project-3-item.active .tp-project-3-content {
  transform: perspective(400px) rotateX(0deg);
}
.tp-project-3-item.active .tp-project-3-thumb::after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.tp-project-3-item.active .tp-project-3-thumb img {
  transform: scale(1.1);
}
.tp-project-3-thumb {
  overflow: hidden;
}
.tp-project-3-thumb img {
  width: 100%;
  -webkit-transition: all 600ms linear;
  transition: all 600ms linear;
}
.tp-project-3-thumb::after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  pointer-events: none;
}
.tp-project-3-title {
  color: var(--tp-common-white);
  font-size: 24px;
  font-weight: 600;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-project-3-title {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-project-3-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .tp-project-3-title {
    font-size: 18px;
  }
}
.tp-project-3-title a {
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
}
.tp-project-3-title a:hover {
  background-size: 0% 1px, 100% 1px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-3-title-box {
    margin-bottom: 30px;
  }
}
.tp-project-3-content {
  position: absolute;
  bottom: 20px;
  left: 0px;
  right: 0;
  margin: 0 20px;
  padding: 25px 30px;
  background-color: var(--tp-common-black);
  margin-top: 0px;
  transform: perspective(400px) rotateX(-90deg);
  transform-origin: center;
  transition: all 0.5s ease-in-out;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-project-3-content {
    padding: 25px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-3-content {
    padding: 25px 20px;
  }
}
.tp-project-3-content span {
  color: var(--tp-common-white);
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding-left: 50px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-project-3-content span {
    font-size: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-3-content span {
    font-size: 14px;
  }
}
.tp-project-3-content span::before {
  position: absolute;
  content: "";
  left: 0;
  top: 18px;
  height: 1px;
  width: 40px;
  margin-right: 12px;
  border-radius: 5px;
  transform: translateY(-4px);
  background-color: var(--tp-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-3-top-text p {
    font-size: 14px;
  }
}

.tp-project-4-item {
  margin-bottom: 35px;
  overflow: hidden;
  line-height: 0;
}
.tp-project-4-item.active .tp-project-4-content {
  transform: perspective(400px) rotateX(0deg);
}
.tp-project-4-item.active .tp-project-4-thumb::after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.tp-project-4-item.active .tp-project-4-thumb img {
  transform: scale(1.1);
}
.tp-project-4-thumb {
  overflow: hidden;
}
.tp-project-4-thumb img {
  width: 100%;
  -webkit-transition: all 600ms linear;
  transition: all 600ms linear;
}
.tp-project-4-thumb::after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  pointer-events: none;
}
.tp-project-4-title {
  color: var(--tp-common-white);
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 4px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-4-title {
    font-size: 22px;
  }
}
.tp-project-4-title a {
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
}
.tp-project-4-title a:hover {
  background-size: 0% 1px, 100% 1px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-4-title-box {
    margin-bottom: 30px;
  }
}
.tp-project-4-content {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 40px;
  margin: 25px;
  padding-bottom: 45px;
  display: inline-block;
  background-color: var(--tp-common-black);
  transform: perspective(400px) rotateX(-90deg);
  transform-origin: center;
  transition: all 0.5s ease-in-out;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-4-content {
    padding: 25px;
    margin: 20px;
  }
}
.tp-project-4-content p {
  max-width: 290px;
  padding-bottom: 2px;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-4-content p {
    font-size: 14px;
  }
}

.tp-project-5-item {
  transition: 0.6s;
  padding-top: 70px;
}
.tp-project-5-thumb {
  overflow: hidden;
}
.tp-project-5-thumb img {
  width: 100%;
  transition: 1.3s all ease;
}
.tp-project-5-thumb:hover img {
  transform: scale(1.2);
}
.tp-project-5-title {
  color: var(--tp-common-white);
  font-size: 20px;
  font-weight: 600;
}
.tp-project-5-title a {
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
}
.tp-project-5-title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-project-5-content {
  position: absolute;
  bottom: -19%;
  left: 20px;
  right: 20px;
  padding: 45px 38px;
  transform: perspective(400px) rotateY(-90deg);
  transform-origin: center;
  transition: all 0.5s ease-in-out;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-5-content {
    padding: 25px 29px;
  }
}
@media only screen and (min-width: 440px) and (max-width: 575px) {
  .tp-project-5-content {
    bottom: -10%;
  }
}
.tp-project-5-content p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-5-content p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 440px) and (max-width: 575px) {
  .tp-project-5-content p {
    padding-right: 60px;
  }
}
.tp-project-5-active {
  margin: -60px -120px;
  padding: 60px 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-project-5-active {
    margin: -40px -40px;
    padding: 40px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-5-active {
    margin: -40px 0px;
    padding: 40px 0;
  }
}
.tp-project-5-active .swiper-slide.swiper-slide-active .tp-project-5-content {
  transform: perspective(400px) rotateY(0deg);
}
.tp-project-5-active .swiper-slide.swiper-slide-active .tp-project-5-item {
  transform: translateY(-70px);
}
.tp-project-5-active .swiper-slide.swiper-slide-active .tp-project-5-thumb img {
  transform: scale(1.1);
}
.tp-project-5-big-text {
  position: absolute;
  content: "";
  top: 57%;
  left: 1.6%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-project-5-big-text {
    left: 0.6%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-project-5-big-text {
    left: 1%;
    top: 87%;
  }
}
.tp-project-5-big-text h6 {
  color: var(--tp-theme-1);
  font-size: 148px;
  font-style: normal;
  font-weight: 700;
  opacity: 0.05;
  text-transform: capitalize;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-project-5-big-text h6 {
    font-size: 125px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-project-5-big-text h6 {
    font-size: 100px;
  }
}

.tp-project-details-left-box {
  margin-top: -35px;
  margin-left: 30px;
  padding: 50px 34px;
  position: relative;
  z-index: 9;
  background-color: var(--tp-common-white);
  box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .tp-project-details-left-box {
    margin-top: 30px;
    margin-left: 0;
    padding: 20px 34px;
  }
}
.tp-project-details-left-box ul li {
  position: relative;
  padding-left: 35px;
  color: var(--tp-common-black);
  list-style: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-details-left-box ul li {
    font-size: 14px;
  }
}
.tp-project-details-left-box ul li:not(:last-child) {
  margin-bottom: 19px;
}
@media (max-width: 767px) {
  .tp-project-details-left-box ul li:not(:last-child) {
    margin-bottom: 5px;
  }
}
.tp-project-details-left-box ul li span {
  position: absolute;
  top: -2px;
  left: 0;
  color: var(--tp-theme-1);
}
.tp-project-details-title {
  font-size: 28px;
}
.tp-project-details-list ul {
  display: inline-block;
}
.tp-project-details-list ul li {
  padding-left: 22px;
  list-style-type: none;
  position: relative;
  width: 50%;
  float: left;
  margin-bottom: 13px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-project-details-list ul li {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .tp-project-details-list ul li {
    font-size: 14px;
    width: 100%;
  }
}
.tp-project-details-list ul li::after {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50%;
  top: 11px;
  left: 0;
  background-color: var(--tp-theme-1);
}
.tp-project-details-social span {
  display: inline-block;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .tp-project-details-social span {
    margin-right: 10px;
  }
}
.tp-project-details-social a {
  width: 65px;
  height: 40px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
  margin: 0 2px;
  border: 1px solid rgba(84, 89, 95, 0.2);
  transition: 0.3s;
}
@media (max-width: 767px) {
  .tp-project-details-social a {
    width: 44px;
    height: 34px;
    line-height: 30px;
  }
}
.tp-project-details-social a svg {
  color: var(--tp-theme-1);
  transition: 0.3s;
}
@media (max-width: 767px) {
  .tp-project-details-social a svg {
    width: 15px;
  }
}
.tp-project-details-social a:hover svg {
  color: var(--tp-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-details-content p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-details-text p {
    font-size: 14px;
  }
}

.grid-sizer-2 {
  width: 33.33%;
}

/*----------------------------------------*/
/*  7.16 service css start
/*----------------------------------------*/
.tp-service-item:hover .tp-service-thumb img {
  transform: scale(1.2);
}
.tp-service-item:hover .tp-service-thumb::after {
  left: 0;
  right: 0;
  opacity: 0;
}
.tp-service-item:hover .tp-service-icon span {
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  color: var(--tp-common-black);
}
.tp-service-item:hover .tp-service-icon-box span svg {
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  color: var(--tp-common-black);
}
.tp-service-thumb {
  overflow: hidden;
}
.tp-service-thumb img {
  width: 100%;
  transition: 1.3s all ease;
}
.tp-service-thumb::after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.tp-service-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tp-service-icon span {
  width: 100px;
  height: 103px;
  line-height: 103px;
  display: inline-block;
  text-align: center;
  background-color: var(--tp-common-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--tp-theme-1);
}
.tp-service-icon-box span {
  display: inline-block;
}
.tp-service-icon-box span svg {
  width: 65px;
  height: 66px;
  color: var(--tp-theme-1);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.tp-service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.tp-service-title a {
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#000000, #000000), linear-gradient(#000000, #000000);
}
.tp-service-title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-service-content {
  padding: 40px 40px;
  padding-bottom: 25px;
  background-color: var(--tp-common-white);
  box-shadow: 0px 6px 25px 0px rgba(0, 0, 0, 0.05);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-service-content {
    padding: 35px 20px;
  }
}
.tp-service-content p {
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-service-content p {
    font-size: 14px;
  }
}
.tp-service-link a {
  color: var(--tp-common-black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: capitalize;
}

.tp-service-style-2 .tp-service-content {
  padding: 50px 20px;
  padding-bottom: 45px;
}

.tp-service-2-item:hover .tp-service-2-icon span {
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  color: var(--tp-common-black);
}
.tp-service-2-icon {
  color: var(--tp-theme-1);
  padding-bottom: 30px;
}
.tp-service-2-icon span {
  display: inline-block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 65px;
  height: 66px;
  text-align: center;
}
.tp-service-2-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  padding-bottom: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-service-2-title {
    font-size: 21px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-service-2-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-service-2-title {
    font-size: 22px;
  }
}
.tp-service-2-title a {
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#000000, #000000), linear-gradient(#000000, #000000);
}
.tp-service-2-title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-service-2-text p {
  margin-bottom: 11px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-service-2-text p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-service-2-text p {
    font-size: 13px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-service-2-text p {
    font-size: 14px;
  }
}
.tp-service-2-text a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  color: var(--tp-common-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.tp-service-2-text a:hover {
  color: var(--tp-theme-1);
}
.tp-service-2-top-text p {
  margin-bottom: 0;
  padding-left: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-service-2-top-text p {
    padding-left: 0;
    font-size: 14px;
  }
}

.tp-service-style-3 .tp-service-2-item {
  padding: 40px 35px;
  background-color: #F8F8F8;
}
@media (max-width: 767px) {
  .tp-service-style-3 .tp-service-2-item {
    padding: 40px 25px;
  }
}
@media (max-width: 767px) {
  .tp-service-style-3 .tp-service-2-text p {
    font-size: 13px;
  }
}
.tp-service-style-3 .tp-service-2-icon {
  margin-right: 20px;
}
.tp-service-style-3 .tp-service-2-title {
  line-height: 1.2;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-service-style-3 .tp-service-2-title br {
    display: none;
  }
}

.tp-service-style-4 .tp-service-2-item {
  padding: 40px 38px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-service-style-4 .tp-service-2-item {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-service-style-4 .tp-service-2-item {
    padding: 40px 25px;
  }
}
@media (max-width: 767px) {
  .tp-service-style-4 .tp-service-2-item {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-service-style-4 .tp-service-2-item {
    padding: 40px 28px;
  }
}
.tp-service-style-4 .tp-service-2-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  visibility: hidden;
  background-size: cover;
  background-color: var(--tp-common-black);
}
.tp-service-style-4 .tp-service-2-item.active::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.tp-service-style-4 .tp-service-2-item.active .tp-service-2-icon span {
  color: var(--tp-common-white);
}
.tp-service-style-4 .tp-service-2-item.active .tp-service-2-title {
  color: var(--tp-common-white);
}
.tp-service-style-4 .tp-service-2-item.active .tp-service-2-text p {
  color: var(--tp-common-white);
}
.tp-service-style-4 .tp-service-2-item.active .tp-service-2-text a {
  color: var(--tp-common-white);
}
.tp-service-style-4 .tp-service-2-icon {
  margin-right: 30px;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .tp-service-style-4 .tp-service-2-icon {
    padding-bottom: 30px;
  }
}
.tp-service-style-4 .tp-service-2-content {
  position: relative;
  z-index: 1;
}

.tp-service-style-5 .tp-service-2-item {
  border: 1px solid #E6E6E6;
  background-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-service-style-5 .tp-service-2-item {
    padding: 40px 26px;
  }
}
.tp-service-style-5 .tp-service-2-item.active::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.tp-service-style-5 .tp-service-2-item.active .tp-service-2-title {
  color: var(--tp-common-white);
}
.tp-service-style-5 .tp-service-2-item.active .tp-service-2-content p {
  color: var(--tp-common-white);
}
.tp-service-style-5 .tp-service-2-item.active .tp-btn-border-lg {
  color: var(--tp-common-white);
}
.tp-service-style-5 .tp-service-2-item.active .tp-service-2-icon span {
  color: var(--tp-common-white);
}
.tp-service-style-5 .tp-service-2-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  visibility: hidden;
  background-size: cover;
  background-color: var(--tp-common-black);
  z-index: -1;
}
.tp-service-style-5 .tp-service-2-icon {
  margin-right: 30px;
}
@media (max-width: 767px) {
  .tp-service-style-5 .tp-service-2-title-box {
    margin-bottom: 30px;
  }
}
.tp-service-style-5 .tp-service-2-title a {
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
}
.tp-service-style-5 .tp-service-2-big-text {
  position: absolute;
  content: "";
  top: 30%;
  right: 18%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-service-style-5 .tp-service-2-big-text {
    top: 31%;
    right: 7%;
  }
}
.tp-service-style-5 .tp-service-2-big-text h6 {
  color: var(--tp-theme-1);
  font-size: 118px;
  font-style: normal;
  font-weight: 700;
  opacity: 0.05;
  text-transform: capitalize;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-service-style-5 .tp-service-2-big-text h6 {
    font-size: 100px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-service-style-5 .tp-service-2-big-text h6 {
    left: 30%;
  }
}

.tp-link {
  position: relative;
  display: inline-block;
}
.tp-link .bottom-line {
  overflow: hidden;
  left: 0;
  bottom: 4px;
  height: 1px;
  width: 100%;
  position: absolute;
  background: var(--tp-theme-1);
  display: block;
  position: relative;
}
.tp-link .bottom-line::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 5px;
  height: 1px;
  background-color: #fff;
  animation: lineAnim 1.5s linear infinite;
}

/*---details css start here---*/
.tp-sv-sidebar-widget ul li {
  list-style-type: none;
}
.tp-sv-sidebar-widget ul li:not(:last-child) {
  margin-bottom: 20px;
}
.tp-sv-sidebar-widget ul li a {
  padding-right: 6px;
  display: block;
  color: var(--tp-theme-1);
  padding: 16px 20px;
  border: 1px solid var(--tp-grey-1);
  transition: 0.3s;
}
.tp-sv-sidebar-widget ul li:hover a {
  background-color: #F8F8F8;
  border-color: transparent;
}
.tp-sv-sidebar-widget ul li.active a {
  background-color: #F8F8F8;
  border-color: transparent;
}
.tp-sv-sidebar-author-info {
  padding: 30px 30px;
  padding-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
}
.tp-sv-sidebar-author-info h5 {
  font-size: 20px;
  margin-bottom: 3px;
}
@media (max-width: 767px) {
  .tp-sv-sidebar-author-info h5 {
    font-size: 17px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-sv-sidebar-author-info p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .tp-sv-details-text {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-sv-details-text {
    flex-wrap: nowrap;
  }
}
.tp-sv-details-text p {
  padding-right: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-sv-details-text p {
    padding-right: 0;
    font-size: 14px;
  }
}
.tp-sv-details-text span {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  flex: 0 0 auto;
  margin-right: 45px;
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}
@media (max-width: 767px) {
  .tp-sv-details-text span {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-sv-details-text span {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .tp-sv-details-left-wrap {
    margin-bottom: 30px;
  }
}
.tp-sv-details-left h6 {
  position: relative;
  padding-left: 30px;
  font-size: 20px;
  color: var(--tp-text-body);
}
@media (max-width: 767px) {
  .tp-sv-details-left h6 {
    font-size: 16px;
  }
}
.tp-sv-details-left h6 i {
  position: absolute;
  top: 3px;
  left: 0;
  font-size: 18px;
  color: var(--tp-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-sv-details-left p {
    font-size: 14px;
  }
  .tp-sv-details-left p br {
    display: none;
  }
}
.tp-sv-details-left-box h6 {
  font-size: 20px;
}
.tp-sv-details-left-box p {
  margin-right: -35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-sv-details-left-box p {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-sv-details-left-box p {
    margin-right: 0px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .tp-sv-details-thumb img {
    width: 100%;
  }
}

/*----------------------------------------*/
/*  7.7 feature css start
/*----------------------------------------*/
.tp-feature-item {
  padding: 40px 25px;
  padding-bottom: 35px;
  background-color: #0A0A0A;
  position: relative;
}
.tp-feature-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  visibility: hidden;
  background-size: cover;
  background-color: var(--tp-common-white);
}
.tp-feature-item.active::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.tp-feature-item.active .tp-feature-icon span svg {
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  color: var(--tp-common-black);
}
.tp-feature-item.active .tp-feature-title {
  color: var(--tp-common-black);
}
.tp-feature-item.active .tp-feature-text p {
  color: var(--tp-common-black);
}
.tp-feature-title {
  font-size: 24px;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  color: var(--tp-common-white);
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-feature-title {
    font-size: 18px;
  }
}
.tp-feature-title a {
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
}
.tp-feature-title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-feature-icon {
  position: relative;
  z-index: 1;
}
.tp-feature-icon span svg {
  color: var(--tp-theme-1);
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-feature-left {
    margin-bottom: 50px;
  }
}
.tp-feature-text {
  position: relative;
  z-index: 1;
}
.tp-feature-text p {
  margin-bottom: 0;
  color: var(--tp-common-white);
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-feature-text p {
    font-size: 14px;
  }
  .tp-feature-text p br {
    display: none;
  }
}
.tp-feature-shape-1 {
  position: absolute;
  bottom: 0;
  left: -2%;
  z-index: -1;
  animation: tptranslateX2 2.5s infinite alternate;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-exp-fea-wrap {
    margin-right: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-exp-fea-wrap {
    margin-right: 80px;
  }
}
.tp-exp-fea-text p {
  color: var(--tp-common-black);
  font-size: 16px;
  font-weight: 400;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-exp-fea-text p {
    font-size: 14px;
  }
}
.tp-exp-fea-list ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  position: relative;
  padding-left: 33px;
  list-style-type: none;
  color: var(--tp-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-exp-fea-list ul li {
    font-size: 14px;
  }
}
.tp-exp-fea-list ul li:not(:last-child) {
  margin-bottom: 11px;
}
.tp-exp-fea-list ul li i {
  position: absolute;
  top: 4px;
  left: 0;
  color: var(--tp-theme-1);
}
.tp-exp-fea-canva-box {
  padding: 35px 55px;
  background-color: #F8F8F8;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-exp-fea-canva-box {
    padding: 35px 27px;
  }
}
@media (max-width: 767px) {
  .tp-exp-fea-canva-box {
    padding: 35px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-exp-fea-canva-box {
    padding: 35px 55px;
  }
}
@media only screen and (min-width: 440px) and (max-width: 576px) {
  .tp-exp-fea-canva-box {
    padding: 35px 40px;
  }
}
.tp-exp-fea-canva-box span {
  font-size: 16px;
  font-weight: 400;
  color: var(--tp-common-black);
}
@media (max-width: 767px) {
  .tp-exp-fea-canva-box span {
    font-size: 14px;
  }
}
.tp-exp-fea-thumb {
  position: relative;
  overflow: hidden;
  margin-right: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-exp-fea-thumb {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-exp-fea-thumb {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.tp-exp-fea-thumb img {
  width: 100%;
  transition: 1.3s all ease;
}
.tp-exp-fea-thumb-2 {
  position: relative;
  overflow: hidden;
  margin-left: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-exp-fea-thumb-2 {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-exp-fea-thumb-2 {
    margin-left: 0;
    margin-bottom: 30px;
  }
}
.tp-exp-fea-thumb-2 img {
  width: 100%;
  transition: 1.3s all ease;
}
.tp-exp-fea-thumb-2:hover::after {
  height: 100%;
  opacity: 0;
}
.tp-exp-fea-big-text {
  position: absolute;
  content: "";
  top: 46%;
  right: -8.4%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-exp-fea-big-text {
    right: -7.6%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-exp-fea-big-text {
    right: 7.6%;
  }
}
.tp-exp-fea-big-text h6 {
  color: var(--tp-theme-1);
  font-size: 148px;
  font-style: normal;
  font-weight: 700;
  opacity: 0.05;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-exp-fea-big-text h6 {
    font-size: 130px;
  }
}
@media (max-width: 767px) {
  .tp-exp-fea-right {
    margin-bottom: 30px;
  }
}

.tp-progress {
  height: 72px;
  width: 72px;
  text-align: center;
  line-height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 10px;
}
.tp-progress input {
  color: #000 !important;
  font-size: 16px !important;
  height: 72px !important;
  margin-top: 0 !important;
}

/*----------------------------------------*/
/*  7.1 about css start
/*----------------------------------------*/
.tp-about-bg {
  position: relative;
  z-index: 2;
}
.tp-about-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 13.5%;
  background-color: var(--tp-common-white);
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-bg::after {
    height: 7.5%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-bg::after {
    height: 100%;
  }
}
.tp-about-list ul li {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  padding-left: 30px;
  position: relative;
  color: var(--tp-common-black);
  list-style-type: none;
  margin-bottom: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-list ul li {
    font-size: 17px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-list ul li {
    font-size: 15px;
    margin-bottom: 6px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-list ul li {
    font-size: 17px;
  }
}
.tp-about-list ul li i {
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 16px;
  color: var(--tp-theme-1);
}
.tp-about-big-text {
  position: absolute;
  content: "";
  top: 0;
  right: 20.6%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-about-big-text {
    right: 9.6%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-big-text {
    right: 7.6%;
  }
}
.tp-about-big-text h6 {
  color: var(--tp-theme-1);
  font-size: 148px;
  font-style: normal;
  font-weight: 700;
  opacity: 0.05;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-big-text h6 {
    font-size: 130px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-text p {
    font-size: 14px;
  }
}
.tp-about-thumb-box {
  margin-right: 35px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-thumb-box {
    margin-top: 50px;
    margin-right: 0;
  }
}
.tp-about-thumb img {
  width: 100%;
}

.tp-about-2-right {
  padding-top: 45px;
  padding-bottom: 20px;
  margin-left: 9px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-2-right {
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.tp-about-2-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 46.2%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-2-thumb {
    position: static;
    margin-top: 50px;
    height: 100%;
    width: 100%;
  }
}
.tp-about-2-icon span {
  position: relative;
  display: inline-block;
}
.tp-about-2-icon span svg {
  color: var(--tp-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-2-icon span svg {
    width: 45px;
  }
}
.tp-about-2-icon span::after {
  position: absolute;
  content: "";
  top: 0;
  left: -10px;
  height: 65px;
  width: 65px;
  border-radius: 50%;
  background-color: #F8F8F8;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-2-icon span::after {
    height: 35px;
    width: 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-2-text p {
    font-size: 13px;
  }
  .tp-about-2-text p br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-2-text p {
    font-size: 14px;
  }
  .tp-about-2-text p br {
    display: none;
  }
}
.tp-about-2-title {
  font-size: 24px;
  font-weight: 600;
  margin-left: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-2-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-2-title {
    font-size: 20px;
  }
}
.tp-about-2-shape-1 {
  position: absolute;
  bottom: -45px;
  right: -35px;
  z-index: -1;
}
.tp-about-2-shape-2 {
  position: absolute;
  top: 40px;
  right: -12px;
  animation: tptranslateY2 2.5s infinite alternate;
}

.tp-about-3-title-box {
  padding-left: 250px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about-3-title-box {
    padding-left: 150px;
  }
}
@media (max-width: 767px) {
  .tp-about-3-title-box {
    padding-left: 0px;
  }
}
.tp-about-3-content {
  margin-top: 62px;
  padding-left: 180px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-3-content {
    padding-left: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-3-content {
    padding-left: 0px;
  }
}
.tp-about-3-content::before {
  position: absolute;
  top: 9px;
  left: 0;
  content: "";
  width: 153px;
  height: 1px;
  background-color: var(--tp-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-3-content::before {
    width: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-3-content::before {
    display: none;
  }
}
.tp-about-3-content p {
  color: var(--tp-common-black);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-3-content p {
    font-size: 14px;
  }
}
.tp-about-3-thumb {
  overflow: hidden;
  position: relative;
}
.tp-about-3-thumb img {
  width: 100%;
  transition: 1.3s all ease;
}
.tp-about-3-thumb-sm {
  overflow: hidden;
  margin-right: 53px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-3-thumb-sm {
    margin-right: 0;
  }
}
.tp-about-3-thumb-sm img {
  width: 100%;
  transition: 1.3s all ease;
}
.tp-about-3-big-text {
  position: absolute;
  content: "";
  bottom: -21%;
  left: -80px;
}
.tp-about-3-big-text h6 {
  color: var(--tp-theme-1);
  font-size: 118px;
  font-style: normal;
  font-weight: 700;
  opacity: 0.05;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-3-big-text h6 {
    font-size: 110px;
  }
}

.tp-about-4-left {
  margin-right: 36px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-4-left {
    margin-bottom: 50px;
    margin-right: 0;
  }
}
.tp-about-4-text {
  margin-bottom: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-4-text p {
    font-size: 14px;
  }
}
.tp-about-4-thumb-1 {
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about-4-thumb-1 {
    transform: translateX(70px);
  }
}
@media (max-width: 767px) {
  .tp-about-4-thumb-1 {
    transform: scale(0.9);
  }
}
.tp-about-4-thumb-2 {
  margin-top: 90px;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-4-thumb-2 {
    transform: translateX(20px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about-4-thumb-2 {
    transform: translateX(-70px);
  }
}
@media (max-width: 767px) {
  .tp-about-4-thumb-2 {
    transform: scale(0.9);
  }
}
.tp-about-4-circle {
  position: absolute;
  left: 73px;
  top: 20px;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-4-circle {
    left: 5%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about-4-circle {
    left: 15%;
  }
}
@media (max-width: 767px) {
  .tp-about-4-circle {
    left: -29%;
    transform: scale(0.45);
    top: -27%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-4-circle {
    display: none;
  }
}
@media only screen and (min-width: 440px) and (max-width: 575px) {
  .tp-about-4-circle {
    left: -13%;
    transform: scale(0.6);
    top: -16%;
  }
}
.tp-about-4-circle span {
  height: 477px;
  width: 477px;
  border-radius: 50%;
  display: inline-block;
  border: 3px dashed var(--tp-theme-1);
  z-index: -1;
  animation: rotate2 25s linear infinite;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-4-circle span {
    height: 377px;
    width: 377px;
  }
}
.tp-about-4-list {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .tp-about-4-list {
    margin-bottom: 20px;
  }
}
.tp-about-4-list ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 17px;
  position: relative;
  list-style-type: none;
  padding-left: 30px;
  color: var(--tp-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-4-list ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.tp-about-4-list ul li:last-child {
  margin-bottom: 0px;
}
.tp-about-4-list ul li i {
  color: var(--tp-theme-1);
  position: absolute;
  top: 5px;
  left: 0;
}

.tp-about-5-style .tp-about-list ul li {
  padding-left: 37px;
  font-size: 19px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-5-style .tp-about-list ul li {
    font-size: 17px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-5-style .tp-about-list ul li {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-5-style .tp-about-list ul li {
    font-size: 16px;
    margin-bottom: 7px;
  }
}
.tp-about-5-style .tp-about-list ul li i {
  font-size: 24px;
  transform: translateY(-5px);
}
@media (max-width: 767px) {
  .tp-about-5-style .tp-about-content {
    margin-bottom: 50px;
  }
}

.tp-about-5-thumb-box {
  padding-bottom: 120px;
  padding-left: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-5-thumb-box {
    padding-left: 0;
    transform: scale(0.9);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about-5-thumb-box {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .tp-about-5-thumb-box {
    padding-left: 0;
    padding-bottom: 0px;
  }
}
.tp-about-5-thumb {
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about-5-thumb {
    transform: scale(0.7) translateX(-10px);
    margin-left: -30px;
  }
}
@media (max-width: 767px) {
  .tp-about-5-thumb {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .tp-about-5-thumb img {
    width: 100%;
  }
}
.tp-about-5-thumb::after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  pointer-events: none;
}
.tp-about-5-thumb:hover::after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.tp-about-5-thumb-sm {
  position: absolute;
  right: 0;
  bottom: 0;
  border: 7px solid var(--tp-common-white);
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-5-thumb-sm {
    right: -6%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about-5-thumb-sm {
    transform: scale(0.8);
    right: -7%;
  }
}
@media (max-width: 767px) {
  .tp-about-5-thumb-sm {
    position: static;
    border: none;
  }
}
@media (max-width: 767px) {
  .tp-about-5-thumb-sm img {
    width: 100%;
  }
}
.tp-about-5-thumb-sm::after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  pointer-events: none;
}
.tp-about-5-thumb-sm:hover::after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.tp-about-5-shape-1 {
  position: absolute;
  top: 9%;
  left: -25px;
  animation: tptranslateY2 2.5s infinite alternate;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about-5-shape-1 {
    transform: scale(0.7);
    left: -20px;
  }
}
@media (max-width: 767px) {
  .tp-about-5-shape-1 {
    display: none;
  }
}
.tp-about-5-big-text {
  position: absolute;
  content: "";
  top: 59%;
  left: 39%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-about-5-big-text {
    left: 35%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-5-big-text {
    left: 30%;
  }
}
.tp-about-5-big-text h6 {
  color: var(--tp-theme-1);
  font-size: 118px;
  font-style: normal;
  font-weight: 700;
  opacity: 0.05;
  text-transform: capitalize;
}

.tp-hover-distort-wrapper {
  position: relative;
}
.tp-hover-distort-wrapper .canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.tp-hover-distort-img {
  opacity: 0;
  object-fit: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hover-distort-img {
    width: 100%;
  }
}
.tp-hover-distort-img.back {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*----------------------------------------*/
/*  7.8 funfact css start
/*----------------------------------------*/
.tp-funfact-height {
  padding: 145px 0;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-funfact-height {
    padding: 115px 0;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-funfact-height {
    padding: 115px 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-funfact-height {
    padding: 85px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-funfact-height {
    padding: 85px 0;
  }
}
.tp-funfact-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-funfact-bg {
    display: none;
  }
}
.tp-funfact-bg img {
  mix-blend-mode: luminosity;
  opacity: 0.14;
}
.tp-funfact-item-box {
  margin-top: 15px;
  margin-right: 35px;
}
@media (max-width: 767px) {
  .tp-funfact-item-box {
    flex-wrap: wrap;
    margin-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-funfact-item-box {
    margin-right: 35px;
  }
}
.tp-funfact-item {
  padding: 50px 34px;
  padding-bottom: 44px;
  text-align: center;
  width: auto;
  border-bottom: 5px solid var(--tp-theme-1);
  border-right: 5px solid var(--tp-theme-1);
  background-color: var(--tp-common-black-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-funfact-item {
    padding: 30px 34px;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .tp-funfact-item {
    padding: 30px 34px;
    padding-bottom: 30px;
    text-align: center;
    margin: 0 30px;
    margin-bottom: 70px;
  }
}
.tp-funfact-item span {
  color: var(--tp-common-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-funfact-item span {
    font-size: 14px;
  }
}
.tp-funfact-number {
  color: var(--tp-common-white);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-funfact-number {
    font-size: 32px;
  }
}
.tp-funfact-number i {
  font-style: normal;
}
.tp-funfact-icon {
  position: absolute;
  top: -27px;
  right: -27px;
}
.tp-funfact-icon span {
  height: 54px;
  width: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background-color: var(--tp-theme-1);
}
.tp-funfact-icon span svg {
  color: var(--tp-common-white);
}
.tp-funfact-shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.tp-funfact-title-box {
  margin-top: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-funfact-title-box {
    margin-top: 0;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .tp-funfact-2-item-box {
    margin-bottom: 50px;
  }
}
.tp-funfact-2-item-box ul li {
  list-style-type: none;
  padding-bottom: 20px;
  margin-bottom: 58px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-funfact-2-item-box ul li {
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-funfact-2-item-box ul li {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.tp-funfact-2-item-box ul li:last-child {
  margin-bottom: 0;
}
.tp-funfact-2-item span {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-funfact-2-item span {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-funfact-2-item span {
    font-size: 14px;
  }
  .tp-funfact-2-item span br {
    display: none;
  }
}
.tp-funfact-2-title {
  font-size: 68px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-funfact-2-title {
    font-size: 56px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-funfact-2-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-funfact-2-title {
    font-size: 48px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-funfact-2-title {
    font-size: 44px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-funfact-2-title {
    font-size: 38px;
  }
}
.tp-funfact-2-title i {
  font-style: normal;
}
.tp-funfact-2-thumb {
  display: block;
  overflow: hidden;
  margin-left: 35px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-funfact-2-thumb {
    margin-left: 0;
  }
}
.tp-funfact-2-thumb img {
  width: 100%;
  transform: scale(1.04) translateX(-1%);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.tp-funfact-2-thumb::after {
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}
.tp-funfact-2-thumb:hover img {
  transform: scale(1.04) translateX(1%);
}
.tp-funfact-2-thumb:hover::after {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.tp-funfact-style-2.tp-funfact-height {
  padding: 105px 0;
}
.tp-funfact-style-2 .tp-funfact-wrap {
  margin-left: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-funfact-style-2 .tp-funfact-wrap {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .tp-funfact-style-2 .tp-funfact-wrap {
    flex-wrap: wrap;
    margin-top: 40px;
    text-align: start;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .tp-funfact-style-2 .tp-funfact-item {
    margin: 0;
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-funfact-style-2 .tp-funfact-title-box {
    margin-bottom: 0;
  }
}
.tp-funfact-style-2 .tp-section-title {
  position: relative;
  padding-left: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-funfact-style-2 .tp-section-title {
    padding-left: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .tp-funfact-style-2 .tp-section-title {
    padding-left: 0;
  }
}
.tp-funfact-style-2 .tp-section-title::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  height: 112px;
  width: 1px;
  transform: translateY(-50%);
  background-color: var(--tp-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-funfact-style-2 .tp-section-title::after {
    display: none;
  }
}
.tp-funfact-style-2 .tp-funfact-item {
  padding: 0;
  text-align: start;
  background-color: transparent;
}

.tp-funfact-style-3 .tp-funfact-2-title {
  width: 200px;
  color: transparent;
  font-family: var(--tp-ff-poppins);
  -webkit-text-stroke: 1px var(--tp-common-black);
  font-weight: 700;
}
@media (max-width: 767px) {
  .tp-funfact-style-3 .tp-funfact-2-title {
    width: 100%;
    font-size: 42px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-funfact-style-3 .tp-funfact-2-title {
    width: 100%;
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .tp-funfact-style-3 {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-funfact-style-3 {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .tp-funfact-style-3 .tp-funfact-2-item-box {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .tp-funfact-style-3 .tp-funfact-2-item {
    margin-bottom: 50px;
  }
}

.tp-funfact-style-4 .tp-funfact-2-big-text {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tp-funfact-style-4 .tp-funfact-2-big-text h6 {
  color: var(--tp-theme-1);
  font-size: 118px;
  font-style: normal;
  font-weight: 700;
  opacity: 0.05;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .tp-funfact-style-4 .tp-funfact-2-item-box {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .tp-funfact-style-4 .tp-funfact-2-item {
    text-align: center;
    margin-bottom: 55px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-funfact-style-4 .tp-funfact-2-item span br {
    display: block;
  }
}
.tp-funfact-style-4 .tp-funfact-2-item h5 {
  font-size: 48px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-funfact-style-4 .tp-funfact-2-item h5 {
    font-size: 36px;
  }
}

/*----------------------------------------*/
/*  7.19 testimonial css start
/*----------------------------------------*/
@media (max-width: 767px) {
  .tp-testimonial-item {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-testimonial-item {
    flex-wrap: nowrap;
  }
}
.tp-testimonial-item:hover .tp-testimonial-author-thumb img {
  transform: scale(1.1);
}
.tp-testimonial-author-thumb-box {
  flex: 0 0 auto;
}
.tp-testimonial-author-thumb {
  overflow: hidden;
}
@media (max-width: 767px) {
  .tp-testimonial-author-thumb {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-testimonial-author-thumb {
    margin-bottom: 0px;
  }
}
.tp-testimonial-author-thumb img {
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}
.tp-testimonial-top-text p {
  margin-left: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-testimonial-top-text p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-testimonial-top-text p {
    font-size: 14px;
    margin-left: 0;
  }
}
.tp-testimonial-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-testimonial-title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-testimonial-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-testimonial-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-testimonial-title-box {
    margin-bottom: 20px;
  }
}
.tp-testimonial-author-thumb {
  margin-right: 30px;
  flex: 0 0 auto;
}
.tp-testimonial-author-info span {
  font-size: 16px;
  font-weight: 400;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-testimonial-author-info span {
    font-size: 14px;
  }
}
.tp-testimonial-author-info {
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #A6A182;
}
.tp-testimonial-text p {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-testimonial-text p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-testimonial-text p {
    font-size: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-testimonial-text p {
    font-size: 14px;
  }
}
.tp-testimonial-quot {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}
.tp-testimonial-quot span {
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  display: inline-block;
  background-color: var(--tp-theme-1);
}
.tp-testimonial-quot span svg {
  color: var(--tp-common-white);
}
.tp-testimonial-active {
  padding: 40px 0px;
  margin: -40px 0px;
}

.tp-testimonial-2-thumb {
  display: block;
  overflow: hidden;
}
@media (max-width: 767px) {
  .tp-testimonial-2-thumb {
    margin-bottom: 30px;
  }
}
.tp-testimonial-2-thumb img {
  max-width: inherit;
  transform: scale(1.04) translateX(-1%);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-testimonial-2-thumb img {
    width: 100%;
  }
}
.tp-testimonial-2-thumb:hover img {
  transform: scale(1.04) translateX(1%);
}
.tp-testimonial-2-rate i {
  padding: 0 3px;
  font-size: 14px;
  color: var(--tp-theme-1);
}
.tp-testimonial-2-rate i:first-child {
  padding-left: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-testimonial-2-text p {
    font-size: 14px;
    margin-bottom: 0;
  }
  .tp-testimonial-2-text p br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-testimonial-2-text p {
    font-size: 13px;
    margin-bottom: 0;
  }
  .tp-testimonial-2-text p br {
    display: none;
  }
}
@media (max-width: 767px) {
  .tp-testimonial-2-text p {
    font-size: 14px;
    margin-bottom: 0;
  }
  .tp-testimonial-2-text p br {
    display: none;
  }
}
.tp-testimonial-2-author-info {
  padding-bottom: 8px;
  margin-bottom: 30px;
  position: relative;
}
.tp-testimonial-2-author-info::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 1px;
  width: 230px;
  background-color: var(--tp-theme-1);
}
.tp-testimonial-2-author-info h5 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-testimonial-2-author-info h5 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-testimonial-2-author-info h5 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-testimonial-2-author-info h5 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .tp-testimonial-2-author-info h5 {
    font-size: 19px;
  }
}
.tp-testimonial-2-author-info span {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-testimonial-2-author-info span {
    font-size: 14px;
  }
}
.tp-testimonial-2-wrapper {
  margin-left: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-testimonial-2-wrapper {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-testimonial-2-wrapper {
    margin-left: 0px;
  }
}
.tp-testimonial-2-big-text {
  position: absolute;
  content: "";
  right: 270px;
  top: 300px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-testimonial-2-big-text {
    right: 120px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-testimonial-2-big-text {
    right: 150px;
  }
}
.tp-testimonial-2-big-text h6 {
  color: var(--tp-theme-1);
  font-size: 118px;
  font-style: normal;
  font-weight: 700;
  opacity: 0.05;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-testimonial-2-big-text h6 {
    font-size: 110px;
  }
}
.tp-testimonial-2-arrow-box {
  position: relative;
  z-index: 3;
  margin-top: 9px;
}
.tp-testimonial-2-arrow-box button svg {
  transition: 0.3s;
  color: rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-testimonial-2-arrow-box button svg {
    width: 45px;
  }
}
.tp-testimonial-2-arrow-box button:hover svg {
  color: var(--tp-common-black);
  opacity: 1;
}
.tp-testimonial-2-arrow-box button.testimonial-prev {
  margin-right: 55px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-testimonial-2-arrow-box button.testimonial-prev {
    margin-right: 30px;
  }
}

.tp-testimonial-3-author-thumb {
  flex: 0 0 auto;
  margin-right: 20px;
}
.tp-testimonial-3-author-thumb img {
  border-radius: 50%;
}
.tp-testimonial-3-title {
  font-size: 24px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-testimonial-3-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-testimonial-3-title {
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  .tp-testimonial-3-title {
    font-size: 19px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-testimonial-3-wrap .tp-testimonial-title-box {
    margin-bottom: 60px;
  }
}
.tp-testimonial-3-content {
  padding: 40px 42px;
  background-color: var(--tp-common-white);
  box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.05);
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-testimonial-3-content {
    padding: 40px 37px;
  }
}
@media (max-width: 767px) {
  .tp-testimonial-3-content {
    padding: 40px 18px;
  }
}
.tp-testimonial-3-quot {
  position: absolute;
  right: 30px;
  bottom: 22px;
}
.tp-testimonial-3-quot span svg {
  color: var(--tp-theme-1);
}
.tp-testimonial-3-text p {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-testimonial-3-text p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .tp-testimonial-3-text p {
    font-size: 13px;
  }
}
.tp-testimonial-3-arrow-box button svg {
  transition: 0.3s;
  color: var(--tp-theme-1);
  opacity: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-testimonial-3-arrow-box button svg {
    width: 45px;
  }
}
.tp-testimonial-3-arrow-box button:hover svg {
  color: var(--tp-common-black);
  opacity: 1;
}
.tp-testimonial-3-arrow-box button.testimonial-prev {
  position: absolute;
  top: 29%;
  left: -13%;
  z-index: 3;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-testimonial-3-arrow-box button.testimonial-prev {
    left: -10%;
  }
}
.tp-testimonial-3-arrow-box button.testimonial-next {
  position: absolute;
  top: 29%;
  right: -13%;
  z-index: 3;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-testimonial-3-arrow-box button.testimonial-next {
    right: -10%;
  }
}
.tp-testimonial-3-active {
  padding: 30px;
  margin: -30px;
}

/*----------------------------------------*/
/*  7.13 product css start
/*----------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-product-top-text p {
    font-size: 14px;
  }
}
.tp-product-content-box {
  padding: 35px 30px;
}
.tp-product-item {
  box-shadow: 0px 6px 25px 0px rgba(0, 0, 0, 0.05);
}
.tp-product-item:hover .tp-product-thumb img {
  transform: scale(1.1);
}
.tp-product-title {
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-product-title {
    font-size: 17px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-product-title-box {
    margin-bottom: 20px;
  }
}
.tp-product-title a {
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#000000, #000000), linear-gradient(#000000, #000000);
}
.tp-product-title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-product-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--tp-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-product-price {
    font-size: 24px;
  }
}
.tp-product-thumb {
  overflow: hidden;
}
.tp-product-thumb img {
  transition: 1.3s all ease;
}
.tp-product-active {
  margin: -30px;
  padding: 30px;
}

.tp-product-2-item:hover .tp-product-2-btn {
  top: 74%;
  opacity: 1;
  visibility: visible;
}
.tp-product-2-item:hover .tp-product-2-thumb img {
  transform: scale(1.2);
}
.tp-product-2-content {
  padding: 30px 20px;
  padding-bottom: 48px;
  background-color: var(--tp-grey-1);
}
.tp-product-2-btn {
  position: absolute;
  top: 120%;
  left: 0%;
  right: 0;
  text-align: center;
  transition: 0.6s;
  opacity: 0;
  visibility: hidden;
}
.tp-product-2-title {
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s;
}
.tp-product-2-title a {
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#000000, #000000), linear-gradient(#000000, #000000);
}
.tp-product-2-title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-product-2-thumb {
  position: relative;
  overflow: hidden;
}
.tp-product-2-thumb img {
  width: 100%;
  transition: 1.3s all ease;
}
.tp-product-2-rate {
  position: absolute;
  left: 50%;
  top: -35px;
  transform: translateX(-50%);
  height: 70px;
  width: 70px;
  line-height: 70px;
  background-color: var(--tp-theme-1);
}
.tp-product-2-rate span {
  color: var(--tp-common-white);
  font-size: 28px;
  font-weight: 700;
}
.tp-product-2-rate-2 {
  position: absolute;
  top: 0;
  right: 20px;
  width: 73px;
  height: 125px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.05);
  clip-path: polygon(100% 100%, 50% 64%, 0 100%, 0 100%, 0 0, 100% 0);
}
.tp-product-2-rate-2 span {
  display: inline-block;
  color: var(--tp-common-black);
  font-size: 24px;
  font-weight: 600;
  transform: translateY(30px);
}
.tp-product-2-big-text {
  position: absolute;
  content: "";
  left: 445px;
  top: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-product-2-big-text {
    left: 380px;
  }
}
.tp-product-2-big-text h6 {
  color: var(--tp-theme-1);
  font-size: 118px;
  font-style: normal;
  font-weight: 700;
  opacity: 0.05;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-product-2-big-text h6 {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .tp-product-2-title-box {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-product-2-arrow-box {
    display: none;
  }
}
.tp-product-2-arrow-box button svg {
  color: var(--tp-theme-1);
}
.tp-product-2-arrow-box .price-prev {
  position: absolute;
  top: 50%;
  left: -11%;
  transform: translateY(-50%);
  z-index: 2;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-product-2-arrow-box .price-prev {
    position: absolute;
    top: 50%;
    left: -9%;
    transform: translateY(-50%) scale(0.7);
  }
}
.tp-product-2-arrow-box .price-prev::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -34%;
  transform: translateY(-50%);
  width: 79px;
  height: 78px;
  border-radius: 50%;
  border: 3px solid var(--tp-theme-1);
}
.tp-product-2-arrow-box .price-next {
  position: absolute;
  top: 50%;
  right: -11%;
  z-index: 2;
  transform: translateY(-50%);
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-product-2-arrow-box .price-next {
    position: absolute;
    top: 50%;
    right: -9%;
    transform: translateY(-50%) scale(0.7);
  }
}
.tp-product-2-arrow-box .price-next::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -34%;
  transform: translateY(-50%);
  width: 79px;
  height: 78px;
  border-radius: 50%;
  border: 3px solid var(--tp-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-product-2-top-text p {
    font-size: 14px;
  }
}

.tp-product-2-style-2 .tp-product-content {
  padding-bottom: 66px;
}

.tp-product-2-style-3 .tp-product-2-content {
  padding: 30px 30px;
}
.tp-product-2-style-3 .tp-product-2-item:hover .tp-product-2-button-box {
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
}
.tp-product-2-style-3 .tp-product-2-item:hover .tp-product-2-thumb {
  position: relative;
}
.tp-product-2-style-3 .tp-product-2-item:hover .tp-product-2-thumb::after {
  opacity: 1;
  visibility: visible;
  height: 100%;
  bottom: auto;
  top: 0;
}
.tp-product-2-style-3 .tp-product-2-button-box {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  opacity: 0;
  text-align: center;
  visibility: hidden;
  transition: 0.5s;
  z-index: 2;
}
.tp-product-2-style-3 .tp-product-2-button-box .tp-btn-black-lg:hover {
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.tp-product-2-style-3 .tp-product-2-thumb {
  position: relative;
}
.tp-product-2-style-3 .tp-product-2-thumb::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: rgba(166, 161, 130, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.tp-product-2-style-3 .tp-product-2-rate-2 {
  background-color: transparent;
  position: static;
  height: auto;
  width: auto;
  clip-path: none;
}
.tp-product-2-style-3 .tp-product-2-rate-2 span {
  transform: translate(0);
}

.tp-product-2-style-4 .tp-product-2-btn {
  position: absolute;
  top: 20%;
  left: 0%;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  transition: 0.6s;
  opacity: 0;
  visibility: hidden;
}
.tp-product-2-style-4 .tp-product-2-thumb {
  transition: 0.6s;
}
.tp-product-2-style-4 .tp-product-2-thumb::after {
  display: none;
}
.tp-product-2-style-4 .tp-product-2-item {
  background-color: var(--tp-grey-1);
}
.tp-product-2-style-4 .tp-product-2-item:hover .tp-product-2-btn {
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  opacity: 1;
  visibility: visible;
}
.tp-product-2-style-4 .tp-product-2-item:hover .tp-product-2-thumb img {
  transform: scale(1.2);
}

.tp-shop-sidebar-wrap {
  padding-top: 45px;
  padding-bottom: 50px;
  margin-right: -145px;
  margin-left: 30px;
  background-color: var(--tp-grey-1);
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-shop-sidebar-wrap {
    margin-right: -100px;
    margin-left: 0;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-shop-sidebar-wrap {
    margin-right: 0px;
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-shop-sidebar-wrap {
    margin-right: 0px;
    margin-left: 0;
    margin-top: 50px;
  }
}
.tp-shop-sidebar-wrap .sidebar__widget-content {
  padding: 0 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-shop-sidebar-wrap .sidebar__widget-content {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-shop-sidebar-wrap .sidebar__widget-content {
    padding: 0 20px;
  }
}
.tp-shop-sidebar-wrap .sidebar__widget {
  padding: 0px;
  background-color: transparent;
}
.tp-shop-sidebar-widget-title {
  font-size: 28px;
  margin: 0 60px;
  padding-bottom: 30px;
  color: rgba(0, 0, 0, 0.7);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-shop-sidebar-widget-title {
    margin: 0 30px;
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-shop-sidebar-widget-title {
    margin: 0 30px;
    font-size: 21px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-shop-sidebar-widget-title {
    margin: 0 20px;
    font-size: 21px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-shop-sidebar-widget-title {
    margin: 0 30px;
    font-size: 21px;
  }
}
.tp-shop-sidebar-widget-title.title-border {
  padding-bottom: 23px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.tp-shop-sidebar-widget-content ul li {
  list-style-type: none;
}
.tp-shop-sidebar-widget-content ul li.active {
  background-color: var(--tp-theme-1);
}
.tp-shop-sidebar-widget-content ul li.active a {
  color: var(--tp-common-white);
  border-color: transparent;
}
.tp-shop-sidebar-widget-content ul li:hover {
  background-color: var(--tp-theme-1);
}
.tp-shop-sidebar-widget-content ul li:hover a {
  color: var(--tp-common-white);
  border-color: transparent;
}
.tp-shop-sidebar-widget-content ul li a {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  display: block;
  padding: 17px 0;
  padding-left: 28px;
  margin: 0 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-shop-sidebar-widget-content ul li a {
    margin: 0 30px;
    font-size: 17px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-shop-sidebar-widget-content ul li a {
    margin: 0 20px;
    font-size: 16px;
    padding-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-shop-sidebar-widget-content ul li a {
    margin: 0 30px;
    font-size: 17px;
  }
}
.tp-shop-sidebar-widget-content ul li a i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.tp-shop-widget-filter {
  padding: 0 60px;
  position: relative;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-shop-widget-filter {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-shop-widget-filter {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-shop-widget-filter {
    padding: 0 30px;
  }
}
.tp-shop-widget-filter .ui-widget.ui-widget-content {
  height: 3px;
  background-color: #EDEDED;
  border: 0;
  width: 70%;
}
.tp-shop-widget-filter .ui-slider-horizontal .ui-slider-range {
  background-color: var(--tp-theme-1);
  position: absolute;
}
.tp-shop-widget-filter .ui-slider .ui-slider-handle {
  top: -8px;
  width: 16px;
  height: 16px;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  background-color: var(--tp-theme-1);
  position: absolute;
}
.tp-shop-widget-filter-info .input-range input {
  width: auto;
  height: 62px;
  background-color: transparent;
  color: var(--tp-ff-body);
  padding: 0;
  border: 0;
  font-weight: 400;
  font-size: 16px;
}
.tp-shop-widget-filter-info .tp-shop-widget-filter-btn {
  font-weight: 400;
  font-size: 14px;
  color: var(--tp-common-black);
  background-color: #F5F5F5;
  padding: 2px 21px;
}
.tp-shop-widget-filter-info .tp-shop-widget-filter-btn:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}

.basic-navigation a {
  color: var(--tp-common-black);
}

/*** shop details here ****/
.tp-shop-details__wrapper {
  margin-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-shop-details__wrapper {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-shop-details__tab-big-img img {
    width: 100%;
  }
}
.tp-shop-details__tab-big-img {
  border: 1px solid #EDE7E7;
  margin-right: 30px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-shop-details__tab-big-img {
    margin-right: 0;
  }
}
.tp-shop-details__tab-btn-box button {
  display: inline-block;
  margin-right: 20px;
  border: 1px solid transparent;
}
@media (max-width: 767px) {
  .tp-shop-details__tab-btn-box button {
    margin-bottom: 20px;
  }
}
.tp-shop-details__tab-btn-box button img {
  background-color: #F8F8F9;
}
.tp-shop-details__tab-btn-box button.active {
  border: 1px solid #EDE7E7;
}
.tp-shop-details__ratting {
  margin-bottom: 15px;
}
.tp-shop-details__ratting span {
  color: var(--tp-theme-1);
}
.tp-shop-details__ratting span svg {
  color: #FFB41B;
}
.tp-shop-details__price span {
  color: var(--tp-common-black);
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .tp-shop-details__quantity-wrap {
    flex-wrap: wrap;
  }
}
.tp-shop-details__quantity {
  background-color: #F7F7F7;
  width: 205px;
  height: 67px;
  position: relative;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .tp-shop-details__quantity {
    margin-bottom: 20px;
  }
}
.tp-shop-details__quantity input {
  border: 0;
  background-color: transparent;
  width: 100%;
  height: 100%;
  text-align: center;
  color: var(--tp-common-black);
}
.tp-shop-details__quantity .tp-cart-minus {
  position: absolute;
  top: 0;
  left: 0;
  height: 64px;
  width: 64px;
  line-height: 64px;
  text-align: center;
  color: var(--tp-common-black);
}
.tp-shop-details__quantity .tp-cart-plus {
  position: absolute;
  top: 0;
  right: 0;
  height: 64px;
  width: 64px;
  line-height: 64px;
  text-align: center;
  color: var(--tp-common-black);
}
.tp-shop-details__btn {
  line-height: 0;
}
@media (max-width: 767px) {
  .tp-shop-details__btn {
    margin-bottom: 30px;
  }
}
.tp-shop-details__right-warp {
  margin-top: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-shop-details__right-warp {
    margin-bottom: 50px;
  }
}
.tp-shop-details__title-sm {
  font-weight: 700;
  font-size: 28px;
  color: #060728;
  padding-bottom: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-shop-details__title-sm {
    font-size: 32px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-shop-details__title-sm {
    font-size: 29px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-shop-details__title-sm {
    font-size: 29px;
  }
  .tp-shop-details__title-sm br {
    display: none;
  }
}
@media (max-width: 767px) {
  .tp-shop-details__title-sm {
    font-size: 30px;
  }
  .tp-shop-details__title-sm br {
    display: none;
  }
}
.tp-shop-details__text {
  margin-bottom: 50px;
}
.tp-shop-details__text-2 p {
  padding-bottom: 15px;
  padding-right: 40px;
}
.tp-shop-details__price {
  margin-bottom: 20px;
}
.tp-shop-details__price span {
  font-weight: 700;
  font-size: 18px;
  color: #060728;
}
.tp-shop-details__price span.red-color {
  border-radius: 1px;
  background: #EA1B25;
  font-size: 14px;
  color: var(--tp-common-white);
  width: 51px;
  line-height: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
}
.tp-shop-details__price del {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  margin-left: 13px;
  margin-right: 10px;
}
.tp-shop-details__product-info {
  margin-bottom: 30px;
}
.tp-shop-details__product-info ul li {
  color: var(--tp-common-black);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 23px;
  list-style-type: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-shop-details__product-info ul li {
    font-size: 17px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-shop-details__product-info ul li {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .tp-shop-details__product-info ul li {
    font-size: 16px;
  }
}
.tp-shop-details__product-info ul li:last-child {
  margin-bottom: 0;
}
.tp-shop-details__product-info ul li > span {
  color: #232323;
  font-family: var(--tp-ff-heading);
  font-size: 16px;
  font-weight: 600;
}
.tp-shop-details__social span {
  color: #121416;
  font-family: var(--tp-ff-heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  display: inline-block;
  margin-right: 10px;
}
.tp-shop-details__social a {
  display: inline-block;
  font-size: 16px;
  color: #071C1F;
  transition: 0.3s;
  margin-right: 11px;
}
.tp-shop-details__social a:hover {
  color: var(--tp-theme-1);
}
.tp-shop-details__size {
  display: inline-block;
  margin-left: 25px;
}
.tp-shop-details__size > span {
  display: inline-block;
  border: 1px solid #E8E8E8;
  padding: 4px 13px;
  color: #8D8884;
  font-family: --tp-ff-heading;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: 0.3s;
  margin-right: 7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-shop-details__size > span {
    padding: 4px 8px;
  }
}
.tp-shop-details__size > span:hover {
  background-color: var(--tp-theme-1);
  border: 1px solid var(--tp-theme-1);
  color: var(--tp-common-white);
}
.tp-shop-details__size > span.active {
  background-color: var(--tp-theme-1);
  border: 1px solid var(--tp-theme-1);
  color: var(--tp-common-white);
}
.tp-shop-details__variation-list {
  display: inline-block;
  margin-left: 17px;
}
.tp-shop-details__variation-list button {
  transform: translateY(3px);
}
.tp-shop-details__variation-list button span {
  width: 14.27px;
  height: 14px;
  background-color: var(--tp-theme-1);
  display: inline-block;
  border-radius: 50%;
  margin-right: 12px;
}
.tp-shop-details__variation-list button span.red {
  background-color: red;
}
.tp-shop-details__variation-list button span.blue {
  background-color: blue;
}
.tp-shop-details__variation-list button span.purple {
  background-color: purple;
}

.tp-product-quantity .cart-minus, .tp-product-quantity .cart-plus {
  cursor: pointer;
  color: #8D8884;
}
.tp-product-quantity .cart-minus:hover, .tp-product-quantity .cart-plus:hover {
  color: var(--tp-theme-primary);
}
.tp-product-quantity input {
  height: 30px;
  width: 32px;
  font-size: 14px;
  border: none;
  font-weight: 700;
  text-align: center;
}

.product-rating {
  margin-right: 20px;
}
.product-rating a {
  font-size: 16px;
  color: #FFDC60;
}

.product-dinfo {
  display: flex;
}

.product-dprice del {
  font-size: 20px;
  color: #B9B9B9;
}

.pro-details-nav {
  background: #F9FAFB;
  display: inline-block;
  padding: 7px 7px;
}

.pro-details-nav-btn {
  border: none;
}
.pro-details-nav-btn li {
  font-weight: 500;
  font-size: 18px;
  color: var(--tp-text-body);
  position: relative;
}
.pro-details-nav-btn li button span {
  position: relative;
  z-index: 9;
}
.pro-details-nav-btn li button::before {
  content: "";
  height: 100%;
  width: 102%;
  top: 0;
  left: -1px;
  background: #fff;
  position: absolute;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
}
.pro-details-nav-btn li button.active::before {
  opacity: 1;
  visibility: visible;
}
.pro-details-nav-btn li::after {
  position: absolute;
  content: "";
  height: 40px;
  width: 1px;
  background: #DFE3E9;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .pro-details-nav-btn li::after {
    display: none;
  }
}
.pro-details-nav-btn li:last-child::after {
  display: none;
}
@media (max-width: 767px) {
  .pro-details-nav-btn li {
    font-size: 16px;
  }
}
.pro-details-nav-btn li .nav-links {
  padding: 20px 45px;
  border-radius: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pro-details-nav-btn li .nav-links {
    padding: 10px 20px;
  }
}
@media (max-width: 767px) {
  .pro-details-nav-btn li .nav-links {
    padding: 5px 15px;
  }
}
.pro-details-nav-btn li .nav-links.active {
  background: var(--tp-common-white);
  color: var(--tp-common-black);
}

.tab-para p {
  font-size: 16px;
  line-height: 30px;
}
@media (max-width: 767px) {
  .tab-para p {
    font-size: 14px;
  }
}

.comments-box {
  margin-bottom: 50px;
}

.user-rating ul li {
  display: inline-block;
  color: #FFDC60;
}

.comments-text span,
.comments-text p {
  font-size: 14px;
  color: #777777;
  line-height: 26px;
}

.comment-title p {
  color: #777777;
  font-size: 16px;
}

.comment-rating span {
  font-weight: 500;
  margin-right: 5px;
}
.comment-rating ul li {
  display: inline-block;
  color: #FFDC60;
}

.comment-input textarea {
  width: 100%;
  height: 120px;
  margin-bottom: 20px;
  border: 1px solid #e7e7e7;
  padding: 20px;
  resize: none;
}
.comment-input textarea:focus {
  outline: 0;
  border: 1px solid var(--tp-theme-1);
}
.comment-input input {
  width: 100%;
  height: 50px;
  resize: none;
  outline: 0;
  border: 1px solid #e7e7e7;
  padding: 8px 20px;
  margin-bottom: 30px;
}
.comment-input input:focus {
  border: 1px solid var(--tp-theme-1);
}

.comments-avatar {
  flex: 0 0 auto;
}

.table .add-info {
  font-size: 18px;
  font-weight: 500;
}

.table td {
  padding: 18px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .shop-left-right {
    margin-left: 0;
    margin-right: 0;
  }
}

.tp-comments-title {
  font-size: 24px;
  color: var(--tp-common-black);
  font-weight: 700;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .tp-comments-title {
    font-size: 18px;
  }
}

.avatar-name b {
  color: var(--tp-common-black);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
}

.shop-faq .accordion-header button {
  font-size: 18px;
  padding: 20px 55px 20px 30px;
}
@media (max-width: 767px) {
  .shop-faq .accordion-header button {
    font-size: 14px;
  }
}
.shop-faq .accordion-content p br {
  display: none;
}
.shop-faq .accordion-content p {
  padding: 0 75px 20px 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-button a {
    margin-bottom: 10px;
  }
}

.latest-comments ul li {
  list-style-type: none;
}

.comment-title {
  font-size: 24px;
  color: var(--tp-common-black);
  font-weight: 700;
  text-transform: capitalize;
}

.tp-product-slider-title {
  color: var(--tp-common-black);
  font-size: 30px;
  font-weight: 500;
}

.product-details-list-box > span {
  color: var(--tp-common-black);
  font-size: 22px;
  font-weight: 700;
  display: block;
  margin-bottom: 30px;
}
.product-details-list-box ul {
  display: inline-block;
}
.product-details-list-box ul li {
  color: var(--tp-common-black);
  font-size: 16px;
  font-weight: 400;
  width: 50%;
  float: left;
  padding-left: 30px;
  position: relative;
  padding-bottom: 12px;
  list-style-type: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .product-details-list-box ul li {
    width: 100%;
  }
}
.product-details-list-box ul li svg {
  color: var(--tp-theme-1);
  position: absolute;
  top: 8px;
  left: 0;
}

/*----------------------------------------*/
/*  7.5 contact css start
/*----------------------------------------*/
.tp-contact-right {
  margin-left: -20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-right {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-right {
    margin-top: 40px;
    margin-left: 0;
  }
}
.tp-contact-text p {
  margin-right: 95px;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-contact-text p {
    font-size: 14px;
    margin-right: 65px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-text p {
    font-size: 14px;
    margin-right: 0;
  }
}
.tp-contact-shape-1 {
  position: absolute;
  bottom: 0;
  left: -2%;
  z-index: -1;
  animation: tptranslateX2 2.5s infinite alternate;
}
.tp-contact-icon {
  position: absolute;
  top: 16px;
  right: 20px;
}
.tp-contact-icon span {
  color: var(--tp-common-white);
}
.tp-contact-input-box {
  position: relative;
}
.tp-contact-input-box input {
  padding-right: 50px;
  border: 1px solid rgba(230, 230, 230, 0.4);
  color: var(--tp-common-white);
}
.tp-contact-input-box input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--tp-common-white);
}
.tp-contact-input-box input::-moz-placeholder { /* Firefox 19+ */
  color: var(--tp-common-white);
}
.tp-contact-input-box input:-moz-placeholder { /* Firefox 4-18 */
  color: var(--tp-common-white);
}
.tp-contact-input-box input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: var(--tp-common-white);
}
.tp-contact-input-box input::placeholder { /* MODERN BROWSER */
  color: var(--tp-common-white);
}
.tp-contact-textarea-box {
  position: relative;
}
.tp-contact-textarea-box textarea {
  height: 150px;
  padding-right: 50px;
  border: 1px solid rgba(230, 230, 230, 0.4);
  color: var(--tp-common-white);
}
.tp-contact-textarea-box textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--tp-common-white);
}
.tp-contact-textarea-box textarea::-moz-placeholder { /* Firefox 19+ */
  color: var(--tp-common-white);
}
.tp-contact-textarea-box textarea:-moz-placeholder { /* Firefox 4-18 */
  color: var(--tp-common-white);
}
.tp-contact-textarea-box textarea:-ms-input-placeholder { /* IE 10+  Edge*/
  color: var(--tp-common-white);
}
.tp-contact-textarea-box textarea::placeholder { /* MODERN BROWSER */
  color: var(--tp-common-white);
}
.tp-contact-textarea-box textarea:focus {
  border-color: var(--tp-theme-1);
}
.tp-contact-box {
  margin-left: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-box {
    margin-left: 0;
  }
}
.tp-contact-box ul li {
  list-style-type: none;
}
.tp-contact-box ul li:not(:last-child) {
  margin-bottom: 30px;
}
.tp-contact-box p {
  color: var(--tp-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-box p {
    font-size: 14px;
  }
}
.tp-contact-icon-2 span {
  height: 50px;
  width: 50px;
  border-radius: 10%;
  line-height: 50px;
  text-align: center;
  background-color: black;
  display: inline-block;
  margin-right: 28px;
  color: var(--tp-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-icon-2 span {
    margin-right: 18px;
  }
}
.tp-contact-content h5 {
  font-size: 20px;
  font-weight: 600;
}
.tp-contact-content a {
  color: var(--tp-common-black);
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#000000, #000000), linear-gradient(#000000, #000000);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-content a {
    font-size: 14px;
  }
}
.tp-contact-content a:hover {
  background-size: 0% 1px, 100% 1px;
}

.tp-form-input-box input {
  height: 70px;
  line-height: 70px;
  color: var(--tp-common-black);
  border: 1px solid #E6E6E6;
}
.tp-form-input-box input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--tp-common-black);
}
.tp-form-input-box input::-moz-placeholder { /* Firefox 19+ */
  color: var(--tp-common-black);
}
.tp-form-input-box input:-moz-placeholder { /* Firefox 4-18 */
  color: var(--tp-common-black);
}
.tp-form-input-box input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: var(--tp-common-black);
}
.tp-form-input-box input::placeholder { /* MODERN BROWSER */
  color: var(--tp-common-black);
}
.tp-form-textarea-box textarea {
  height: 199px;
  color: var(--tp-common-black);
  border: 1px solid #E6E6E6;
}
.tp-form-textarea-box p,
.tp-form-textarea-box .wpcf7-form-control-wrap
{
	width:100%
}
@media (max-width: 767px) {
  .tp-form-textarea-box textarea {
    height: 160px;
  }
}
.tp-form-textarea-box textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--tp-common-black);
}
.tp-form-textarea-box textarea::-moz-placeholder { /* Firefox 19+ */
  color: var(--tp-common-black);
}
.tp-form-textarea-box textarea:-moz-placeholder { /* Firefox 4-18 */
  color: var(--tp-common-black);
}
.tp-form-textarea-box textarea:-ms-input-placeholder { /* IE 10+  Edge*/
  color: var(--tp-common-black);
}
.tp-form-textarea-box textarea::placeholder { /* MODERN BROWSER */
  color: var(--tp-common-black);
}
.tp-form-textarea-box textarea:focus {
  border-color: #E6E6E6;
  outline: none;
}

.tp-form-box-style-2 {
  margin-right: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-form-box-style-2 {
    margin-right: 0;
  }
}
.tp-form-box-style-2 .tp-form-input-box input {
  border: none;
  background-color: #F8F8F8;
  border: 1px solid #E0E2E3;
}
.tp-form-box-style-2 .tp-form-input-box input:focus {
  border-color: #E0E2E3;
  outline: none;
}
.tp-form-box-style-2 .tp-form-textarea-box textarea {
  background-color: #F8F8F8;
  border: 1px solid #E0E2E3;
}
.tp-form-box-style-2 .tp-form-textarea-box textarea:focus {
  border-color: #E0E2E3;
  outline: none;
}
.tp-form-box-style-2 .tp-btn-theme {
  border-radius: 0;
}

.tp-map-box {
  line-height: 0;
}
.tp-map-box iframe {
  height: 361px;
  width: 100%;
}

/*----------------------------------------*/
/*  7.18 team css start
/*----------------------------------------*/
.tp-team-item:hover .tp-team-thumb img {
  transform: scale(1.2);
}
.tp-team-item:hover .tp-team-social a {
  opacity: 1;
  visibility: visible;
}
.tp-team-item:hover .tp-team-social a:nth-child(1) {
  transform: translateX(0px);
}
.tp-team-item:hover .tp-team-social a:nth-child(2) {
  transform: translateX(0px);
}
.tp-team-item:hover .tp-team-social a:nth-child(3) {
  transform: translateX(0px);
}
.tp-team-item:hover .tp-team-social a:nth-child(4) {
  transform: translateX(0px);
}
.tp-team-thumb {
  overflow: hidden;
}
.tp-team-thumb img {
  width: 100%;
  transition: 1.3s all ease;
}
.tp-team-social {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.tp-team-social a {
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  color: var(--tp-theme-1);
  background-color: var(--tp-common-white);
  opacity: 0;
  visibility: hidden;
}
.tp-team-social a:nth-child(1) {
  transition: 0.3s;
  transform: translateX(-20px);
}
.tp-team-social a:nth-child(2) {
  transition: 0.5s;
  transform: translateX(-30px);
}
.tp-team-social a:nth-child(3) {
  transition: 0.7s;
  transform: translateX(-40px);
}
.tp-team-social a:nth-child(4) {
  transition: 0.9s;
  transform: translateX(-50px);
}
.tp-team-social a:hover {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}
.tp-team-social a:not(:last-child) {
  margin-right: 7px;
}
.tp-team-author-info span {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-team-author-info span {
    font-size: 14px;
  }
}
.tp-team-author-info span::before {
  content: "";
  height: 1px;
  width: 38px;
  display: inline-block;
  margin-right: 10px;
  transform: translateY(-4px);
  background-color: var(--tp-theme-1);
}
.tp-team-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-team-title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-team-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-team-title {
    font-size: 18px;
  }
}
.tp-team-title a {
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#000000, #000000), linear-gradient(#000000, #000000);
}
.tp-team-title a:hover {
  background-size: 0% 1px, 100% 1px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-team-title-box {
    margin-bottom: 30px;
  }
}
.tp-team-top-text {
  margin-left: -35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-team-top-text {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-team-top-text p {
    font-size: 14px;
  }
}

.tp-team-style-2 .tp-team-item:hover .tp-team-social-box {
  transform: scaleY(1);
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}
.tp-team-style-2 .tp-team-social-box {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transform: scaleY(0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  transform-origin: bottom center;
  z-index: 2;
}
.tp-team-style-2 .tp-team-social-box a {
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  margin: 5px 0;
  transition: 0.3s;
  color: var(--tp-common-white);
  background-color: rgba(255, 255, 255, 0.1);
}
.tp-team-style-2 .tp-team-social-box a:hover {
  background-color: var(--tp-theme-1);
}
.tp-team-style-2 .tp-team-author-info span::before {
  display: none;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-team-style-3 .tp-team-item {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .tp-team-style-3 .tp-team-title-box {
    margin-bottom: 30px;
  }
}
.tp-team-style-3 .tp-team-big-text {
  position: absolute;
  content: "";
  top: 86%;
  right: -7.4%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-team-style-3 .tp-team-big-text {
    right: -3.4%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-team-style-3 .tp-team-big-text {
    right: -7.4%;
  }
}
.tp-team-style-3 .tp-team-big-text h6 {
  color: var(--tp-theme-1);
  font-size: 148px;
  font-style: normal;
  font-weight: 700;
  opacity: 0.05;
  text-transform: capitalize;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-team-style-3 .tp-team-big-text h6 {
    font-size: 130px;
  }
}
.tp-team-style-3 .tp-team-thumb {
  position: relative;
  height: 100%;
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .tp-team-style-3 .tp-team-thumb {
    width: 100%;
  }
}
.tp-team-style-3 .tp-team-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .tp-team-style-3 .tp-team-thumb img {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-team-style-3 .tp-team-thumb {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.tp-team-style-3 .tp-team-author-info {
  padding: 40px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-team-style-3 .tp-team-author-info {
    padding-left: 30px;
    padding-bottom: 30px;
    padding-top: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-team-style-3 .tp-team-author-info {
    padding: 40px;
  }
}
.tp-team-style-3 .tp-team-author-info span::before {
  display: none;
}
.tp-team-style-3 .tp-team-social-box a {
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  color: var(--tp-theme-1);
  background-color: #F8F8F8;
  transition: 0.3s;
}
.tp-team-style-3 .tp-team-social-box a:not(:last-child) {
  margin-right: 7px;
}
.tp-team-style-3 .tp-team-social-box a:hover {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}

.tp-team-style-4 .tp-team-item {
  box-shadow: 0px 6px 25px 0px rgba(0, 0, 0, 0.05);
}
.tp-team-style-4 .tp-team-active {
  margin: -30px;
  padding: 30px;
}
.tp-team-style-4 .tp-team-author-info {
  padding: 30px 30px;
  padding-top: 25px;
}

.tp-team-inner-style .tp-team-item {
  background-color: #F8F8F8;
  height: 100%;
}

/* Modern Team Card Design */
.modern-team-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.modern-team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(166, 161, 130, 0.2);
  border-color: rgba(166, 161, 130, 0.2);
}

.modern-team-card .tp-team-thumb {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #f0f0f0;
}

.modern-team-card .tp-team-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modern-team-card:hover .tp-team-thumb img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.modern-team-card:hover .team-overlay {
  opacity: 1;
}

.modern-team-card .tp-team-author-info {
  padding: 32px 28px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.modern-team-card .tp-team-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.modern-team-card .tp-team-title a {
  color: inherit;
  text-decoration: none;
  background: none;
}

.modern-team-card:hover .tp-team-title a {
  color: var(--tp-theme-1);
}

.tp-team-role {
  font-size: 15px;
  color: #6b6b6b;
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
  letter-spacing: -0.2px;
}

.modern-team-card .tp-team-social-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.modern-team-card .tp-team-social-box a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b6b6b;
  background: #f8f8f8;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 14px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.modern-team-card .tp-team-social-box a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--tp-theme-1);
  transition: left 0.4s ease;
  z-index: 0;
}

.modern-team-card .tp-team-social-box a i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.modern-team-card .tp-team-social-box a:hover {
  color: #ffffff;
  background: var(--tp-theme-1);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(166, 161, 130, 0.3);
}

.modern-team-card .tp-team-social-box a:hover::before {
  left: 0;
}

.modern-team-card .tp-team-social-box a:hover i {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .modern-team-card .tp-team-thumb {
    height: 300px;
  }
  
  .modern-team-card .tp-team-author-info {
    padding: 28px 24px;
  }
  
  .modern-team-card .tp-team-title {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .modern-team-card .tp-team-thumb {
    height: 280px;
  }
  
  .modern-team-card .tp-team-author-info {
    padding: 26px 22px;
  }
  
  .modern-team-card .tp-team-title {
    font-size: 19px;
  }
  
  .tp-team-role {
    font-size: 14px;
  }
  
  .modern-team-card .tp-team-social-box a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .modern-team-card {
    border-radius: 20px;
  }
  
  .modern-team-card .tp-team-thumb {
    height: 320px;
  }
  
  .modern-team-card .tp-team-author-info {
    padding: 24px 20px;
  }
  
  .modern-team-card .tp-team-title {
    font-size: 20px;
  }
  
  .tp-team-role {
    font-size: 14px;
    margin-bottom: 18px;
  }
  
  .modern-team-card .tp-team-social-box {
    gap: 8px;
    padding-top: 18px;
  }
  
  .modern-team-card .tp-team-social-box a {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
}

@media (max-width: 575px) {
  .modern-team-card .tp-team-thumb {
    height: 300px;
  }
  
  .modern-team-card .tp-team-author-info {
    padding: 22px 18px;
  }
  
  .modern-team-card .tp-team-title {
    font-size: 18px;
  }
  
  .tp-team-role {
    font-size: 13px;
  }
}

.tp-team-inner-style .tp-team-author-info {
  padding: 40px;
}
.tp-team-inner-style .tp-team-social-box a {
  width: auto;
  background-color: transparent;
  color: var(--tp-common-black);
}
.tp-team-inner-style .tp-team-social-box a:not(:last-child) {
  margin-right: 20px;
}
.tp-team-inner-style .tp-team-social-box a:hover {
  color: var(--tp-theme-1);
  background-color: transparent;
}
.tp-team-inner-style .tp-team-author-info span::before {
  background-color: var(--tp-common-black);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-team-details-inner-style .tp-section-title {
    font-size: 39px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-team-details-inner-style .tp-section-title {
    font-size: 35px;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .tp-team-details-inner-style .tp-section-title {
    font-size: 26px;
    padding-bottom: 30px;
  }
}
.tp-team-details-title {
  font-size: 48px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-team-details-title {
    font-size: 33px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-team-details-title {
    font-size: 27px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-team-details-title {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .tp-team-details-title {
    font-size: 22px;
  }
}
.tp-team-details-wrap {
  margin-left: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-team-details-wrap {
    margin-left: 0;
  }
}
.tp-team-details-wrap .tp-team-author-info span::before {
  width: 70px;
  background-color: var(--tp-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-team-details-text p br {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-team-details-text p {
    font-size: 14px;
  }
  .tp-team-details-text p br {
    display: none;
  }
}
.tp-team-details-social {
  padding-left: 104px;
}
@media (max-width: 767px) {
  .tp-team-details-social {
    margin-top: 30px;
    padding-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-team-details-social {
    padding-left: 60px;
  }
}
.tp-team-details-social span {
  display: inline-block;
  margin-right: 22px;
}
.tp-team-details-social a {
  display: inline-block;
  color: var(--tp-theme-1);
  transition: 0.3s;
}
.tp-team-details-social a:hover {
  color: var(--tp-common-black);
}
.tp-team-details-social a:not(:last-child) {
  margin-right: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-team-details-thumb {
    margin-bottom: 30px;
  }
}
.tp-team-details-thumb img {
  width: 100%;
}

/*----------------------------------------*/
/*  7.12 price css start
/*----------------------------------------*/
.tp-price-item {
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}
.tp-price-content {
  padding: 40px 40px;
  padding-bottom: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .tp-price-content {
    padding: 40px 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-price-content {
    padding: 40px 50px;
  }
}
.tp-price-title {
  padding-top: 43px;
  font-size: 28px;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-price-title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-price-title {
    font-size: 22px;
  }
}
.tp-price-title a {
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#000000, #000000), linear-gradient(#000000, #000000);
}
.tp-price-title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-price-rate {
  padding: 18px 0;
  background-color: rgba(166, 161, 130, 0.1);
}
.tp-price-rate h6 {
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin-bottom: 0;
  color: var(--tp-theme-1);
}
.tp-price-rate h6 i {
  font-style: normal;
  font-size: 48px;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-price-rate h6 i {
    font-size: 44px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-price-rate h6 i {
    font-size: 38px;
  }
}
.tp-price-list ul li {
  list-style-type: none;
  position: relative;
  padding-left: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-price-list ul li {
    font-size: 14px;
  }
}
.tp-price-list ul li:not(:last-child) {
  margin-bottom: 7px;
}
.tp-price-list ul li i {
  position: absolute;
  top: 7px;
  left: 0;
  color: var(--tp-theme-1);
}

/*----------------------------------------*/
/*  7.9 gallery css start
/*----------------------------------------*/
.tp-gallery-item:hover .tp-gallery-thumb img {
  transform: scale(1.2);
}
.tp-gallery-thumb {
  overflow: hidden;
  position: relative;
}
.tp-gallery-thumb img {
  width: 100%;
  transition: 1.3s all ease;
}
.tp-gallery-thumb::after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  pointer-events: none;
}
.tp-gallery-thumb:hover::after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.tp-gallery-title {
  color: var(--tp-common-white);
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .tp-gallery-title {
    margin-bottom: 20px;
  }
}
.tp-gallery-title a {
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
}
.tp-gallery-title a:hover {
  background-size: 0% 1px, 100% 1px;
}
.tp-gallery-content {
  position: absolute;
  bottom: -11%;
  left: 40px;
  right: 40px;
  padding: 45px 50px;
  padding-top: 40px;
  transform: perspective(400px) rotateX(-90deg);
  transform-origin: center;
  transition: all 0.5s ease-in-out;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-gallery-content {
    padding: 40px 20px;
    left: 20px;
    right: 20px;
  }
}
.tp-gallery-content p {
  color: var(--tp-common-white);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-gallery-content p {
    font-size: 12px;
  }
}
.tp-gallery-active {
  margin: -150px 0;
  padding: 150px 0;
}
.tp-gallery-active .swiper-slide.swiper-slide-active .tp-gallery-content {
  transform: perspective(400px) rotateX(0deg);
}

/*----------------------------------------*/
/*  7.11 newsletter css
/*----------------------------------------*/
.tp-newsletter-bg {
  position: relative;
}
.tp-newsletter-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 43%;
  background-color: var(--tp-common-black);
}
.tp-newsletter-height {
  padding: 60px 70px;
  padding-right: 135px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-newsletter-height {
    padding: 60px 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-newsletter-height {
    padding: 60px 50px;
  }
}
@media (max-width: 767px) {
  .tp-newsletter-height {
    padding: 60px 20px;
  }
}
.tp-newsletter-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 17px;
  color: var(--tp-common-white);
  text-transform: capitalize;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-newsletter-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-newsletter-title {
    font-size: 42px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-newsletter-title {
    font-size: 34px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-newsletter-title {
    font-size: 38px;
  }
  .tp-newsletter-title br {
    display: none;
  }
}
@media (max-width: 767px) {
  .tp-newsletter-title {
    font-size: 27px;
  }
  .tp-newsletter-title br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-newsletter-content {
    margin-bottom: 40px;
  }
}
.tp-newsletter-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-newsletter-content p br {
    display: none;
  }
}
@media (max-width: 767px) {
  .tp-newsletter-content p {
    font-size: 14px;
  }
  .tp-newsletter-content p br {
    display: none;
  }
}
@media (max-width: 767px) {
  .tp-newsletter-input-box {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-newsletter-input-box {
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 440px) and (max-width: 575px) {
  .tp-newsletter-input-box {
    width: 100%;
  }
}
.tp-newsletter-input-box input {
  width: 469px;
  padding-right: 60px;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-newsletter-input-box input {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-newsletter-input-box input {
    height: 50px;
    line-height: 50px;
    width: 100%;
  }
}
@media only screen and (min-width: 440px) and (max-width: 575px) {
  .tp-newsletter-input-box input {
    width: 100%;
  }
}
.tp-newsletter-input-box input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #54595F;
}
.tp-newsletter-input-box input::-moz-placeholder { /* Firefox 19+ */
  color: #54595F;
}
.tp-newsletter-input-box input:-moz-placeholder { /* Firefox 4-18 */
  color: #54595F;
}
.tp-newsletter-input-box input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: #54595F;
}
.tp-newsletter-input-box input::placeholder { /* MODERN BROWSER */
  color: #54595F;
}
.tp-newsletter-input-icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.tp-newsletter-input-icon span {
  color: #54595F;
}
.tp-newsletter-input-wrap {
  margin-left: -40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-newsletter-input-wrap {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .tp-newsletter-input-wrap {
    margin-left: 0;
    flex-wrap: wrap;
  }
}
.tp-newsletter-wrap .tp-btn-black {
  margin-left: 10px;
  height: 65px;
  line-height: 65px;
  padding: 0 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-newsletter-wrap .tp-btn-black {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .tp-newsletter-wrap .tp-btn-black {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    margin-left: 0;
  }
}
.tp-newsletter-shape-1 {
  position: absolute;
  top: 18%;
  left: 4%;
  opacity: 0.4;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-newsletter-shape-1 {
    left: 2%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-newsletter-shape-1 {
    left: 0%;
    top: 50%;
    transform: scale(0.6);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-newsletter-shape-1 {
    display: none;
  }
}

/*----------------------------------------*/
/*  7.14 progress css start
/*----------------------------------------*/
.tp-progress-bar-item {
  overflow: hidden;
  margin-bottom: 50px;
  padding-top: 11px;
  background-color: #0D0D0D;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-progress-bar-item {
    padding-top: 20px;
  }
}
.tp-progress-bar-item label {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 17px;
  display: inline-block;
  padding-left: 20px;
  color: var(--tp-common-white);
}
@media (max-width: 767px) {
  .tp-progress-bar-item label {
    font-size: 12px;
    margin-bottom: 7px;
    padding-left: 0;
  }
}
.tp-progress-bar .progress {
  overflow: visible;
  border-radius: 10px;
  background: #0D0D0D;
  height: 6px;
  border-radius: 0;
}
.tp-progress-bar .progress-bar {
  background-color: var(--tp-theme-1);
  position: relative;
  overflow: visible;
  height: 100%;
  border-radius: 0px;
  top: 0;
}
.tp-progress-bar .progress-bar span {
  position: absolute;
  right: 0;
  top: -28px;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2.4px;
  color: var(--tp-common-white);
}

.tp-progress-2-bar-wrap h5 {
  font-size: 28px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-progress-2-bar-wrap h5 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-progress-2-bar-wrap h5 {
    font-size: 20px;
  }
}
.tp-progress-2-bar-item {
  overflow: hidden;
  position: relative;
  width: 76%;
}
@media (max-width: 767px) {
  .tp-progress-2-bar-item {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-progress-2-bar-item {
    width: 80%;
  }
}
.tp-progress-2-bar-item:not(:last-child) {
  padding-bottom: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-progress-2-bar-item:not(:last-child) {
    font-size: 14px;
    padding-bottom: 17px;
  }
}
.tp-progress-2-bar-item label {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 8px;
  display: inline-block;
}
@media (max-width: 767px) {
  .tp-progress-2-bar-item label {
    font-size: 14px;
    margin-bottom: 7px;
    padding-left: 12px;
  }
}
.tp-progress-2-bar-item span {
  position: absolute;
  right: 0;
  top: 0;
}
.tp-progress-2-bar .progress {
  overflow: visible;
  border-radius: 10px;
  background: #E6E6E6;
  height: 8px;
}
.tp-progress-2-bar .progress-bar {
  background-color: var(--tp-theme-1);
  position: relative;
  overflow: visible;
  height: 100%;
  top: 0;
  border-radius: 10px;
}
.tp-progress-2-bar .progress-bar span {
  position: absolute;
  right: 0;
  top: -20px;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2.4px;
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  7.4 checkout css start
/*----------------------------------------*/
.tp-checkout-verify-item {
  margin-bottom: 40px;
}
.tp-checkout-verify-item:not(:last-child) {
  margin-bottom: 14px;
}
.tp-checkout-verify-reveal {
  font-size: 14px;
  color: var(--tp-common-black);
  margin-bottom: 0;
  display: inline-block;
  border: 1px dashed #AAB0B2;
  padding: 18px 40px;
  width: 100%;
}
@media (max-width: 767px) {
  .tp-checkout-verify-reveal {
    padding: 40px 15px;
  }
}
.tp-checkout-verify-reveal button {
  color: var(--tp-theme-1);
  position: relative;
}
.tp-checkout-verify-reveal button::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background-color: var(--tp-theme-1);
}
.tp-checkout-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-2);
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  text-align: center;
}
.tp-checkout-btn:hover {
  background-color: var(--tp-common-black);
  color: var(--tp-common-white);
}
.tp-checkout-input {
  margin-bottom: 20px;
}
.tp-checkout-input label {
  font-weight: 500;
  color: var(--tp-common-black);
  padding-bottom: 10px;
  font-size: 14px;
}
.tp-checkout-input label span {
  color: red;
}
.tp-checkout-input input, .tp-checkout-input textarea {
  width: 100%;
  background: #FFFFFF;
  color: var(--tp-common-black);
  height: 64px;
  border: 1px solid #E0E2E3;
}
.tp-checkout-input input:focus, .tp-checkout-input textarea:focus {
  border-color: var(--tp-theme-1);
}
.tp-checkout-input textarea {
  height: 200px;
  resize: none;
  padding: 25px;
  font-size: 14px;
}
.tp-checkout-input .nice-select {
  height: 64px;
  line-height: 63px;
  border-radius: 0;
  border: 0;
  float: none;
  padding: 0 25px;
  font-size: 14px;
}
.tp-checkout-input .nice-select::after {
  right: 26px;
}
.tp-checkout-input .nice-select.open .list {
  -webkit-transform: scale(1) translateY(0px);
  -moz-transform: scale(1) translateY(0px);
  -ms-transform: scale(1) translateY(0px);
  -o-transform: scale(1) translateY(0px);
  transform: scale(1) translateY(0px);
}
.tp-checkout-input .nice-select .list {
  margin-top: 0;
  border-radius: 0;
  transform-origin: center center;
  -webkit-transform: scale(0.9) translateY(0px);
  -moz-transform: scale(0.9) translateY(0px);
  -ms-transform: scale(0.9) translateY(0px);
  -o-transform: scale(0.9) translateY(0px);
  transform: scale(0.9) translateY(0px);
  width: 100%;
  padding: 12px 0;
}
.tp-checkout-input .nice-select .list .option {
  line-height: 1.2;
  min-height: inherit;
  padding-top: 5px;
  padding-bottom: 5px;
}
.tp-checkout-input .nice-select .list .option:hover {
  color: var(--tp-theme-2);
}
.tp-checkout-option {
  margin-bottom: 4px;
}
.tp-checkout-option-wrapper {
  margin-top: 10px;
  margin-bottom: 17px;
}
.tp-checkout-option input {
  display: none;
}
.tp-checkout-option input:checked ~ label::after {
  background-color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
}
.tp-checkout-option input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.tp-checkout-option label {
  font-size: 15px;
  color: #55585B;
  position: relative;
  padding-left: 26px;
  z-index: 1;
}
.tp-checkout-option label::after {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  border: 1px solid rgba(6, 7, 40, 0.2);
  z-index: -1;
  transition: 0.3s;
}
.tp-checkout-option label::before {
  position: absolute;
  content: "\f00c";
  top: -1px;
  left: 5px;
  font-size: 11px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--tp-common-white);
  transition: 0.3s;
  font-family: "Font Awesome 5 Pro";
}
.tp-checkout-option label a:hover {
  color: var(--tp-theme-2);
}
.tp-checkout-option label:hover {
  cursor: pointer;
}
.tp-checkout-bill-area {
  padding: 45px 40px 24px;
  background-color: var(--tp-grey-1);
}
@media (max-width: 767px) {
  .tp-checkout-bill-area {
    padding: 45px 25px 24px;
  }
}
.tp-checkout-bill-title {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 35px;
}
.tp-checkout-place {
  padding: 44px 50px 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-checkout-place {
    padding: 35px 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-checkout-place {
    padding: 35px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-checkout-place {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .tp-checkout-place {
    margin-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.tp-checkout-place-title {
  font-size: 26px;
  font-weight: 600;
  margin-right: 37px;
}
.tp-checkout-payment {
  padding-bottom: 26px;
  margin-bottom: 24px;
  border-bottom: 1px solid #E0E2E3;
}
.tp-checkout-payment-item:not(:last-child) {
  margin-bottom: 10px;
}
.tp-checkout-payment-item.paypal-payment label {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.tp-checkout-payment-item input {
  display: none;
}
.tp-checkout-payment-item input:checked ~ label::before {
  opacity: 1;
  visibility: visible;
}
.tp-checkout-payment-item label {
  font-size: 14px;
  position: relative;
  padding-left: 27px;
  font-weight: 500;
  color: var(--tp-common-black);
}
.tp-checkout-payment-item label:hover {
  cursor: pointer;
}
.tp-checkout-payment-item label::after {
  position: absolute;
  content: "";
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--tp-theme-1);
  transition: 0.3s;
}
.tp-checkout-payment-item label::before {
  position: absolute;
  content: "";
  left: 3px;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--tp-theme-1);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.tp-checkout-payment-item label img {
  margin-left: 14px;
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -o-transform: translateY(1px);
  transform: translateY(1px);
}
.tp-checkout-payment-item label a {
  margin-left: 20px;
  position: relative;
}
.tp-checkout-payment-desc {
  position: relative;
  padding-top: 10px;
  display: none;
}
.tp-checkout-payment-desc::after {
  position: absolute;
  content: "";
  left: 57px;
  top: 0;
  width: 16px;
  height: 16px;
  background-color: #fff;
  -webkit-transform: translateY(3px) rotate(45deg);
  -moz-transform: translateY(3px) rotate(45deg);
  -ms-transform: translateY(3px) rotate(45deg);
  -o-transform: translateY(3px) rotate(45deg);
  transform: translateY(3px) rotate(45deg);
}
.tp-checkout-payment-desc p {
  background-color: #fff;
  padding: 19px 30px;
  margin-left: 27px;
  font-size: 14px;
  line-height: 1.57;
  color: #55585B;
  margin-bottom: 0;
}
.tp-checkout-agree {
  margin-bottom: 24px;
}

.tp-return-customer {
  display: none;
  margin-top: 14px;
  padding: 40px 40px;
  background-color: var(--tp-grey-1);
}
@media (max-width: 767px) {
  .tp-return-customer {
    padding: 40px 15px;
  }
}
.tp-return-customer-input {
  margin-bottom: 20px;
}
.tp-return-customer-input label {
  font-weight: 500;
  color: var(--tp-common-black);
  padding-bottom: 10px;
}
.tp-return-customer-input label span {
  color: red;
}
.tp-return-customer-input input {
  width: 100%;
  background: #fff;
  color: var(--tp-common-black);
  height: 64px;
  transition: 0.3s;
  border: 1px solid #E0E2E3;
}
.tp-return-customer-input input:focus {
  border: 1px solid var(--tp-theme-1);
}
.tp-return-customer-remeber input {
  display: none;
}
.tp-return-customer-remeber input:checked ~ label::after {
  background-color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
}
.tp-return-customer-remeber input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.tp-return-customer-remeber label {
  font-size: 15px;
  color: #55585B;
  position: relative;
  padding-left: 26px;
  z-index: 1;
}
.tp-return-customer-remeber label::after {
  position: absolute;
  content: "";
  top: 6px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  border: 1px solid rgba(6, 7, 40, 0.2);
  z-index: -1;
  transition: 0.3s;
}
.tp-return-customer-remeber label::before {
  position: absolute;
  content: "\f00c";
  top: 0px;
  left: 5px;
  font-size: 10px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--tp-common-white);
  transition: 0.3s;
  font-family: "Font Awesome 5 Pro";
}
.tp-return-customer-remeber label a:hover {
  color: var(--tp-common-orange);
}
.tp-return-customer-remeber label:hover {
  cursor: pointer;
}
.tp-return-customer-forgot a {
  font-weight: 400;
  font-size: 15px;
  color: var(--tp-theme-2);
  position: relative;
  display: inline-block;
}
.tp-return-customer-forgot a::after {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  bottom: 4px;
  width: 0%;
  height: 1px;
  background-color: var(--tp-theme-primary);
}
.tp-return-customer-forgot a:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}

.tp-order-details {
  padding: 70px 100px 55px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-order-details {
    padding: 70px 70px 55px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-order-details {
    padding: 70px 30px 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-order-details {
    padding: 70px 50px 55px;
  }
}
@media (max-width: 767px) {
  .tp-order-details {
    padding: 40px 30px 45px;
  }
}
.tp-order-details-icon {
  margin-bottom: 22px;
}
.tp-order-details-icon span {
  display: inline-block;
  width: 120px;
  height: 120px;
  line-height: 118px;
  text-align: center;
  font-size: 55px;
  color: var(--tp-common-white);
  border: 1px solid rgba rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
.tp-order-details-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--tp-common-white);
  margin-bottom: 7px;
}
.tp-order-details-content p {
  font-size: 16px;
  color: var(--tp-common-white);
  line-height: 1.38;
}
.tp-order-details-item {
  margin-bottom: 38px;
}
.tp-order-details-item-wrapper .row [class*=col-]:nth-child(2n) .tp-order-details-item {
  padding-left: 40px;
}
@media (max-width: 767px) {
  .tp-order-details-item-wrapper .row [class*=col-]:nth-child(2n) .tp-order-details-item {
    padding-left: 0;
  }
}
.tp-order-details-item h4 {
  font-size: 18px;
  color: var(--tp-common-white);
  margin-bottom: 0;
  font-weight: 400;
}
.tp-order-details-item p {
  font-weight: 700;
  font-size: 18px;
  color: var(--tp-common-white);
  margin-bottom: 0;
}
.tp-order-info-wrapper {
  padding: 42px 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-order-info-wrapper {
    padding: 42px 40px;
  }
}
@media (max-width: 767px) {
  .tp-order-info-wrapper {
    padding: 42px 30px;
  }
}
.tp-order-info-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
}
.tp-order-info-list ul li {
  list-style: none;
  padding: 15px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tp-order-info-list ul li:not(:last-child) {
  border-bottom: 1px solid #E0E2E3;
}
.tp-order-info-list ul li span {
  font-size: 15px;
  color: var(--tp-common-black);
}
.tp-order-info-list ul li.tp-order-info-list-header {
  padding-top: 0;
  padding-bottom: 12px;
}
.tp-order-info-list ul li.tp-order-info-list-header h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
.tp-order-info-list ul li.tp-order-info-list-desc p {
  font-size: 15px;
  margin-bottom: 0;
}
.tp-order-info-list ul li.tp-order-info-list-desc p span {
  font-size: 15px;
  font-weight: 500;
}
.tp-order-info-list ul li.tp-order-info-list-subtotal span:last-child {
  color: var(--tp-theme-primary);
}
.tp-order-info-list ul li.tp-order-info-list-shipping span input {
  display: none;
}
.tp-order-info-list ul li.tp-order-info-list-shipping span input:checked ~ label::before {
  opacity: 1;
  visibility: visible;
}
.tp-order-info-list ul li.tp-order-info-list-shipping span label {
  font-size: 14px;
  position: relative;
  padding-right: 27px;
}
.tp-order-info-list ul li.tp-order-info-list-shipping span label span {
  color: var(--tp-theme-primary);
}
.tp-order-info-list ul li.tp-order-info-list-shipping span label:hover {
  cursor: pointer;
}
.tp-order-info-list ul li.tp-order-info-list-shipping span label::after {
  position: absolute;
  content: "";
  right: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--tp-theme-1);
  transition: 0.3s;
}
.tp-order-info-list ul li.tp-order-info-list-shipping span label::before {
  position: absolute;
  content: "";
  right: 4px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--tp-theme-1);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.tp-order-info-list ul li.tp-order-info-list-total {
  padding: 14px 0;
}
.tp-order-info-list ul li.tp-order-info-list-total span {
  font-size: 16px;
  font-weight: 500;
}
.tp-order-inner {
  background-color: var(--tp-common-white);
  box-shadow: 0px 30px 70px rgba(1, 15, 28, 0.1);
}

.tp-checkout-place {
  background-color: var(--tp-grey-1);
}

/*----------------------------------------*/
/*  7.2 appointment css start
/*----------------------------------------*/
.tp-appointment-contact {
  margin-top: 111px;
  margin-left: 80px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-appointment-contact {
    margin-left: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-appointment-contact {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-appointment-contact {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-appointment-contact {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 50px;
  }
}
.tp-appointment-contact-title {
  font-size: 28px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-appointment-contact-title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-appointment-contact-title {
    font-size: 22px;
  }
}
.tp-appointment-contact-item:not(:last-child) {
  margin-bottom: 10px;
}
.tp-appointment-contact-item input {
  display: none;
}
.tp-appointment-contact-item input:checked ~ label::before {
  opacity: 1;
  visibility: visible;
}
.tp-appointment-contact-item label {
  font-size: 20px;
  position: relative;
  padding-left: 34px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-appointment-contact-item label {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .tp-appointment-contact-item label {
    font-size: 16px;
  }
}
.tp-appointment-contact-item label:hover {
  cursor: pointer;
}
.tp-appointment-contact-item label::after {
  position: absolute;
  content: "";
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--tp-theme-1);
  transition: 0.3s;
}
.tp-appointment-contact-item label::before {
  position: absolute;
  content: "";
  left: 2px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--tp-theme-1);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.tp-appointment-left p {
  color: var(--tp-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-appointment-left p {
    font-size: 14px;
  }
}
.tp-appointment-list {
  margin-right: 65px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-appointment-list {
    margin-right: 0;
  }
}
.tp-appointment-list ul li {
  padding-left: 34px;
  position: relative;
  list-style-type: none;
  color: var(--tp-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-appointment-list ul li {
    font-size: 14px;
  }
}
.tp-appointment-list ul li:not(:last-child) {
  margin-bottom: 22px;
}
.tp-appointment-list ul li i {
  position: absolute;
  top: 10px;
  left: 0;
  color: #E3042E;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-appointment-thumb {
    width: 100%;
    margin-bottom: 30px;
  }
}

/*----------------------------------------*/
/*  7.3 cart css start
/*----------------------------------------*/
/* 16. Cart */
.table-content .table > :not(:first-child) {
  border-top: 0;
}
.table-content table {
  background: #ffffff;
  border-color: #eaedff;
  border-radius: 0;
  border-style: solid;
  border-width: 1px 0 0 1px;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}

.table-content .table > :not(:last-child) > :last-child > * {
  border-bottom-color: #eaedff;
}

.table-content .product-quantity {
  float: none;
}

.table-content table td.product-name {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.table-content table td.product-name a:hover {
  color: var(--tp-theme-1);
}

.table-content table td {
  border-top: medium none;
  padding: 20px 10px;
  vertical-align: middle;
  font-size: 16px;
}

.table-content table th, .table-content table td {
  border-bottom: 1px solid rgba(6, 7, 40, 0.1);
  border-right: 1px solid rgba(6, 7, 40, 0.1);
}

.product-quantity input {
  color: #000;
  font-size: 14px;
  font-weight: normal;
  height: 64px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
}

@media (max-width: 767px) {
  .coupon-all button {
    padding: 0 20px;
    font-size: 13px;
    height: 60px;
    line-height: 60px;
  }
}
.coupon input {
  height: 58px;
  line-height: 58px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid #E0E2E3;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .coupon input {
    height: 60px;
    line-height: 60px;
    font-size: 10px;
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.tp-quantity {
  width: 200px;
  margin: 0 auto;
}
.tp-quantity .cart-minus {
  height: 64px;
  width: 64px;
  text-align: center;
  line-height: 64px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.tp-quantity .cart-plus {
  height: 64px;
  width: 64px;
  text-align: center;
  line-height: 64px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.table td, .table th {
  border-top: 1px solid #eaedff;
}

.product-thumbnail, .cart-product-name, .product-price, .product-quantity, .product-subtotal, .product-remove {
  font-weight: 600;
  font-size: 20px;
  color: #060728;
  font-family: var(--tp-ff-clash-semibold);
}

.product-quantity > input {
  width: 80px;
  text-align: center;
}

.table-content table td .cart-plus-minus {
  float: none;
  margin: 0 auto;
}

.coupon-all {
  margin-top: 50px;
}

.coupon {
  float: left;
}

@media (max-width: 767px) {
  .coupon {
    float: none;
  }
}
#coupon_code {
  background-color: var(--tp-theme-1);
  color: var(--tp-common-white);
  margin-right: 10px;
  width: inherit;
  height: 67px;
  line-height: 67px;
  padding: 0 25px;
  overflow: hidden;
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #coupon_code {
    height: 54px;
  }
}
@media (max-width: 767px) {
  #coupon_code {
    padding: 0px 15px;
  }
}

@media (max-width: 767px) {
  #coupon_code {
    margin-bottom: 15px;
  }
}
.coupon2 {
  float: right;
}

.checkout-link .tp-btn:hover {
  background-color: var(--tp-theme-2);
}
.checkout-link .tp-btn-dark-lg:hover {
  background-color: var(--tp-theme-1);
}

@media (max-width: 767px) {
  .coupon2 {
    float: none;
    margin-top: 15px;
  }
}
.cart-page-total {
  padding: 35px;
  margin-top: 100px;
  background: var(--tp-grey-1);
}
@media (max-width: 767px) {
  .cart-page-total {
    padding: 30px 15px;
  }
}

.cart-page-total > h2 {
  font-size: 25px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.cart-page-total > ul {
  border: 1px solid rgba(6, 7, 40, 0.1);
}

.cart-page-total > ul > li {
  list-style: none;
  padding: 21px 30px;
  border-bottom: 1px solid rgba(6, 7, 40, 0.1);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #696A7E;
}

.cart-page-total ul > li > span {
  float: right;
}

.cart-page-total li:last-child {
  border-bottom: 0;
}

td.product-thumbnail img {
  width: 125px;
}

/* 17. Checkout */
.coupon-accordion h3 {
  background-color: #f7f7f7;
  border-top: 3px solid var(--tp-theme-1);
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 25px;
  padding: 1em 2em 1em 3.5em;
  position: relative;
  width: auto;
}

.coupon-accordion h3::before {
  content: "\f07b";
  left: 15px;
  top: 13px;
  position: absolute;
  color: var(--tp-theme-1);
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
}

.coupon-accordion span {
  color: #6f7172;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.coupon-accordion span:hover, p.lost-password a:hover {
  color: var(--tp-common-black);
}

.coupon-content {
  border: 1px solid #eaedff;
  display: none;
  margin-bottom: 20px;
  padding: 30px;
}

.coupon-info p.coupon-text {
  margin-bottom: 15px;
}

.coupon-info p {
  margin-bottom: 0;
}

.coupon-info p.form-row-first label, .coupon-info p.form-row-last label {
  display: block;
  color: #6f7172;
}

.coupon-info p.form-row-first label span.required, .coupon-info p.form-row-last label span.required {
  color: var(--tp-theme-1);
  font-weight: 700;
}

.coupon-info p.form-row-first input, .coupon-info p.form-row-last input {
  border: 1px solid #eaedff;
  height: 45px;
  margin: 0 0 14px;
  max-width: 100%;
  padding: 0 0 0 10px;
  width: 100%;
  outline: none;
}
.coupon-info p.form-row-first input:focus, .coupon-info p.form-row-last input:focus {
  border-color: var(--tp-common-black);
}

.coupon-info p.form-row input[type=submit]:hover, p.checkout-coupon input[type=submit]:hover {
  background: #3e976c none repeat scroll 0 0;
}

.coupon-info p.form-row input[type=checkbox] {
  position: relative;
  top: -1px;
}

.form-row > label {
  margin-top: 15px;
  margin-left: 15px;
  color: #6f7172;
}

.buttons-cart input, .coupon input[type=submit], .buttons-cart a, .coupon-info p.form-row input[type=submit] {
  background: #252525 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  display: inline-block;
  float: left;
  font-size: 12px;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
  margin-right: 15px;
  padding: 0 15px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

p.lost-password {
  margin-top: 15px;
}

p.lost-password a {
  color: #6f6f6f;
}

p.checkout-coupon input[type=text] {
  height: 45px;
  padding: 0 15px;
  width: 100%;
  border: 1px solid #eaedff;
  margin-bottom: 15px;
  outline: none;
}
p.checkout-coupon input[type=text]:focus {
  border-color: var(--tp-common-black);
}

.coupon-checkout-content {
  display: none;
}

.checkbox-form h3 {
  border-bottom: 1px solid #eaedff;
  font-size: 26px;
  margin: 0 0 20px;
  padding-bottom: 10px;
  width: 100%;
}

.country-select {
  margin-bottom: 30px;
  position: relative;
}

.country-select select {
  width: 100%;
  background-color: transparent;
  border: 1px solid #eaedff;
  padding: 0 10px;
  height: 50px;
}

.country-select label, .checkout-form-list label {
  color: #6f7172;
  display: block;
  margin: 0 0 5px;
}

.country-select label span.required, .checkout-form-list label span.required {
  color: var(--tp-theme-1);
}

.country-select .nice-select {
  border: 1px solid #eaedff;
  height: 45px;
  padding-left: 10px;
  width: 100%;
  color: #6f7172;
  margin-bottom: 20px;
}

.country-select .nice-select .list {
  width: 100%;
}

.checkout-form-list {
  margin-bottom: 30px;
}

.checkout-form-list label {
  color: #6f7172;
}

.checkout-form-list input[type=text], .checkout-form-list input[type=password], .checkout-form-list input[type=email] {
  background: #ffffff;
  border: 1px solid #eaedff;
  border-radius: 0;
  height: 45px;
  padding: 0 0 0 10px;
  width: 100%;
  outline: none;
}
.checkout-form-list input[type=text]:focus, .checkout-form-list input[type=password]:focus, .checkout-form-list input[type=email]:focus {
  border-color: var(--tp-common-black);
}

.checkout-form-list input[type=text]::-moz-placeholder,
.checkout-form-list input[type=password]::-moz-placeholder,
.checkout-form-list input[type=email]::-moz-placeholder {
  color: #6f7172;
  opacity: 1;
}

.checkout-form-list input[type=text]::placeholder,
.checkout-form-list input[type=password]::placeholder,
.checkout-form-list input[type=email]::placeholder {
  color: #6f7172;
  opacity: 1;
}

.checkout-form-list input[type=checkbox] {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: -1px;
}

.create-acc label {
  color: #6f7172;
  display: inline-block;
}

.create-account {
  display: none;
}

.ship-different-title h3 label {
  display: inline-block;
  margin-right: 20px;
  color: var(--tp-theme-1);
}

.order-notes textarea {
  border: 1px solid #eaedff;
  height: 120px;
  padding: 15px;
  width: 100%;
  outline: 0;
  resize: none;
}

.order-notes textarea:focus {
  border-color: var(--tp-common-black);
}

.order-notes textarea::-moz-placeholder {
  color: #6f7172;
  opacity: 1;
}

.order-notes textarea::placeholder {
  color: #6f7172;
  opacity: 1;
}

#ship-box-info {
  display: none;
}

.panel-group .panel {
  border-radius: 0;
}

.panel-default > .panel-heading {
  border-radius: 0;
}

.your-order {
  padding: 30px 40px 45px;
  border: 3px solid #f7f7f7;
}

@media (max-width: 767px) {
  .your-order {
    padding: 15px;
  }
}
.your-order h3 {
  border-bottom: 1px solid #eaedff;
  font-size: 30px;
  margin: 0 0 20px;
  padding-bottom: 10px;
  width: 100%;
}

.your-order-table table {
  background: none;
  border: 0;
  width: 100%;
}

.your-order-table table th, .your-order-table table td {
  border-bottom: 1px solid #eaedff;
  border-right: medium none;
  color: #6f7172;
  font-size: 14px;
  padding: 15px 0;
  text-align: left;
}

@media (max-width: 767px) {
  .your-order-table table th, .your-order-table table td {
    padding-right: 10px;
  }
}
.your-order-table table th {
  border-top: medium none;
  color: #6f7172;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
  width: 250px;
}

.panel-body > p {
  color: #222;
}

.your-order-table table .shipping ul li {
  list-style: none;
}

.your-order-table table .shipping ul li input {
  position: relative;
  top: -1px;
}

.your-order-table table .shipping ul li label {
  color: #6f7172;
}

.your-order-table table .shipping th {
  vertical-align: top;
}

.your-order-table table .order-total th {
  border-bottom: 0;
  font-size: 14px;
}

.your-order-table table .order-total td {
  border-bottom: medium none;
}

.your-order-table table tr.cart_item:hover {
  background: #F9F9F9;
}

.your-order-table table tr.order-total td span {
  color: var(--tp-common-black);
  font-size: 18px;
  font-weight: 500;
}

.payment-method {
  margin-top: 40px;
}
.payment-method .accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.payment-method .accordion-item {
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid #e7e7e7;
}
.payment-method .accordion-button {
  font-size: 16px;
  font-weight: 500;
  color: var(--tp-common-black);
  padding: 23px 0;
  border: none;
}
.payment-method .accordion-button::after {
  position: absolute;
  content: "\f067";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  font-weight: 400;
  margin-left: 0;
  background-image: none;
  color: var(--tp-theme-1);
}
.payment-method .accordion-button:not(.collapsed) {
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
  box-shadow: none;
}
.payment-method .accordion-button:not(.collapsed)::after {
  content: "\f068";
}
.payment-method .accordion-body {
  padding: 8px 0;
  padding-bottom: 40px;
}
.payment-method .accordion-collapse {
  border: none;
}

.panel-title > a {
  display: block;
}

.order-button-payment input {
  background: #232323 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  height: 40px;
  margin: 0px 0 0;
  padding: 0;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.order-button-payment input:hover {
  background: #3e976c none repeat scroll 0 0;
}

.payment-method .btn-link {
  -moz-user-select: none;
  background: no-repeat;
  border: medium none;
  border-radius: 0;
  color: #444;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0;
  padding: 3px 10px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
}

.payment-method .card {
  background-color: #ffffff;
  border: 1px solid #eaedff;
  border-radius: 0;
  margin-bottom: 10px;
}

.payment-method .accordion .card:first-of-type {
  border: 1px solid #eaedff;
}

.card-header:first-child {
  border-radius: 0;
}

.payment-method .card-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eaedff;
}

.order-button-payment button {
  width: 100%;
}

/*----------------------------------------*/
/*  7.6 error css start
/*----------------------------------------*/
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-error-thumb-box img {
    max-width: 70%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-error-thumb-box img {
    max-width: 60%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-error-thumb-box img {
    max-width: 60%;
  }
}
.tp-error-title {
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-error-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-error-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-error-title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .tp-error-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-error-title {
    font-size: 34px;
  }
}
.tp-error-content .tp-btn-black-sm {
  padding: 0 23px;
}

/*----------------------------------------*/
/*  Modern About Us Page Styles
/*----------------------------------------*/

/* Hero Section */
/* ============================================
   Full-Width Horizontal About Hero Section
   ============================================ */

.about-hero-section {
  padding: 0;
  margin-top: 0;
  overflow: hidden;
  position: relative;
  background: #ffffff;
}

.about-hero-wrapper {
  position: relative;
  width: 100%;
}

/* Image Section (Left - 60-70% width) */
.about-hero-image-section {
  height: 100%;
  min-height: 700px;
  position: relative;
  overflow: hidden;
}

.about-hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-hero-image-wrapper:hover .about-hero-img {
  transform: scale(1.08);
}

.about-hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(166, 161, 130, 0.08) 0%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.about-hero-image-badge {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 28px 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid rgba(166, 161, 130, 0.15);
}

.about-hero-image-wrapper:hover .about-hero-image-badge {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.badge-number {
  font-size: 56px;
  font-weight: 800;
  color: var(--tp-theme-1);
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--tp-ff-heading);
  letter-spacing: -1px;
}

.badge-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--tp-common-black);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Content Section (Right - 30-40% width) */
.about-hero-content-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
  padding: 80px 70px;
  background: #ffffff;
  position: relative;
}

.about-hero-content-inner {
  max-width: 100%;
  width: 100%;
}

.about-hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--tp-theme-1);
  background: rgba(166, 161, 130, 0.12);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 35px;
}

/* Modern Typography */
.about-hero-title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--tp-common-black);
  margin-bottom: 30px;
  letter-spacing: -1.5px;
  font-family: var(--tp-ff-heading);
}

.about-hero-title .title-line {
  display: block;
  margin-bottom: 8px;
}

.about-hero-title .brand-highlight {
  color: var(--tp-theme-1);
  font-weight: 900;
  position: relative;
}

.about-hero-text {
  font-size: 18px;
  line-height: 1.85;
  color: var(--tp-text-body);
  margin-bottom: 45px;
  font-weight: 400;
  letter-spacing: -0.2px;
}

/* Feature Grid */
.about-hero-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 45px;
}

.about-feature-card {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.about-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tp-theme-1), rgba(166, 161, 130, 0.5));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.about-feature-card:hover::before {
  transform: scaleX(1);
}

.about-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(166, 161, 130, 0.15);
  border-color: rgba(166, 161, 130, 0.2);
  background: #ffffff;
}

.feature-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(166, 161, 130, 0.15) 0%, rgba(166, 161, 130, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tp-theme-1);
  font-size: 24px;
  transition: all 0.4s ease;
  position: relative;
}

.about-feature-card:hover .feature-card-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(166, 161, 130, 0.25) 0%, rgba(166, 161, 130, 0.15) 100%);
  box-shadow: 0 6px 18px rgba(166, 161, 130, 0.2);
}

.feature-card-content {
  text-align: center;
}

.feature-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--tp-common-black);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.feature-card-text {
  font-size: 14px;
  color: var(--tp-text-body);
  font-weight: 500;
  margin: 0;
}

/* Modern CTA Button */
.about-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 42px;
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 25px rgba(166, 161, 130, 0.3);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.about-hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.about-hero-btn:hover::before {
  left: 100%;
}

.about-hero-btn:hover {
  background: var(--tp-common-black);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  color: var(--tp-common-white);
}

.about-hero-btn:hover i {
  transform: translateX(5px);
}

.about-hero-btn i {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.about-hero-btn:active {
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1399px) {
  .about-hero-content-section {
    padding: 70px 60px;
  }
  
  .about-hero-title {
    font-size: 52px;
  }
  
  .badge-number {
    font-size: 50px;
  }
}

@media (max-width: 1199px) {
  .about-hero-image-section {
    min-height: 650px;
  }
  
  .about-hero-content-section {
    padding: 70px 50px;
    min-height: 650px;
  }
  
  .about-hero-title {
    font-size: 48px;
  }
  
  .about-hero-text {
    font-size: 17px;
  }
  
  .about-hero-features-grid {
    gap: 18px;
  }
  
  .about-feature-card {
    padding: 24px 18px;
  }
  
  .feature-card-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
  
  .feature-card-title {
    font-size: 18px;
  }
  
  .badge-number {
    font-size: 46px;
  }
  
  .badge-text {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .about-hero-image-section {
    min-height: 500px;
    order: 1;
  }
  
  .about-hero-content-section {
    padding: 60px 40px;
    min-height: auto;
    order: 2;
  }
  
  .about-hero-title {
    font-size: 42px;
    margin-bottom: 25px;
  }
  
  .about-hero-text {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .about-hero-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .about-feature-card {
    padding: 22px 16px;
  }
  
  .feature-card-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .feature-card-title {
    font-size: 17px;
  }
  
  .feature-card-text {
    font-size: 13px;
  }
  
  .about-hero-image-badge {
    bottom: 35px;
    right: 35px;
    padding: 24px 28px;
  }
  
  .badge-number {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .about-hero-image-section {
    min-height: 450px;
  }
  
  .about-hero-content-section {
    padding: 50px 35px;
  }
  
  .about-hero-label {
    font-size: 11px;
    padding: 7px 16px;
    margin-bottom: 25px;
  }
  
  .about-hero-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 22px;
  }
  
  .about-hero-title .title-line {
    margin-bottom: 6px;
  }
  
  .about-hero-text {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 35px;
  }
  
  .about-hero-features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 35px;
  }
  
  .about-feature-card {
    padding: 24px 20px;
    border-radius: 14px;
  }
  
  .feature-card-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
  
  .feature-card-title {
    font-size: 19px;
  }
  
  .feature-card-text {
    font-size: 14px;
  }
  
  .about-hero-btn {
    padding: 16px 38px;
    font-size: 14px;
    width: 100%;
    border-radius: 12px;
  }
  
  .about-hero-image-badge {
    bottom: 25px;
    right: 25px;
    padding: 20px 24px;
  }
  
  .badge-number {
    font-size: 38px;
  }
  
  .badge-text {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 575px) {
  .about-hero-image-section {
    min-height: 400px;
  }
  
  .about-hero-content-section {
    padding: 45px 25px;
  }
  
  .about-hero-title {
    font-size: 32px;
  }
  
  .about-hero-text {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .about-feature-card {
    padding: 22px 18px;
  }
  
  .feature-card-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
  
  .feature-card-title {
    font-size: 18px;
  }
  
  .about-hero-image-badge {
    bottom: 20px;
    right: 20px;
    padding: 18px 22px;
  }
  
  .badge-number {
    font-size: 34px;
  }
  
  .badge-text {
    font-size: 10px;
  }
}

/* Stats Section */
.stats-section {
  padding: 120px 0;
}

.stats-header {
  margin-bottom: 80px;
}

.stats-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--tp-common-black);
  letter-spacing: -0.5px;
  margin: 0;
}

@media (max-width: 991px) {
  .stats-title {
    font-size: 36px;
  }
  .stats-section {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .stats-title {
    font-size: 28px;
  }
  .stats-header {
    margin-bottom: 50px;
  }
}

.stat-card {
  text-align: center;
  padding: 50px 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: var(--tp-common-white);
  transition: all 0.4s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--tp-theme-1);
}

.stat-number {
  font-size: 64px;
  font-weight: 800;
  color: var(--tp-common-black);
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: -2px;
}

@media (max-width: 1199px) {
  .stat-number {
    font-size: 52px;
  }
}

@media (max-width: 767px) {
  .stat-number {
    font-size: 42px;
  }
  .stat-card {
    padding: 40px 20px;
  }
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--tp-text-body);
  line-height: 1.5;
}

/* Contact Section */
.contact-section {
  padding: 120px 0;
  position: relative;
  background: var(--tp-grey-1);
  background: #F8F8F8;
}

.contact-content {
  padding-right: 40px;
}

@media (max-width: 991px) {
  .contact-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .contact-section {
    padding: 80px 0;
  }
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--tp-common-black);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

@media (max-width: 991px) {
  .contact-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .contact-title {
    font-size: 28px;
  }
}

.contact-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--tp-text-body);
}

.contact-form-wrapper {
  background: var(--tp-common-white);
  padding: 50px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
  .contact-form-wrapper {
    padding: 30px;
  }
}

.modern-contact-form .form-input,
.modern-contact-form .form-textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--tp-grey-1);
  background: #F8F8F8;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: var(--tp-common-black);
  font-size: 16px;
  transition: all 0.3s ease;
}

.modern-contact-form .form-input::placeholder,
.modern-contact-form .form-textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.modern-contact-form .form-input:focus,
.modern-contact-form .form-textarea:focus {
  outline: none;
  border-color: var(--tp-theme-1);
  background: var(--tp-common-white);
  box-shadow: 0 0 0 3px rgba(166, 161, 130, 0.15);
}

.modern-contact-form .form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  width: 100%;
  padding: 18px 40px;
  background: var(--tp-common-black);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-submit-btn span {
  color: #ffffff !important;
}

.form-submit-btn:hover {
  background: var(--tp-theme-1);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166, 161, 130, 0.3);
}

.form-submit-btn:hover span {
  color: #ffffff !important;
}

.py-120 {
  padding-top: 10px;
  padding-bottom: 120px;
}

@media (max-width: 991px) {
  .py-120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/*----------------------------------------*/
/*  Modern Footer Styles
/*----------------------------------------*/

.modern-footer {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  position: relative;
  overflow: hidden;
}

.footer-main {
  padding: 100px 0;
}

@media (max-width: 991px) {
  .footer-main {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .footer-main {
    padding: 60px 0;
  }
}

.footer-brand-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--tp-common-white);
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

@media (max-width: 767px) {
  .footer-brand-title {
    font-size: 24px;
  }
}

.footer-brand-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 350px;
}

.footer-links-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--tp-common-white);
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links-list li a:hover {
  color: #ffffff;
  padding-left: 8px;
  opacity: 1;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  margin-bottom: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-item i {
  color: #ffffff;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
}

.footer-contact-item span {
  line-height: 1.6;
}

.footer-contact-item:hover {
  color: #ffffff;
  opacity: 1;
}

.footer-contact-item:hover a {
  color: #ffffff;
  transform: scale(1.1);
  opacity: 1;
}

.footer-bottom-bar {
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
}

.footer-bottom-content {
  display: flex;
	flex-direction : column;
  align-items: center;
	justify-content: center;
  gap: 20px;
	text-align: center;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-copyright a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: #ffffff;
}

.footer-copyright a i {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  align-items: center;
	justify-content: center;
  gap: 20px;
}

.footer-contact .footer-socials {
	margin-top: 25px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 15px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tp-common-white);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .py-100 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .py-100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/*----------------------------------------*/
/*  Modern FAQ Section Styles
/*----------------------------------------*/

.modern-faq-section {
  padding: 120px 0;
  background: var(--tp-common-white);
}

@media (max-width: 991px) {
  .modern-faq-section {
    padding: 80px 0;
  }
}

.faq-header {
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .faq-header {
    margin-bottom: 50px;
  }
}

.faq-main-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--tp-common-black);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

@media (max-width: 991px) {
  .faq-main-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .faq-main-title {
    font-size: 28px;
  }
}

.faq-subtitle {
  font-size: 18px;
  color: var(--tp-text-body);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.modern-accordion {
  width: 100%;
}

.modern-accordion-item {
  margin-bottom: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: var(--tp-common-white);
  overflow: hidden;
  transition: all 0.3s ease;
}

.modern-accordion-item:hover {
  border-color: rgba(166, 161, 130, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.modern-accordion-item:not(:last-child) {
  margin-bottom: 16px;
}

.modern-accordion-button {
  width: 100%;
  padding: 24px 28px;
  background: var(--tp-common-white);
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.modern-accordion-button:hover {
  background: rgba(166, 161, 130, 0.05);
}

.modern-accordion-button:not(.collapsed) {
  background: rgba(166, 161, 130, 0.08);
  border-bottom: 1px solid rgba(166, 161, 130, 0.2);
}

.modern-accordion-button:focus {
  outline: none;
  box-shadow: none;
}

.faq-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--tp-theme-1);
  flex-shrink: 0;
  min-width: 30px;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--tp-common-black);
  line-height: 1.5;
  flex: 1;
}

@media (max-width: 767px) {
  .faq-question {
    font-size: 16px;
  }
  .modern-accordion-button {
    padding: 20px 24px;
  }
}

.accordion-icon {
  font-size: 16px;
  color: var(--tp-theme-1);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(166, 161, 130, 0.1);
  transition: all 0.3s ease;
}

.modern-accordion-button:not(.collapsed) .accordion-icon {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  transform: rotate(180deg);
}

.modern-accordion-button.collapsed .accordion-icon .fa-minus {
  display: none;
}

.modern-accordion-button:not(.collapsed) .accordion-icon .fa-plus {
  display: none;
}

.modern-accordion-body {
  padding: 0 28px 24px 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--tp-text-body);
  animation: fadeInDown 0.3s ease;
}

@media (max-width: 767px) {
  .modern-accordion-body {
    padding: 0 24px 20px 24px;
    font-size: 15px;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion-collapse {
  transition: height 0.35s ease;
}

/*----------------------------------------*/
/*  Modern Services Section Styles
/*----------------------------------------*/

.tp-service-2-area {
  padding: 120px 0 60px;
  background: var(--tp-common-white);
}

.modern-service-card {
  background: var(--tp-common-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.modern-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(166, 161, 130, 0.3);
}

.service-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.modern-service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--tp-common-black);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-card-title a {
  color: var(--tp-common-black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-card-title a:hover {
  color: var(--tp-theme-1);
}

.service-card-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--tp-text-body);
  margin-bottom: 24px;
  flex: 1;
}

.service-card-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--tp-theme-1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-card-link:hover {
  color: var(--tp-common-black);
  gap: 12px;
}

@media (max-width: 991px) {
  .service-card-image {
    height: 240px;
  }
  .service-card-content {
    padding: 28px;
  }
}

@media (max-width: 767px) {
  .service-card-image {
    height: 220px;
  }
  .service-card-content {
    padding: 24px;
  }
  .service-card-title {
    font-size: 20px;
  }
}

/*----------------------------------------*/
/*  Modern Pricing Section Styles
/*----------------------------------------*/

.modern-pricing-section {
  padding: 140px 0;
  background: var(--tp-common-white);
  position: relative;
}

.pricing-header {
  margin-bottom: 90px;
}

.pricing-subtitle {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--tp-theme-1);
  display: inline-block;
  padding: 8px 20px;
  background: rgba(166, 161, 130, 0.1);
  border-radius: 50px;
  margin-bottom: 20px;
  font-weight: 600;
}

.pricing-main-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--tp-common-black);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0 0 20px 0;
}

.pricing-description {
  font-size: 18px;
  color: var(--tp-text-body);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .pricing-main-title {
    font-size: 36px;
  }
  .pricing-description {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .pricing-main-title {
    font-size: 28px;
  }
  .pricing-header {
    margin-bottom: 60px;
  }
  .pricing-description {
    font-size: 15px;
  }
}

.modern-pricing-card {
  background: var(--tp-common-white);
  border-radius: 20px;
  padding: 50px 40px;
  border: 2px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.modern-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tp-theme-1), rgba(166, 161, 130, 0.5));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.modern-pricing-card:hover::before {
  transform: scaleX(1);
}

.modern-pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(166, 161, 130, 0.3);
}

.modern-pricing-card.featured-card {
  border: 2px solid var(--tp-theme-1);
  box-shadow: 0 12px 40px rgba(166, 161, 130, 0.2);
  transform: scale(1.05);
}

.modern-pricing-card.featured-card:hover {
  transform: scale(1.05) translateY(-12px);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 40px;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(166, 161, 130, 0.3);
}

.pricing-card-header {
  margin-bottom: 35px;
}

.pricing-card-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--tp-common-black);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.pricing-card-subtitle {
  font-size: 15px;
  color: var(--tp-text-body);
  margin: 0;
  font-weight: 500;
}

.pricing-card-price {
  margin-bottom: 40px;
  padding-bottom: 35px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-currency {
  font-size: 28px;
  font-weight: 700;
  color: var(--tp-common-black);
  vertical-align: baseline;
}

.price-amount {
  font-size: 64px;
  font-weight: 800;
  color: var(--tp-common-black);
  line-height: 1;
  letter-spacing: -2px;
}

.featured-card .price-amount {
  color: var(--tp-theme-1);
}

.price-period {
  font-size: 16px;
  color: var(--tp-text-body);
  font-weight: 500;
  margin-left: 4px;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 45px 0;
  text-align: left;
  flex: 1;
}

.pricing-features-list li {
  font-size: 16px;
  color: var(--tp-common-black);
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.pricing-features-list li:hover {
  transform: translateX(5px);
}

.pricing-features-list li i {
  color: var(--tp-theme-1);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-features-list li span {
  flex: 1;
}

.pricing-card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 40px;
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 2px solid var(--tp-common-black);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.pricing-card-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--tp-theme-1);
  transition: left 0.3s ease;
  z-index: 0;
}

.pricing-card-button span,
.pricing-card-button i {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  color: #ffffff !important;
}

.pricing-card-button:hover {
  border-color: var(--tp-theme-1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(166, 161, 130, 0.3);
}

.pricing-card-button:hover::before {
  left: 0;
}

.pricing-card-button:hover i {
  transform: translateX(4px);
  color: #ffffff !important;
}

.pricing-card-button:hover span {
  color: #ffffff !important;
}

.pricing-card-button.featured-button {
  background: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
}

.pricing-card-button.featured-button::before {
  background: var(--tp-common-black);
}

.pricing-card-button.featured-button:hover {
  border-color: var(--tp-common-black);
}

@media (max-width: 1199px) {
  .modern-pricing-card.featured-card {
    transform: scale(1);
  }
  .modern-pricing-card.featured-card:hover {
    transform: translateY(-12px);
  }
}

@media (max-width: 991px) {
  .modern-pricing-card {
    padding: 45px 35px;
  }
  .price-amount {
    font-size: 56px;
  }
  .price-currency {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .modern-pricing-card {
    padding: 40px 30px;
  }
  .pricing-card-title {
    font-size: 24px;
  }
  .price-amount {
    font-size: 48px;
  }
  .price-currency {
    font-size: 22px;
  }
  .pricing-features-list li {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .popular-badge {
    top: 15px;
    right: -35px;
    font-size: 11px;
    padding: 5px 35px;
  }
}

/*----------------------------------------*/
/*  Interior Renovation Section Styles
/*----------------------------------------*/

.interior-renovation-section {
  padding: 140px 0;
  background: var(--tp-grey-1);
  background: #F8F8F8;
  position: relative;
  overflow: hidden;
}

.interior-image-wrapper {
  position: relative;
  padding-right: 40px;
}

.interior-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
}

.interior-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.interior-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.interior-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

.interior-content {
  padding-left: 60px;
}

.interior-badge {
  margin-bottom: 20px;
}

.interior-badge span {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--tp-theme-1);
  font-weight: 600;
  padding: 8px 20px;
  background: rgba(166, 161, 130, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(166, 161, 130, 0.2);
}

.interior-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--tp-common-black);
  line-height: 1.25;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.interior-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--tp-text-body);
  margin-bottom: 20px;
}

.interior-text-secondary {
  font-size: 17px;
  line-height: 1.8;
  color: var(--tp-text-body);
  margin-bottom: 35px;
}

.interior-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.interior-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--tp-common-black);
  font-weight: 500;
}

.interior-feature-item i {
  color: #1a1552;
  font-size: 18px;
  flex-shrink: 0;
}

.interior-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid var(--tp-common-black);
}

.interior-cta-button:hover {
  background: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166, 161, 130, 0.3);
}

.interior-cta-button i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.interior-cta-button:hover i {
  transform: translateX(4px);
}

@media (max-width: 1199px) {
  .interior-image-wrapper {
    padding-right: 30px;
  }
  .interior-content {
    padding-left: 40px;
  }
}

@media (max-width: 991px) {
  .interior-renovation-section {
    padding: 100px 0;
  }
  .interior-image-wrapper {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .interior-content {
    padding-left: 0;
  }
  .interior-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .interior-renovation-section {
    padding: 80px 0;
  }
  .interior-image-wrapper {
    margin-bottom: 40px;
  }
  .interior-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .interior-text,
  .interior-text-secondary {
    font-size: 16px;
    line-height: 1.7;
  }
  .interior-features {
    margin-bottom: 30px;
  }
  .interior-feature-item {
    font-size: 15px;
  }
  .interior-cta-button {
    padding: 16px 32px;
    font-size: 14px;
  }
}

/*----------------------------------------*/
/*  Service Detail Page Styles
/*----------------------------------------*/

/* Breadcrumb */
.service-breadcrumb {
  padding: 20px 0;
  background: var(--tp-common-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.breadcrumb-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.breadcrumb-content span a {
  color: var(--tp-text-body);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-content span a:hover {
  color: var(--tp-theme-1);
}

.breadcrumb-content span:not(.dvdr) {
  color: var(--tp-text-body);
}

.breadcrumb-content .dvdr {
  color: rgba(0, 0, 0, 0.3);
  font-size: 12px;
}

.breadcrumb-content span:last-child {
  color: var(--tp-common-black);
  font-weight: 500;
}

/* Hero Section */
.service-detail-hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 0;
}

.service-hero-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.service-hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  padding: 80px 0;
}

.service-hero-title {
  font-size: 64px;
  font-weight: 800;
  color: var(--tp-common-white);
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.service-hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .service-detail-hero {
    height: 400px;
  }
  .service-hero-title {
    font-size: 48px;
  }
  .service-hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .service-detail-hero {
    height: 350px;
  }
  .service-hero-title {
    font-size: 36px;
  }
  .service-hero-subtitle {
    font-size: 16px;
  }
  .service-hero-content {
    padding: 60px 0;
  }
}

/* Service Overview Section */
.service-overview-section {
  padding: 120px 0;
  background: var(--tp-common-white);
}

.service-section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--tp-common-black);
  margin-bottom: 35px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.service-description {
  font-size: 17px;
  line-height: 1.8;
  color: #1a1a1a; /* Black for better visibility */
}

.service-description p {
  margin-bottom: 24px;
}

.service-description p:last-child {
  margin-bottom: 0;
}

.service-quick-facts {
  padding-left: 40px;
}

.quick-facts-card {
  background: var(--tp-common-white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.quick-facts-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--tp-common-black);
  margin-bottom: 30px;
  letter-spacing: -0.3px;
}

.quick-facts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-facts-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--tp-common-black);
  margin-bottom: 18px;
  font-weight: 500;
}

.quick-facts-list li span {
  color: #1a1a1a; /* Black for better visibility */
  font-weight: 500;
  font-size: 16px;
}

.quick-facts-list li:last-child {
  margin-bottom: 0;
}

.quick-facts-list li i {
  color: var(--tp-theme-1);
  font-size: 18px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .service-quick-facts {
    padding-left: 0;
    padding-top: 50px;
  }
  .service-section-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .service-overview-section {
    padding: 80px 0;
  }
  .service-section-title {
    font-size: 28px;
  }
  .quick-facts-card {
    padding: 30px;
  }
}

/* Key Benefits Section */
.service-benefits-section {
  padding: 120px 0;
  background: var(--tp-grey-1);
  background: #F8F8F8;
}

.benefits-header {
  margin-bottom: 80px;
}

.benefits-subtitle {
  font-size: 18px;
  color: #1a1a1a; /* Black for better visibility */
  margin: 0;
  margin-top: 15px;
}

.benefit-card {
  background: var(--tp-common-white);
  border-radius: 16px;
  padding: 45px 35px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(99, 102, 241, 0.3);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: #1a1552;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.benefit-icon i {
  font-size: 32px;
  color: #ffffff;
}

.benefit-card:hover .benefit-icon {
  background: #1a1552;
  transform: scale(1.1);
}

.benefit-card:hover .benefit-icon i {
  color: #ffffff;
}

.benefit-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--tp-common-black);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.benefit-text {
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a; /* Black for better visibility */
  margin: 0;
}

@media (max-width: 767px) {
  .service-benefits-section {
    padding: 80px 0;
  }
  .benefits-header {
    margin-bottom: 50px;
  }
  .benefit-card {
    padding: 35px 25px;
  }
}

/* Kitchen & Bathroom Benefits Carousel */
.kitchen-benefits-carousel-wrapper,
.bathroom-benefits-carousel-wrapper {
    position: relative;
    width: 100%;
}

/* Desktop: Show grid, hide carousel */
@media (min-width: 768px) {
    .kitchen-benefits-carousel-wrapper .kitchen-benefits-carousel,
    .bathroom-benefits-carousel-wrapper .bathroom-benefits-carousel {
        display: none;
    }
    
    .kitchen-benefits-carousel-wrapper .kitchen-benefits-grid,
    .bathroom-benefits-carousel-wrapper .bathroom-benefits-grid {
        display: flex;
    }
    
    .kitchen-benefits-navigation,
    .bathroom-benefits-navigation {
        display: none;
    }
}

/* Mobile: Hide grid, show carousel */
@media (max-width: 767px) {
    .kitchen-benefits-carousel-wrapper .kitchen-benefits-grid,
    .bathroom-benefits-carousel-wrapper .bathroom-benefits-grid {
        display: none;
    }
    
    .kitchen-benefits-carousel-wrapper .kitchen-benefits-carousel,
    .bathroom-benefits-carousel-wrapper .bathroom-benefits-carousel {
        display: block;
        overflow: hidden;
        padding-bottom: 60px;
    }
    
    .kitchen-benefits-carousel .swiper-slide,
    .bathroom-benefits-carousel .swiper-slide {
        height: auto;
        display: flex;
        align-items: stretch;
    }
    
    .kitchen-benefits-carousel .swiper-slide .benefit-card,
    .bathroom-benefits-carousel .swiper-slide .benefit-card {
        width: 100%;
        margin: 0;
    }
    
    /* Navigation Arrows - Below and Centered */
    .kitchen-benefits-navigation,
    .bathroom-benefits-navigation {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
        position: relative;
        z-index: 10;
    }
    
    .kitchen-benefits-prev,
    .kitchen-benefits-next,
    .bathroom-benefits-prev,
    .bathroom-benefits-next {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: var(--theme-color1);
        color: #ffffff;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(26, 21, 82, 0.2);
        font-size: 18px;
    }
    
    .kitchen-benefits-prev:hover,
    .kitchen-benefits-next:hover,
    .bathroom-benefits-prev:hover,
    .bathroom-benefits-next:hover {
        background: #2a2a6e;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(26, 21, 82, 0.3);
    }
    
    .kitchen-benefits-prev:active,
    .kitchen-benefits-next:active,
    .bathroom-benefits-prev:active,
    .bathroom-benefits-next:active {
        transform: translateY(0);
    }
    
    .kitchen-benefits-prev.swiper-button-disabled,
    .kitchen-benefits-next.swiper-button-disabled,
    .bathroom-benefits-prev.swiper-button-disabled,
    .bathroom-benefits-next.swiper-button-disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
}

/* Features Breakdown Section */
.service-features-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #fafafa 0%, var(--tp-common-white) 50%, #fafafa 100%);
  position: relative;
}

.service-features-section .row {
  position: relative;
  z-index: 1;
  margin-bottom: 120px;
}

.service-features-section .row:last-child {
  margin-bottom: 0;
}

/* Features Carousel Styles */
.features-carousel-wrapper {
  position: relative;
  padding-bottom: 80px;
}

.features-carousel {
  overflow: visible;
}

.features-carousel .swiper-slide {
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.features-carousel .swiper-slide-active {
  opacity: 1;
  pointer-events: auto;
}

.features-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 10;
}

.features-carousel-button-prev,
.features-carousel-button-next {
  width: 50px;
  height: 50px;
  background: var(--tp-common-white);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--tp-common-black);
  font-size: 18px;
  position: relative;
  z-index: 2;
}

.features-carousel-button-prev:hover,
.features-carousel-button-next:hover {
  background: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  color: var(--tp-common-white);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.features-carousel-button-prev:active,
.features-carousel-button-next:active {
  transform: scale(0.95);
}

.features-carousel-pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.features-carousel-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(212, 175, 55, 0.3);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.features-carousel-pagination .swiper-pagination-bullet-active {
  background: var(--tp-theme-1);
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.features-carousel .swiper-slide .row {
  min-height: 400px;
  align-items: center;
}

.features-carousel .swiper-slide .row {
  min-height: 400px;
  align-items: center;
}

/* Enhanced visual polish */
.feature-image-wrapper {
  will-change: transform;
}

.feature-highlight-item span {
  position: relative;
  z-index: 1;
}

.service-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
  pointer-events: none;
}

.feature-image-wrapper {
  position: relative;
  border-radius: 0;
  overflow: visible;
  padding: 0;
  margin: 0;
}

.feature-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: var(--tp-theme-1);
  opacity: 0.08;
  z-index: 0;
  border-radius: 8px;
  transition: all 0.4s ease;
}

.feature-image-wrapper:hover::before {
  opacity: 0.12;
  top: -15px;
  left: -15px;
}

.feature-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: 100%;
  min-height: 450px;
  width: 100%;
  z-index: 1;
  border: 3px solid var(--tp-common-white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-image-wrapper:hover .feature-image {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translate(-5px, -5px);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-image-wrapper:hover .feature-image img {
  transform: scale(1.08);
}

.feature-content {
  padding: 60px 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--tp-common-white);
  border-left: 4px solid var(--tp-theme-1);
  margin-left: 30px;
  min-height: 450px;
}

.feature-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--tp-common-black);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  line-height: 1.15;
  position: relative;
  padding-left: 20px;
  text-transform: uppercase;
  font-family: var(--tp-ff-heading);
}

.feature-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--tp-theme-1);
  border-radius: 2px;
}

.feature-title::after {
  display: none;
}

.feature-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--tp-text-body);
  margin-bottom: 40px;
  font-weight: 400;
  padding-left: 20px;
  font-family: var(--tp-ff-body);
  max-width: 90%;
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
  padding-left: 20px;
}

.feature-highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--tp-common-black);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  position: relative;
  overflow: visible;
  padding-left: 0;
  font-family: var(--tp-ff-body);
}

.feature-highlight-item::before {
  display: none;
}

.feature-highlight-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--tp-theme-1);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-highlight-item:hover {
  transform: translateX(8px);
  color: var(--tp-common-black);
  padding-left: 8px;
}

.feature-highlight-item:hover::after {
  width: 40px;
}

.feature-highlight-item i {
  color: var(--tp-theme-1);
  font-size: 16px;
  flex-shrink: 0;
  background: transparent;
  width: auto;
  height: auto;
  display: inline-block;
  transition: all 0.3s ease;
  margin-right: 4px;
}

.feature-highlight-item:hover i {
  transform: scale(1.2);
  color: var(--tp-theme-1);
}

@media (max-width: 991px) {
  .feature-content {
    padding: 50px 40px;
    margin-left: 20px;
    min-height: auto;
  }
  .feature-title {
    font-size: 38px;
    padding-left: 18px;
  }
  .feature-title::after {
    display: none;
  }
  .feature-text {
    font-size: 16px;
    padding-left: 18px;
    max-width: 95%;
  }
  .feature-highlights {
    padding-left: 18px;
  }
  .feature-image {
    min-height: 380px;
  }
  .feature-image-wrapper::before {
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
  }
  .features-carousel-nav {
    margin-top: 40px;
    gap: 20px;
  }
  .features-carousel-button-prev,
  .features-carousel-button-next {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  .features-carousel .swiper-slide .row {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .service-features-section {
    padding: 80px 0;
  }
  .service-features-section .row {
    margin-bottom: 80px;
  }
  .feature-content {
    padding: 40px 30px;
    margin-left: 0;
    border-left: none;
    border-top: 4px solid var(--tp-theme-1);
    min-height: auto;
  }
  .feature-title {
    font-size: 32px;
    padding-left: 15px;
    letter-spacing: -1px;
  }
  .feature-title::before {
    width: 3px;
  }
  .feature-text {
    font-size: 15px;
    margin-bottom: 30px;
    padding-left: 15px;
    max-width: 100%;
  }
  .feature-highlights {
    padding-left: 15px;
  }
  .feature-highlight-item {
    font-size: 14px;
  }
  .feature-highlight-item i {
    font-size: 14px;
  }
  .feature-image {
    min-height: 300px;
  }
  .feature-image-wrapper::before {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
  }
}
  .features-carousel-wrapper {
    padding-bottom: 60px;
  }
  .features-carousel-nav {
    margin-top: 30px;
    gap: 15px;
  }
  .features-carousel-button-prev,
  .features-carousel-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .features-carousel-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .features-carousel-pagination .swiper-pagination-bullet-active {
    width: 24px;
  }


/* Additional Content Section */
.service-additional-section {
  padding: 120px 0;
  background: var(--tp-grey-1);
  background: #F8F8F8;
}

.additional-content {
  padding-right: 40px;
}

.additional-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.additional-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .additional-content {
    padding-right: 0;
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .service-additional-section {
    padding: 80px 0;
  }
}

/* Testimonial Section */
.service-testimonial-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f8f8 0%, var(--tp-common-white) 100%);
  position: relative;
  overflow: hidden;
}

.service-testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(166, 161, 130, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.service-testimonial-card {
  background: var(--tp-common-white);
  border-radius: 0;
  padding: 60px 50px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  transform: rotate(0deg);
  transition: transform 0.4s ease;
  overflow: hidden;
}

.service-testimonial-card:hover {
  transform: scale(1.02);
}

.service-testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 100%;
  background: linear-gradient(135deg, var(--tp-theme-1) 0%, rgba(166, 161, 130, 0.9) 100%);
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.service-testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 100%;
  background: var(--tp-common-white);
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.testimonial-icon {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 120px;
  height: 120px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  z-index: 3;
  opacity: 0.15;
}

.testimonial-icon i {
  font-size: 120px;
  color: var(--tp-theme-1);
  transform: rotate(180deg);
}

.testimonial-text {
  font-size: 32px;
  line-height: 1.4;
  color: var(--tp-common-black);
  margin-bottom: 50px;
  font-style: normal;
  font-weight: 300;
  position: relative;
  z-index: 2;
  letter-spacing: -0.5px;
  font-family: var(--tp-ff-heading);
}

.testimonial-author {
  padding-top: 0;
  border-top: none;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.author-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--tp-common-black);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--tp-ff-heading);
}

.author-role {
  font-size: 14px;
  color: var(--tp-text-body);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}

@media (max-width: 991px) {
  .service-testimonial-card {
    min-height: 400px;
  }
  .service-testimonial-card::before,
  .service-testimonial-card::after {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .testimonial-text {
    font-size: 24px;
    padding: 50px 40px 0;
  }
  .testimonial-author {
    padding: 0 40px 50px;
  }
  .testimonial-icon {
    width: 80px;
    height: 80px;
    top: 30px;
    right: 30px;
  }
  .testimonial-icon i {
    font-size: 80px;
  }
}

@media (max-width: 767px) {
  .service-testimonial-section {
    padding: 80px 0;
  }
  .service-testimonial-card {
    min-height: 350px;
  }
  .testimonial-text {
    font-size: 20px;
    padding: 40px 30px 0;
    margin-bottom: 30px;
  }
  .testimonial-author {
    padding: 0 30px 40px;
  }
  .author-name {
    font-size: 18px;
  }
  .author-role {
    font-size: 12px;
  }
  .testimonial-icon {
    width: 60px;
    height: 60px;
    top: 20px;
    right: 20px;
  }
  .testimonial-icon i {
    font-size: 60px;
  }
}

/* CTA Section */
.service-cta-section {
  padding: 100px 0;
  background: var(--tp-common-black);
  position: relative;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--tp-common-white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  background: var(--tp-theme-1);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid var(--tp-theme-1);
}

.cta-button span {
  color: #ffffff !important;
}

.cta-button i {
  font-size: 14px;
  transition: transform 0.3s ease;
  color: #ffffff !important;
}

.cta-button:hover {
  background: var(--tp-theme-1);
  color: #ffffff !important;
  border-color: var(--tp-theme-1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 21, 82, 0.4);
}

.cta-button:hover span {
  color: #ffffff !important;
}

.cta-button:hover i {
  transform: translateX(4px);
  color: #ffffff !important;
}

@media (max-width: 767px) {
  .service-cta-section {
    padding: 80px 0;
  }
  .cta-title {
    font-size: 32px;
  }
  .cta-text {
    font-size: 16px;
  }
  .cta-button {
    padding: 16px 35px;
    font-size: 14px;
  }
}

/* Service Detail Sidebar Navigation */
.tp-sv-sidebar-widget {
  background: var(--tp-common-white);
  border-radius: 16px;
  padding: 40px 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.tp-sv-sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tp-sv-sidebar-widget ul li {
  margin-bottom: 12px;
}

.tp-sv-sidebar-widget ul li:last-child {
  margin-bottom: 0;
}

.tp-sv-sidebar-widget ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--tp-grey-1);
  background: #F8F8F8;
  border-radius: 10px;
  color: var(--tp-common-black);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tp-sv-sidebar-widget ul li a:hover,
.tp-sv-sidebar-widget ul li.active a {
  background: rgba(166, 161, 130, 0.1);
  border-color: var(--tp-theme-1);
  color: var(--tp-theme-1);
  transform: translateX(5px);
}

.tp-sv-sidebar-widget ul li a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.tp-sv-sidebar-widget ul li a span svg {
  width: 12px;
  height: 10px;
  transition: transform 0.3s ease;
}

.tp-sv-sidebar-widget ul li a:hover span svg,
.tp-sv-sidebar-widget ul li.active a span svg {
  transform: translateX(3px);
}

.tp-sv-sidebar-author-info {
  background: var(--tp-common-white);
  border-radius: 16px;
  padding: 40px 35px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--tp-theme-1);
}

.tp-sv-sidebar-author-info p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--tp-text-body);
  font-style: italic;
  margin-bottom: 25px;
}

.tp-sv-sidebar-author-info h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--tp-common-black);
  margin-bottom: 5px;
}

.tp-sv-sidebar-author-info span {
  font-size: 15px;
  color: var(--tp-text-body);
}

@media (max-width: 991px) {
  .tp-sv-details-sidebar {
    padding-top: 50px;
  }
}

/* ==============================
   Extracted Internal CSS from HTML Files
   ============================== */

/* ==============================
   index.html - About Section & Header Styles
   ============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   MOBILE RESPONSIVENESS FIXES - ABOUT PAGE
   ============================================ */

/* Prevent horizontal overflow globally */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    line-height: 1.6;
    position: relative;
}

/* Ensure all containers respect viewport width */
.container,
.container-fluid {
    max-width: 100%;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* Prevent any element from causing overflow */
/* * {
    max-width: 100%;
} */

img {
    max-width: 100%;
    height: auto;
}

/* Mobile-specific fixes */
@media (max-width: 767px) {
    /* Reset any fixed widths */
    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Ensure containers don't overflow */
    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
        width: 100%;
    }
    
    /* Fix row margins */
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .row > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Prevent any section from overflowing */
    section {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    /* Add top spacing to prevent content from hiding behind header/logo */
    main {
        padding-top: 26px;
        margin-top: 0;
    }
    
    /* Hero sections need extra top padding */
    .hero-section {
        padding-top: 100px !important;
        margin-top: 0;
    }
    
    /* About page hero */
    .about-page-hero {
        padding-top: 140px !important;
        margin-top: 0;
    }
    
    /* All sections with py-* classes - add top padding */
    section.py-120,
    section.py-100,
    section[class*="py-"] {
        padding-top: 90px !important;
    }
    
    /* First section on any page (but hero-section has its own rule above) */
    main > section:first-child:not(.hero-section) {
        padding-top: 100px !important;
        margin-top: 0;
    }
    
    /* Specific section adjustments */
    .about-who-section,
    .about-services-section,
    .about-approach-section,
    .about-why-section {
        padding-top: 80px !important;
    }
}

.about-section {
    padding: 100px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

/* Decorative Elements */
.about-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

/* Content Section (Left Side) */
.content-wrapper {
    padding-right: 40px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: #60a5fa;
}

.main-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
}

.main-title span {
    display: block;
    color: #ffffff;
}

.description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.8;
}

.description strong {
    color: #ffffff;
    font-weight: 700;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.stat-box {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #60a5fa;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1a1552;
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.cta-button:hover {
    background: #2a2a6e;
    color: #ffffff;
    transform: translateX(5px);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    color: #ffffff;
    transform: translateX(5px);
}

/* Image Section (Right Side) */
.image-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
	padding-right: 50px;
}

.image-large {
    grid-column: 1 / -1;
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-small {
    position: relative;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Feature Cards Overlay */
.features-overlay {
    position: absolute;
    bottom: -62px;
    left: 0;
    right: 52px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 20px;
}

.feature-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    color: #ffffff;
}

.feature-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1A1552f2, #1A1552f2);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    z-index: 2;
}

.experience-badge .number {
    font-size: 32px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-top: 5px;
    display: block;
}

/* Responsive */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .content-wrapper {
        padding-right: 0;
    }

    .main-title {
        font-size: 42px;
    }

    .stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .features-overlay {
        position: relative;
        bottom: 0;
        margin-top: 30px;
        padding: 0;
    }
}

@media (max-width: 640px) {
    .about-section {
        padding: 60px 0;
    }

    .main-title {
        font-size: 32px;
    }

    .description {
        font-size: 15px;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .image-wrapper {
        grid-template-columns: 1fr;
        padding-right: 0;
    }

    .image-small {
        height: 200px;
    }

    .features-overlay {
        grid-template-columns: 1fr;
    }
}

/* About Section Carousels - Desktop: Show Grid, Hide Carousel */
@media (min-width: 768px) {
    .about-images-carousel,
    .about-features-carousel {
        display: none;
    }
    
    .about-images-grid,
    .features-overlay-grid {
        display: grid;
    }
    
    .about-images-navigation,
    .about-features-navigation {
        display: none;
    }
}

/* About Section Carousels - Mobile: Hide Grid, Show Carousel */
@media (max-width: 767px) {
    .about-images-grid,
    .features-overlay-grid {
        display: none;
    }
    
    .about-images-carousel,
    .about-features-carousel {
        display: block;
        overflow: hidden;
        margin-bottom: 0;
        padding-bottom: 60px;
        position: relative;
        max-width: 100%;
    }
    
    .about-images-carousel .swiper-slide,
    .about-features-carousel .swiper-slide {
        height: auto;
        display: flex;
        align-items: stretch;
    }
    
    .about-image-slide {
        position: relative;
        width: 100%;
        height: 300px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }
    
    .about-image-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .about-image-slide .experience-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: linear-gradient(135deg, #1A1552f2, #1A1552f2);
        padding: 15px 20px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
        z-index: 2;
    }
    
    .about-image-slide .experience-badge .number {
        font-size: 28px;
        font-weight: 900;
        color: white;
        line-height: 1;
    }
    
    .about-image-slide .experience-badge .text {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 600;
        margin-top: 5px;
        display: block;
    }
    
    .about-features-carousel .swiper-slide .feature-card {
        width: 100%;
        margin: 0;
    }
    
    /* Navigation Arrows - Below and Centered */
    .about-images-navigation,
    .about-features-navigation {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-top: 25px;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        z-index: 10;
    }
    
    .about-images-prev,
    .about-images-next,
    .about-features-prev,
    .about-features-next {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: var(--theme-color1);
        color: #ffffff;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(26, 21, 82, 0.2);
        font-size: 18px;
    }
    
    .about-images-prev:hover,
    .about-images-next:hover,
    .about-features-prev:hover,
    .about-features-next:hover {
        background: #2a2a6e;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(26, 21, 82, 0.3);
    }
    
    .about-images-prev:active,
    .about-images-next:active,
    .about-features-prev:active,
    .about-features-next:active {
        transform: translateY(0);
    }
    
    .about-images-prev.swiper-button-disabled,
    .about-images-next.swiper-button-disabled,
    .about-features-prev.swiper-button-disabled,
    .about-features-next.swiper-button-disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
}

/* ==============================
   Mobile Sidebar - Clean Design & Spacing
   ============================== */
@media (max-width: 991px) {
    /* Spacing between navigation items */
    .sidebar__body .mean-container .mean-nav > ul > li {
        margin-bottom: 12px;
    }
    
    .sidebar__body .mean-container .mean-nav > ul > li > a {
        padding: 14px 20px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s ease;
        display: block;
        margin-bottom: 0;
    }
    
    .sidebar__body .mean-container .mean-nav > ul > li > a:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(5px);
    }
    
    /* Social Icons - Only Instagram and Facebook */
    .sidebar__socials {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .sidebar__socials ul {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .sidebar__socials ul li {
        width: 45px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        background-color: var(--theme-color1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .sidebar__socials ul li:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        background-color: #2a2a6e;
    }
    
    .sidebar__socials ul li a {
        display: block;
        width: 100%;
        height: 100%;
        color: #ffffff;
        text-decoration: none;
    }
    
    .sidebar__socials ul li i {
        color: #ffffff;
        font-size: 18px;
    }
    
    /* Made with Love Section */
    .sidebar__made-with-love {
        margin-top: 25px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    
    .made-with-text {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        margin: 0;
        font-weight: 400;
    }
    
    .love-link {
        display: inline-block;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 18px;
        margin-left: 5px;
        transform-origin: center;
    }
    
    .love-link:hover {
        transform: scale(1.3);
        filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.6));
    }
    
    .love-link:active {
        transform: scale(1.1);
    }
}

/* ==============================
   index.html - Header & Navigation Styles
   ============================== */
:root {
    --theme-color1: #1a1552;
    --theme-color3: #f4f4f4;
    --text-color1: rgba(255, 255, 255, 0.9);
    --heading-color: #1a1552;
    --white: #ffffff;
    --black: #000000;
    --border: #e5e5e5;
    --main-bg: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding-top: 20px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 10;
}

/* .logo-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 8px 20px;
    backdrop-filter: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.logo:hover .logo-container::before {
    left: 100%;
}

.logo:hover .logo-container {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 21, 82, 0.2);
} */

.logo img {
    width: 120px;
    height: auto;
    filter: brightness(1.2) contrast(1.1);
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: brightness(1.3) contrast(1.15);
    transform: scale(1.02);
}

/* Header Styles */
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #140C67;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile: Ensure header doesn't overlap content */
@media (max-width: 767px) {
    .header-area {
        height: auto;
        min-height: 80px;
    }
}

.header-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.header-area.menu-fixed {
    background: linear-gradient(135deg, rgba(26, 21, 82, 0.98) 0%, rgba(26, 21, 82, 0.96) 100%);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.header__main {
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 8px 0; */
    padding: 15px 0;
    position: relative;
}


.header__main .logo{
    position: absolute;
    left: 40px;
    top: 0;
    transform:none;
    border-radius: 100px;
    z-index: 10;
}
.logo img{
border-radius:70px
}

/* Navigation Styles */
.main-menu nav ul {
    display: flex;
    align-items: center;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu nav ul li {
    position: relative;
}

.main-menu nav ul li a {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color1);
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    position: relative;
    padding: 8px 0;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-menu nav ul li a::before {
    display: none;
}

.main-menu nav ul li a:hover,
.main-menu nav ul li a.active {
    color: #ffffff;
    transform: translateY(-2px);
}

.main-menu nav ul li a:hover::before,
.main-menu nav ul li a.active::before {
    display: none;
}

.main-menu nav ul li a i {
    font-size: 11px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.main-menu nav ul li:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.sub-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    min-width: 280px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 12px 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26, 21, 82, 0.08);
    list-style: none;
}

.sub-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    transform: rotate(45deg);
    border-left: 1px solid rgba(26, 21, 82, 0.08);
    border-top: 1px solid rgba(26, 21, 82, 0.08);
}

.main-menu nav ul li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    width: 100%;
}

.sub-menu li a {
    display: flex;
    align-items: center;
    padding: 14px 24px !important;
    color: var(--heading-color) !important;
    font-size: 14px !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sub-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--theme-color1), rgba(26, 21, 82, 0.6));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sub-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 21, 82, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sub-menu li a:hover {
    color: var(--theme-color1) !important;
    padding-left: 32px !important;
    transform: none !important;
}

.sub-menu li a:hover::before {
    transform: scaleY(1);
}

.sub-menu li a:hover::after {
    opacity: 1;
}

/* Action Buttons */
.menu-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.phone-trigger,
.search-trigger {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.phone-trigger::before,
.search-trigger::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--theme-color1);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.phone-trigger:hover::before,
.search-trigger:hover::before {
    width: 100%;
    height: 100%;
}

.phone-trigger i,
.search-trigger i {
    font-size: 18px;
    color: var(--theme-color1);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.phone-trigger:hover,
.search-trigger:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(26, 21, 82, 0.25);
}

.phone-trigger:hover i,
.search-trigger:hover i {
    color: var(--white);
    animation: iconPulse 0.6s ease;
}

.phone-trigger {
    background: linear-gradient(135deg, var(--theme-color1), rgba(26, 21, 82, 0.9));
}

.phone-trigger i {
    color: var(--white);
}

.phone-trigger:hover {
    background: linear-gradient(135deg, rgba(26, 21, 82, 0.9), var(--theme-color1));
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Mobile Menu Button */
.menubars {
    width: 32px;
    height: 24px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menubars span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menubars span:nth-child(2) {
    width: 70%;
}

.menubars:hover span:nth-child(2) {
    width: 100%;
}

/* Demo Content */
.demo-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 60px 40px;
    text-align: center;
}

.demo-content h1 {
    font-size: 48px;
    color: var(--theme-color1);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.demo-content p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 991px) {
    .header__main {
        justify-content: space-between;
    }

    .header__main .logo {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }

    .menu-btns {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
    }

    .main-menu {
        display: none;
    }

    .menubars {
        display: flex;
    }

    .container {
        padding: 0 20px;
    }

    .main-menu nav ul {
        gap: 30px;
    }

    .phone-trigger,
    .search-trigger {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 768px) {
    .header__main {
        padding: 14px 0;
        justify-content: space-between;
		align-items : start;
		height: 80px;
    }

    .header__main .logo {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }

    .menu-btns {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
    }

    .main-menu {
        display: none;
    }

    .logo img {
        width: 110px;
    }

    .demo-content h1 {
        font-size: 32px;
    }

    .demo-content p {
        font-size: 16px;
    }
}

/* ==============================
   index.html - Services Section Styles
   ============================== */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #d4a574;
    --accent-color: #1a2332;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #0f1419;
}

/* Services Section */
.services-section {
    padding: 120px 2rem;
    background: linear-gradient(180deg, #0f1419 0%, #1a2332 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44, 62, 80, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 50px;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.section-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    max-width: 900px;
    margin: 0 auto;
}

/* Services Carousel */
.services-slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 3rem;
}

.services-slider .swiper-wrapper {
    padding-bottom: 1rem;
}

.services-slider .swiper-slide {
    width: 420px;
    height: auto;
}

@media (max-width: 768px) {
    .services-slider .swiper-slide {
        width: 320px;
    }
}

/* Service Card */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #c99666);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Service Image */
.service-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 35, 50, 0.9) 100%);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(212, 165, 116, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    z-index: 2;
}

/* Service Content */
.service-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #c99666);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-title a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.service-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex: 1;
    min-height: 80px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.service-link:hover::after {
    width: calc(100% - 2rem);
}

.service-link:hover {
    gap: 1.2rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Navigation Buttons */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

/* Services slider controls */
.services-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.services-pagination {
    position: static;
}

.services-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.services-pagination .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    box-shadow: 0 0 0 6px rgba(212, 165, 116, 0.18);
}

/* Feature Highlights */
.features-bar {
    margin-top: 80px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 165, 116, 0.1);
    border: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--secondary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.feature-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .slider-nav {
        margin-top: 3rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }

/* ==============================
   index.html - Testimonials Section Styles
   ============================== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* min-height: 100vh; */
    /* padding: 40px 20px; */
}

/* ==============================
   Testimonial Section - Fresh Modern Redesign
   ============================== */
.testimonial-section {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1552 0%, #2a1f72 50%, #1a1552 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.testimonial-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 21, 82, 0.4) 0%, transparent 30%, transparent 70%, rgba(26, 21, 82, 0.4) 100%);
    pointer-events: none;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease-out;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
   
}

.section-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Testimonials Slider - Balanced Design */
.testimonials-slider {
    margin-bottom: 50px;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.testimonials-slider .swiper-wrapper {
    align-items: stretch;
}

.testimonials-slider .swiper-slide {
    height: auto;
    padding: 0 12px;
}

/* Desktop: 3 cards visible - Square Shape */
@media (min-width: 1200px) {
    .testimonials-slider .swiper-slide {
        width: calc(33.333% - 24px);
    }
    
    .testimonial-card {
        width: 100%;
        aspect-ratio: 1 / 1;
        max-width: 380px;
        margin: 0 auto;
    }
}

/* Tablet: 2 cards visible - Square Shape */
@media (min-width: 768px) and (max-width: 1199px) {
    .testimonials-slider .swiper-slide {
        width: calc(50% - 24px);
    }
    
    .testimonial-card {
        width: 100%;
        aspect-ratio: 1 / 1;
        max-width: 380px;
        margin: 0 auto;
    }
}

/* Mobile: 1 card visible - Square Shape */
@media (max-width: 767px) {
    .testimonials-slider {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .testimonials-slider .swiper-slide {
        width: 100%;
        padding: 0 8px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        width: 100%;
        aspect-ratio: 1 / 1;
        max-width: 350px;
        margin: 0 auto;
        padding: 35px 25px 30px;
    }
    
    .author-avatar {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
}

/* Testimonial Card - Image-Based Design - Square Shape */
.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px 35px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    aspect-ratio: 1 / 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Quote Icon - Hidden */
.quote-icon {
    display: none;
}

/* Rating Stars - Bottom Position */
.rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 20px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.rating i {
    color: #ffc107;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Testimonial Text Wrapper - Simple */
.testimonial-text-wrapper {
    flex-grow: 1;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Testimonial Text - Clean & Readable */
.testimonial-text {
    font-size: 13px;
    line-height: 1.7;
    color: #4a5568 !important;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    font-weight: 400;
    display: block;
    text-align: left;
    font-style: italic;
}

/* Read More Button - Hidden (using scroller instead) */
.read-more-btn {
    display: none;
}

/* Author Section - Balanced */
.author-section {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #e8e9ea;
    position: relative;
    z-index: 1;
    margin-top: auto;
    flex-shrink: 0;
}

/* Author Avatar - Top Position, Larger */
.author-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--theme-color1) 0%, #2a1f72 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(26, 21, 82, 0.2);
    transition: all 0.4s ease;
    margin-bottom: 20px;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(26, 21, 82, 0.3);
}

/* Author Info - Below Avatar */
.author-info {
    width: 100%;
    text-align: left;
    margin-bottom: 0;
}

.author-info h5 {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.3;
    text-align: left;
}

.author-role {
    font-size: 12px;
    color: #718096;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
}

/* Navigation Controls - Clean & Centered */
.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.testimonials-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonials-nav-btn:hover:not(:disabled) {
    background: var(--theme-color1);
    border-color: var(--theme-color1);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(26, 21, 82, 0.4);
}

.testimonials-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Pagination Dots - Larger & Clear */
.testimonials-pagination {
    position: relative !important;
    bottom: auto !important;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    margin: 0 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--theme-color1);
    width: 28px;
    border-radius: 6px;
    border-color: var(--theme-color1);
    box-shadow: 0 0 12px rgba(26, 21, 82, 0.5);
}

.stats-banner {
    background: white;
    border-radius: 24px;
    padding: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 28px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    color: #718096;
    font-weight: 600;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade-in animation for testimonial cards */
.testimonials-slider .swiper-slide {
    animation: fadeInUp 0.6s ease-out backwards;
}

.testimonials-slider .swiper-slide:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonials-slider .swiper-slide:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonials-slider .swiper-slide:nth-child(3) {
    animation-delay: 0.3s;
}

/* Responsive Styles for Testimonial Section */
@media (max-width: 1199px) {
    .testimonial-section {
        padding: 90px 0;
    }

    .section-title {
        font-size: 38px;
    }

    .section-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .testimonial-section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 15px;
        max-width: 100%;
    }

    .testimonial-card {
        padding: 30px 26px;
    }
}

@media (max-width: 767px) {
    .testimonial-section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 1.65;
    }

    .testimonial-card {
        padding: 26px 22px;
        border-radius: 14px;
    }

    .quote-icon {
        top: 18px;
        right: 18px;
        font-size: 48px;
    }

    .rating {
        margin-bottom: 14px;
    }

    .rating i {
        font-size: 16px;
    }

    .testimonial-text-wrapper {
        max-height: 180px;
    }

    .testimonial-text {
        font-size: 12px;
        line-height: 1.65;
        margin-bottom: 0;
    }

    .author-section {
        padding-top: 18px;
        gap: 12px;
    }

    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .author-info h5 {
        font-size: 14px;
    }

    .author-role {
        font-size: 11px;
    }

    .testimonials-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .testimonials-controls {
        gap: 18px;
        margin-top: 35px;
    }

    .testimonials-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .testimonials-pagination .swiper-pagination-bullet-active {
        width: 24px;
    }
}

@media (max-width: 575px) {
    .testimonial-section {
        padding: 60px 0;
    }

    .section-header {
        padding: 0 12px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .testimonial-card {
        padding: 30px 22px 28px;
    }

    .author-avatar {
        width: 75px;
        height: 75px;
        font-size: 26px;
        margin-bottom: 16px;
    }

    .author-info h5 {
        font-size: 15px;
    }

    .testimonial-text {
        font-size: 12px;
        line-height: 1.65;
    }
}

/* Contact Form Input Visibility Enhancement */
.premium-contact-form .form-group {
    margin-bottom: 25px;
}

.premium-contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1552;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.premium-contact-form input[type="text"],
.premium-contact-form input[type="email"],
.premium-contact-form input[type="tel"],
.premium-contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    color: #1a1a1a;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.premium-contact-form input[type="text"]:focus,
.premium-contact-form input[type="email"]:focus,
.premium-contact-form input[type="tel"]:focus,
.premium-contact-form textarea:focus {
    border-color: #1a1552;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(26, 21, 82, 0.1);
}

.premium-contact-form input[type="text"]::placeholder,
.premium-contact-form input[type="email"]::placeholder,
.premium-contact-form input[type="tel"]::placeholder,
.premium-contact-form textarea::placeholder {
    color: #999;
    font-size: 15px;
}

.premium-contact-form textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
    padding-top: 16px;
}

.premium-contact-form input[type="text"]:not(:placeholder-shown),
.premium-contact-form input[type="email"]:not(:placeholder-shown),
.premium-contact-form input[type="tel"]:not(:placeholder-shown),
.premium-contact-form textarea:not(:placeholder-shown) {
    border-color: #1a1552;
    background: #ffffff;
}



/* ==============================
   blog.html - Extracted Internal CSS
   ============================== */

/* Blog Section Enhancements */
        .postbox__area {
            background: #f8f9fa;
        }

        /* Blog Post Cards */
        .postbox__item {
            background: #ffffff;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.05);
            overflow: hidden;
            position: relative;
        }

        .postbox__item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--theme-color1);
            transition: height 0.4s ease;
        }

        .postbox__item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            border-color: rgba(26, 21, 82, 0.3);
        }

        .postbox__item:hover::before {
            height: 100%;
        }

        .postbox__thumb {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            margin-bottom: 25px;
        }

        .postbox__thumb img {
            width: 100%;
            height: auto;
            transition: transform 0.6s ease;
            display: block;
        }

        .postbox__item:hover .postbox__thumb img {
            transform: scale(1.08);
        }

        .postbox__thumb::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%); */
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .postbox__item:hover .postbox__thumb::after {
            opacity: 1;
        }

        .postbox__meta {
            margin-bottom: 12px;
        }

        .postbox__meta span {
            color: #666;
            font-size: 14px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .postbox__title {
            margin-bottom: 15px;
        }

        .postbox__title a {
            color: #1a1a1a;
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
            transition: color 0.3s ease;
            display: block;
        }

        .postbox__title a:hover {
            color: var(--theme-color1);
        }

        .postbox__text-2 {
            margin-bottom: 25px;
        }

        .postbox__text-2 p {
            color: #666;
            font-size: 16px;
            line-height: 1.8;
            margin: 0;
        }

        .postbox__button-box {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

        .tp-btn-border-bottom {
            color: #1a1a1a; /* Dark color for better visibility */
            font-weight: 600;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .tp-btn-border-bottom span {
            color: #1a1a1a; /* Dark color for better visibility */
        }

        .tp-btn-border-bottom:hover {
            color: var(--theme-color1);
        }
        
        .tp-btn-border-bottom:hover span {
            color: var(--theme-color1);
        }

        .tp-btn-border-bottom svg {
            transition: transform 0.3s ease;
        }

        .tp-btn-border-bottom:hover svg {
            transform: translateX(5px);
        }

        .postbox__meta span svg {
            width: 16px;
            height: 16px;
            color: var(--theme-color1);
        }

        /* Sidebar Enhancements */
        .sidebar__wrapper {
            position: sticky;
            top: 100px;
        }

        .sidebar__widget {
            background: #ffffff;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .sidebar__widget:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .sidebar__widget-title {
            font-size: 22px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
            position: relative;
        }

        .sidebar__widget-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--theme-color1);
        }



        

        /* Search Widget */
        .sidebar__widget-theme-bg {
            background: var(--theme-color1);
            border: none;
        }

        .sidebar__search-input-2 {
            position: relative;
            display: flex;
            align-items: center;
        }

        .sidebar__search-input-2 input {
            width: 100%;
            padding: 16px 50px 16px 20px;
            border: none;
            border-radius: 12px;
            background: #ffffff;
            font-size: 15px;
            color: #1a1a1a;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .sidebar__search-input-2 input:focus {
            outline: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            transform: translateY(-2px);
        }

        .sidebar__search-input-2 input::placeholder {
            color: #999;
        }

        .sidebar__search-input-2 button {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border: none;
            border-radius: 10px;
            background: var(--theme-color1);
            color: #ffffff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(26, 21, 82, 0.3);
        }

        .sidebar__search-input-2 button:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 4px 15px rgba(26, 21, 82, 0.4);
            background: rgba(26, 21, 82, 0.9);
        }

        .sidebar__search-input-2 button i {
            font-size: 16px;
        }

        /* Latest Posts */
        .rc__post {
            padding: 20px;
            border-radius: 12px;
            background: #f8f9fa;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .rc__post:hover {
            background: #ffffff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border-color: rgba(26, 21, 82, 0.2);
            transform: translateX(5px);
        }

        .rc__post-thumb {
            flex-shrink: 0;
            width: 90px;
            height: 90px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .rc__post-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .rc__post:hover .rc__post-thumb img {
            transform: scale(1.1);
        }

        .rc__post-content {
            flex: 1;
            padding-left: 15px;
        }

        .rc__meta {
            margin-bottom: 8px;
        }

        .rc__meta span {
            color: #999;
            font-size: 12px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
        }

        .rc__meta i {
            color: var(--theme-color1);
            font-size: 11px;
        }

        .rc__post-title {
            margin: 0;
        }

        .rc__post-title a {
            color: #1a1a1a;
            font-size: 15px;
            font-weight: 600;
            line-height: 1.4;
            transition: color 0.3s ease;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .rc__post-title a:hover {
            color: var(--theme-color1);
        }

        /* Categories - Clean, Modern, Professional Design */
        .sidebar__widget-content ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .sidebar__widget-content ul li {
            margin: 0;
            padding: 0;
            position: relative;
        }

        .sidebar__widget-content ul li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            height: 52px;
            padding: 0 18px;
            background: #ffffff;
            border-radius: 10px;
            color: #2c3e50;
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #e8e9ea;
            box-sizing: border-box;
            position: relative;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
        }

        .sidebar__widget-content ul li a span {
            color: #7a7a7a;
            font-size: 12px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            flex-shrink: 0;
            margin-left: 12px;
        }

        .sidebar__widget-content ul li a span i {
            transition: transform 0.3s ease;
            font-size: 11px;
            width: 11px;
            height: 11px;
        }

        /* Normal State - Clean white background */
        .sidebar__widget-content ul li:not(.active) a {
            background: #ffffff;
            color: #2c3e50;
            border-color: #e8e9ea;
        }

        .sidebar__widget-content ul li:not(.active) a span {
            color: #7a7a7a;
        }

        /* Hover State - Subtle blue accent, no background change */
        .sidebar__widget-content ul li:not(.active) a:hover {
            background: #ffffff;
            color: var(--theme-color1);
            border-color: rgba(26, 21, 82, 0.25);
            box-shadow: 0 2px 8px rgba(26, 21, 82, 0.12);
            transform: translateX(2px);
        }

        .sidebar__widget-content ul li:not(.active) a:hover span {
            color: var(--theme-color1);
        }

        .sidebar__widget-content ul li:not(.active) a:hover span i {
            transform: translateX(2px);
            color: var(--theme-color1);
        }

        /* Active State - Blue background */
        .sidebar__widget-content ul li.active a {
            background: var(--theme-color1);
            color: #ffffff;
            border-color: var(--theme-color1);
            box-shadow: 0 3px 10px rgba(26, 21, 82, 0.2);
            font-weight: 600;
            transform: translateX(0);
        }

        .sidebar__widget-content ul li.active a span {
            color: #ffffff;
        }

        .sidebar__widget-content ul li.active a span i {
            transform: translateX(2px);
            color: #ffffff;
        }

        /* Override any conflicting styles from main.css */
        .sidebar__widget-content ul li:hover {
            background-color: transparent !important;
        }

        .sidebar__widget-content ul li:hover a {
            background: #ffffff !important;
        }

        .sidebar__widget-content ul li.active:hover a {
            background: var(--theme-color1) !important;
        }

        /* Tags */
        .tagcloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tagcloud a {
            display: inline-block;
            padding: 10px 18px;
            background: #f8f9fa;
            border-radius: 25px;
            color: #666;
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .tagcloud a:hover {
            background: var(--theme-color1);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(26, 21, 82, 0.3);
            border-color: transparent;
        }

        /* Pagination */
        .basic-pagination {
            margin-top: 50px;
        }

        .basic-pagination ul {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .basic-pagination ul li {
            margin: 0;
        }

        .basic-pagination ul li a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: #ffffff;
            color: #666;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .basic-pagination ul li a i,
        .basic-pagination ul li a span i {
            color: var(--theme-color1); /* Make arrow visible by default */
        }

        .basic-pagination ul li a:hover {
            background: var(--theme-color1);
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(26, 21, 82, 0.3);
            border-color: transparent;
        }
        
        .basic-pagination ul li a:hover i,
        .basic-pagination ul li a:hover span i,
        .basic-pagination ul li a:hover span.current i {
            color: #ffffff; /* Make arrow white on hover */
        }

        .basic-pagination ul li.active a {
            background: var(--theme-color1);
            color: #ffffff;
            box-shadow: 0 6px 20px rgba(26, 21, 82, 0.3);
            border-color: transparent;
        }

        /* Slider Arrows */
        .postbox__slider-arrow-wrap {
            position: absolute;
            bottom: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .postbox-arrow-prev,
        .postbox-arrow-next {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            color: #1a1a1a;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        .postbox-arrow-prev:hover,
        .postbox-arrow-next:hover {
            background: var(--theme-color1);
            color: #ffffff;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(26, 21, 82, 0.3);
        }

        /* Play Button */
        .postbox__play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
        }

        .pulse-btn {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--theme-color1);
            font-size: 24px;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .pulse-btn:hover {
            background: var(--theme-color1);
            color: #ffffff;
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 8px 30px rgba(26, 21, 82, 0.4);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .postbox__item {
                padding: 25px;
            }

            .sidebar__wrapper {
                position: static;
                margin-top: 40px;
            }

            .sidebar__widget {
                padding: 25px;
            }
        }

        @media (max-width: 767px) {
            .postbox__item {
                padding: 20px;
                border-radius: 16px;
            }

            .postbox__title a {
                font-size: 22px;
            }

            .postbox__button-box {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .rc__post {
                padding: 15px;
            }

            .rc__post-thumb {
                width: 70px;
                height: 70px;
            }
        }


/* ==============================
   blog-details.html - Extracted Internal CSS
   ============================== */

/* Blog Details Section Enhancements */
        .postbox__area {
            background: #f8f9fa;
        }

        /* Post Content Card */
        .postbox__item {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        /* Post Image */
        .postbox__thumb {
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 30px;
            position: relative;
        }

        .postbox__thumb img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
        }

        .postbox__thumb:hover img {
            transform: scale(1.05);
        }

        .postbox__thumb-text-2 {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--theme-color1);
            color: #ffffff;
            padding: 12px 20px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 14px;
            z-index: 5;
            box-shadow: 0 4px 15px rgba(26, 21, 82, 0.3);
        }

        /* Post Meta */
        .postbox__meta-box {
            padding: 20px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            margin-bottom: 25px;
        }

        .postbox__meta {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .postbox__meta span {
            color: #666;
            font-size: 14px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color 0.3s ease;
        }

        .postbox__meta span i {
            color: var(--theme-color1);
            font-size: 14px;
        }

        .postbox__meta a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .postbox__meta a:hover {
            color: var(--theme-color1);
        }

        .postbox__meta span:last-child {
            background: rgba(26, 21, 82, 0.1);
            padding: 8px 16px;
            border-radius: 20px;
            color: var(--theme-color1);
            font-weight: 600;
        }

        /* Post Title */
        .postbox__title {
            font-size: 36px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.3;
            margin-bottom: 25px;
        }

        /* Post Text */
        .postbox__text {
            color: #666;
            font-size: 16px;
            line-height: 1.9;
            margin-bottom: 30px;
        }

        .postbox__text p {
            margin-bottom: 20px;
        }

        .postbox__text h4 {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        /* Content Images Carousel */
        .postbox__content-thumb {
            margin-bottom: 30px;
            position: relative;
        }

        .blog-images-carousel {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .blog-images-carousel .swiper-slide {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
        }

        .blog-images-carousel .swiper-slide img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
            border-radius: 16px;
            transition: transform 0.6s ease;
        }

        .blog-images-carousel .swiper-slide-active img {
            transform: scale(1.02);
        }

        /* Navigation Buttons */
        .blog-images-carousel .swiper-button-next,
        .blog-images-carousel .swiper-button-prev {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            color: var(--theme-color1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .blog-images-carousel .swiper-button-next::after,
        .blog-images-carousel .swiper-button-prev::after {
            font-size: 18px;
            font-weight: 700;
        }

        .blog-images-carousel .swiper-button-next:hover,
        .blog-images-carousel .swiper-button-prev:hover {
            background: var(--theme-color1);
            color: #ffffff;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(26, 21, 82, 0.3);
        }

        .blog-images-carousel .swiper-button-next {
            right: 20px;
        }

        .blog-images-carousel .swiper-button-prev {
            left: 20px;
        }

        /* Pagination */
        .blog-images-carousel .swiper-pagination {
            bottom: 20px;
        }

        .blog-images-carousel .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 1;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .blog-images-carousel .swiper-pagination-bullet-active {
            background: var(--theme-color1);
            border-color: var(--theme-color1);
            width: 30px;
            border-radius: 6px;
        }

        @media (max-width: 767px) {
            .blog-images-carousel .swiper-slide img {
                height: 350px;
            }

            .blog-images-carousel .swiper-button-next,
            .blog-images-carousel .swiper-button-prev {
                width: 40px;
                height: 40px;
            }

            .blog-images-carousel .swiper-button-next::after,
            .blog-images-carousel .swiper-button-prev::after {
                font-size: 14px;
            }

            .blog-images-carousel .swiper-button-next {
                right: 10px;
            }

            .blog-images-carousel .swiper-button-prev {
                left: 10px;
            }
        }

        /* Blockquote */
        .postbox__blockquote {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 40px;
            border-radius: 16px;
            border-left: 4px solid var(--theme-color1);
            margin: 40px 0;
            position: relative;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .postbox__blockquote blockquote {
            margin: 0;
            padding: 0;
            border: none;
        }

        .postbox__blockquote blockquote p {
            font-size: 24px;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 15px;
        }

        .postbox__blockquote blockquote cite {
            font-size: 16px;
            color: var(--theme-color1);
            font-weight: 600;
            font-style: normal;
            display: block;
            margin-top: 15px;
        }

        /* Tags */
        .postbox__details-share-wrapper {
            padding: 30px 25px;
            border: 2px solid var(--theme-color1);
            border-radius: 12px;
            background: #ffffff;
            margin: 40px 0;
            box-shadow: 0 2px 8px rgba(26, 21, 82, 0.1);
        }
        
        .postbox__details-share {
            display: none !important;
        }

        .postbox__details-tag {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .postbox__details-tag span {
            font-weight: 800;
            color: var(--theme-color1);
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .postbox__details-tag a {
            display: inline-block;
            padding: 12px 24px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 30px;
            color: var(--theme-color1);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid var(--theme-color1);
            box-shadow: 0 2px 8px rgba(26, 21, 82, 0.1);
        }

        .postbox__details-tag a:hover {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            color: var(--theme-color1);
            transform: none;
            box-shadow: 0 2px 8px rgba(26, 21, 82, 0.1);
            border-color: var(--theme-color1);
        }

        .postbox__details-share {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .postbox__details-share span {
            font-weight: 600;
            color: #1a1a1a;
            font-size: 15px;
        }

        .postbox__details-share a {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: #f8f9fa;
            color: #666;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            font-size: 18px;
        }

        .postbox__details-share a:hover {
            background: var(--theme-color1);
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(26, 21, 82, 0.3);
        }

        /* About Author */
        .postbox__author {
            background: linear-gradient(135deg, var(--theme-color1) 0%, rgba(26, 21, 82, 0.9) 100%);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(26, 21, 82, 0.15);
            margin-bottom: 50px;
        }

        .postbox__author-thumb {
            flex-shrink: 0;
            width: 120px;
            height: 120px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            margin-right: 30px;
        }

        .postbox__author-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .postbox__author-title {
            margin-bottom: 15px;
        }

        .postbox__author-title a {
            color: #ffffff;
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
        }

        .postbox__author-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .postbox__author-social {
            gap: 12px;
        }

        .postbox__author-social a {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .postbox__author-social a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
        }

        /* Comments Section */
        .postbox__comment {
            margin-bottom: 50px;
        }

        .postbox__comment > h3 {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 35px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
            position: relative;
        }

        .postbox__comment > h3::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--theme-color1);
        }

        .postbox__comment ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .postbox__comment ul li {
            margin-bottom: 30px;
        }

        .postbox__comment-box {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 16px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .postbox__comment-box:hover {
            background: #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border-color: rgba(26, 21, 82, 0.2);
        }

        .postbox__comment-avater {
            flex-shrink: 0;
            width: 70px;
            height: 70px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .postbox__comment-avater img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .postbox__comment-name {
            flex: 1;
            padding-left: 20px;
        }

        .postbox__comment-name h5 {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .postbox__comment-text p {
            color: #666;
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .postbox__comment-reply a {
            color: var(--theme-color1);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
        }

        .postbox__comment-reply a:hover {
            color: rgba(26, 21, 82, 0.8);
            transform: translateX(5px);
        }

        .postbox__comment ul li.children {
            margin-left: 50px;
        }

        /* Comment Form */
        .postbox__comment-form-box {
            background: #ffffff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .postbox__comment-form-title {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
            position: relative;
        }

        .postbox__comment-form-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--theme-color1);
        }

        .tp-form-input-box input,
        .tp-form-textarea-box textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #f0f0f0;
            border-radius: 12px;
            font-size: 15px;
            color: #1a1a1a;
            background: #ffffff;
            transition: all 0.3s ease;
        }

        .tp-form-input-box input:focus,
        .tp-form-textarea-box textarea:focus {
            outline: none;
            border-color: #E6E6E6;
            box-shadow: none;
        }

        .tp-form-textarea-box textarea {
            min-height: 150px;
            resize: vertical;
        }

        .tp-btn-theme {
            padding: 16px 40px;
            background: var(--theme-color1);
            color: #ffffff;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(26, 21, 82, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .tp-btn-theme span {
            text-align: center;
        }

        .tp-btn-theme:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(26, 21, 82, 0.4);
            background: rgba(26, 21, 82, 0.9);
        }

        /* Sidebar Enhancements */
        .sidebar__wrapper {
            position: sticky;
            top: 100px;
        }

        .sidebar__widget {
            background: #ffffff;
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            border: 1px solid #f0f1f2;
            transition: all 0.3s ease;
            margin-bottom: 30px;
            position: relative;
        }

        .sidebar__widget:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .sidebar__widget-title {
            font-size: 20px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 22px;
            padding-bottom: 14px;
            border-bottom: 1px solid #f0f1f2;
            position: relative;
            letter-spacing: -0.3px;
            line-height: 1.3;
        }

        .sidebar__widget-title::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 45px;
            height: 2px;
            background: var(--theme-color1);
            border-radius: 2px;
        }

        /* Search Widget */
        .sidebar__widget-theme-bg {
            background: var(--theme-color1);
            border: none;
        }

        .sidebar__search-input-2 {
            position: relative;
            display: flex;
            align-items: center;
        }

        .sidebar__search-input-2 input {
            width: 100%;
            padding: 16px 50px 16px 20px;
            border: none;
            border-radius: 12px;
            background: #ffffff;
            font-size: 15px;
            color: #1a1a1a;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .sidebar__search-input-2 input:focus {
            outline: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            transform: translateY(-2px);
        }

        .sidebar__search-input-2 button {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border: none;
            border-radius: 10px;
            background: var(--theme-color1);
            color: #ffffff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(26, 21, 82, 0.3);
        }

        .sidebar__search-input-2 button:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 4px 15px rgba(26, 21, 82, 0.4);
            background: rgba(26, 21, 82, 0.9);
        }

        /* Latest Posts */
        .rc__post {
            padding: 20px;
            border-radius: 12px;
            background: #f8f9fa;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            margin-bottom: 20px;
        }

        .rc__post:last-child {
            margin-bottom: 0;
        }

        .rc__post:hover {
            background: #ffffff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border-color: rgba(26, 21, 82, 0.2);
            transform: translateX(5px);
        }

        .rc__post-thumb {
            flex-shrink: 0;
            width: 90px;
            height: 90px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .rc__post-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .rc__post:hover .rc__post-thumb img {
            transform: scale(1.1);
        }

        .rc__post-content {
            flex: 1;
            padding-left: 15px;
        }

        .rc__meta {
            margin-bottom: 8px;
        }

        .rc__meta span {
            color: #999;
            font-size: 12px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
        }

        .rc__meta i {
            color: var(--theme-color1);
            font-size: 11px;
        }

        .rc__post-title {
            margin: 0;
        }

        .rc__post-title a {
            color: #1a1a1a;
            font-size: 15px;
            font-weight: 600;
            line-height: 1.4;
            transition: color 0.3s ease;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .rc__post-title a:hover {
            color: var(--theme-color1);
        }

        /* Categories - Redesigned with Blue Theme - Override any green colors */
        .sidebar__widget-content ul,
        .sidebar__widget .sidebar__widget-content ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .sidebar__widget-content ul li {
            margin: 0;
            padding: 0;
            position: relative;
        }

        .sidebar__widget-content ul li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            min-height: 56px;
            padding: 16px 20px;
            background: #ffffff !important;
            border-radius: 14px;
            color: #2c3e50 !important;
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 2px solid #e8e9ea !important;
            box-sizing: border-box;
            position: relative;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
        }

        .sidebar__widget-content ul li a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--theme-color1);
            border-radius: 14px 0 0 14px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .sidebar__widget-content ul li a span {
            color: #7a7a7a;
            font-size: 14px;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            flex-shrink: 0;
            margin-left: 12px;
        }

        .sidebar__widget-content ul li a span i {
            transition: transform 0.4s ease;
            font-size: 12px;
            width: 12px;
            height: 12px;
        }

        /* Normal State - Clean white background with subtle border */
        .sidebar__widget-content ul li:not(.active) a {
            background: #ffffff !important;
            color: #2c3e50 !important;
            border-color: #e8e9ea !important;
        }

        .sidebar__widget-content ul li:not(.active) a span {
            color: #7a7a7a !important;
        }

        /* Hover State - No background overlay, just color change */
        .sidebar__widget-content ul li:not(.active) a:hover {
            background: #ffffff !important;
            color: var(--theme-color1) !important;
            border-color: rgba(26, 21, 82, 0.25) !important;
            box-shadow: 0 2px 8px rgba(26, 21, 82, 0.1) !important;
            transform: translateX(5px);
        }

        .sidebar__widget-content ul li:not(.active) a:hover::before {
            opacity: 1;
        }

        .sidebar__widget-content ul li:not(.active) a:hover span {
            color: var(--theme-color1);
        }

        .sidebar__widget-content ul li:not(.active) a:hover span i {
            transform: translateX(5px);
            color: var(--theme-color1) !important;
        }

        /* Override any green/olive colors from main.css */
        .sidebar__widget-content ul li:hover,
        .sidebar__widget .sidebar__widget-content ul li:hover {
            background-color: transparent !important;
        }

        .sidebar__widget-content ul li:hover a,
        .sidebar__widget .sidebar__widget-content ul li:hover a {
            background: #ffffff !important;
            color: var(--theme-color1) !important;
        }

        /* Active State - Blue background with gradient */
        .sidebar__widget-content ul li.active a {
            background: linear-gradient(135deg, var(--theme-color1) 0%, rgba(26, 21, 82, 0.95) 100%) !important;
            color: #ffffff !important;
            border-color: var(--theme-color1) !important;
            box-shadow: 0 4px 16px rgba(26, 21, 82, 0.3) !important;
            font-weight: 600;
            transform: translateX(0);
        }

        .sidebar__widget-content ul li.active a::before {
            opacity: 1;
            background: rgba(255, 255, 255, 0.3) !important;
        }

        .sidebar__widget-content ul li.active a span {
            color: #ffffff !important;
        }

        .sidebar__widget-content ul li.active a span i {
            transform: translateX(5px);
            color: #ffffff !important;
        }

        /* Tags */
        .tagcloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tagcloud a {
            display: inline-block;
            padding: 10px 18px;
            background: #f8f9fa;
            border-radius: 25px;
            color: #666;
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .tagcloud a:hover {
            background: var(--theme-color1);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(26, 21, 82, 0.3);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .postbox__item {
                padding: 30px;
            }

            .sidebar__wrapper {
                position: static;
                margin-top: 40px;
            }

            .postbox__author {
                flex-direction: column;
                text-align: center;
            }

            .postbox__author-thumb {
                margin-right: 0;
                margin-bottom: 20px;
            }

            .postbox__comment ul li.children {
                margin-left: 30px;
            }
        }

        @media (max-width: 767px) {
            .postbox__item {
                padding: 25px;
            }

            .postbox__title {
                font-size: 28px;
            }

            .postbox__blockquote blockquote p {
                font-size: 20px;
            }

            .postbox__details-share-wrapper {
                flex-direction: column;
                gap: 20px;
            }

            .postbox__comment-box {
                padding: 20px;
            }

            .postbox__comment-avater {
                width: 60px;
                height: 60px;
            }

            .postbox__comment ul li.children {
                margin-left: 20px;
            }
        }


/* ==============================
   contact.html - Extracted Internal CSS
   ============================== */

/* Contact Page Redesign with Blue Theme */
        
        /* Form Area Enhancement */
        .tp-form-area {
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
            position: relative;
            overflow: hidden;
        }

        .tp-form-area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(26, 21, 82, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(26, 21, 82, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .tp-form-area > .container {
            position: relative;
            z-index: 1;
        }

        .tp-form-top {
            position: relative;
        }

        /* Form Box Styling */
        .tp-form-box {
            background: #ffffff;
            border-radius: 24px;
            padding: 60px 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 2px solid rgba(26, 21, 82, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .tp-form-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--theme-color1) 0%, rgba(26, 21, 82, 0.6) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s ease;
            z-index: 1;
        }

        .tp-form-box:hover::before {
            transform: scaleX(1);
        }

        .tp-form-box:hover {
            box-shadow: 0 15px 50px rgba(26, 21, 82, 0.15);
            border-color: rgba(26, 21, 82, 0.2);
            transform: translateY(-5px);
        }

        .tp-form-box h4 {
            font-size: 36px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 0;
            position: relative;
            padding-bottom: 25px;
            letter-spacing: -0.5px;
        }

        .tp-form-box h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--theme-color1) 0%, rgba(26, 21, 82, 0.6) 100%);
            border-radius: 2px;
        }

        /* Form Input Styling */
        .tp-form-input-box {
            position: relative;
        }

        .tp-form-input-box input {
            width: 100%;
            padding: 18px 22px;
            border: 2px solid #e8e9ea;
            border-radius: 14px;
            font-size: 15px;
            color: #1a1a1a;
            background: #ffffff;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            font-family: inherit;
        }

        .tp-form-input-box input:focus {
            outline: none;
            border-color: #E6E6E6;
            box-shadow: none;
            background: #ffffff;
            transform: none;
        }

        .tp-form-input-box input::placeholder {
            color: #999;
            font-weight: 400;
        }

        /* Textarea Styling */
        .tp-form-textarea-box {
            position: relative;
        }

        .tp-form-textarea-box textarea {
            width: 100%;
            min-height: 160px;
            padding: 18px 22px;
            border: 2px solid #e8e9ea;
            border-radius: 14px;
            font-size: 15px;
            color: #1a1a1a;
            background: #ffffff;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            resize: vertical;
            font-family: inherit;
        }

        .tp-form-textarea-box textarea:focus {
            outline: none;
            border-color: var(--theme-color1);
            box-shadow: 0 0 0 4px rgba(26, 21, 82, 0.1);
            background: #ffffff;
            transform: translateY(-2px);
        }

        .tp-form-textarea-box textarea::placeholder {
            color: #999;
            font-weight: 400;
        }

        /* Submit Button */
        .tp-btn-theme {
            padding: 18px 45px;
            background: var(--theme-color1);
            color: #ffffff;
            border: none;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 8px 25px rgba(26, 21, 82, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin-top: 15px;
            position: relative;
            overflow: hidden;
        }

        .tp-btn-theme::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
            transition: left 0.6s ease;
        }

        .tp-btn-theme:hover::before {
            left: 100%;
        }

        .tp-btn-theme:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(26, 21, 82, 0.4);
            background: #0f0d3a;
        }

        .tp-btn-theme.black-bg {
            background: var(--theme-color1);
            box-shadow: 0 8px 25px rgba(26, 21, 82, 0.3);
        }

        .tp-btn-theme.black-bg:hover {
            background: #0f0d3a;
            box-shadow: 0 12px 35px rgba(26, 21, 82, 0.4);
        }

        .tp-btn-theme span {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        /* Contact Box Styling */
        .tp-contact-box {
            background: #ffffff;
            border-radius: 24px;
            padding: 40px 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 2px solid rgba(26, 21, 82, 0.08);
            height: 100%;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .tp-contact-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--theme-color1) 0%, rgba(26, 21, 82, 0.6) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s ease;
            z-index: 1;
        }

        .tp-contact-box:hover::before {
            transform: scaleX(1);
        }

        .tp-contact-box:hover {
            box-shadow: 0 15px 50px rgba(26, 21, 82, 0.15);
            border-color: rgba(26, 21, 82, 0.2);
            transform: translateY(-5px);
        }

        .tp-contact-box h4 {
            font-size: 36px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 18px;
            letter-spacing: -0.5px;
        }

        .tp-contact-box h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--theme-color1) 0%, rgba(26, 21, 82, 0.6) 100%);
            border-radius: 2px;
        }

        .tp-contact-box > p {
            color: #666;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 25px;
            letter-spacing: -0.2px;
        }

        .tp-contact-box ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .tp-contact-box ul li {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.4s ease;
        }

        .tp-contact-box ul li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .tp-contact-box ul li:hover {
            padding-left: 8px;
        }

        /* Contact Item Styling */
        .tp-contact-item {
            gap: 22px;
            align-items: flex-start;
        }

        .tp-contact-icon-2 {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            min-width: 60px;
            border-radius: 0;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: none;
            border: none;
            position: relative;
            text-align: center;
        }

        .tp-contact-item {
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .tp-contact-item:hover {
            transform: translateX(3px);
        }

        .tp-contact-item:hover .tp-contact-icon-2 {
            transform: none;
            box-shadow: none;
            border-color: transparent;
            background: transparent;
        }

        .tp-contact-icon-2 span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            position: relative;
            z-index: 1;
            margin: 0;
            padding: 0;
            border-radius: 0;
            background-color: transparent;
        }

        .tp-contact-icon-2 svg {
            width: 24px;
            height: 24px;
            color: #1a1552;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: block;
            margin: 0;
            padding: 0;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .tp-contact-item:hover .tp-contact-icon-2 svg {
            transform: translate(-50%, -50%) scale(1.1);
            color: #1a1552;
            filter: none;
        }

        .tp-contact-content {
            flex: 1;
            padding-top: 4px;
        }

        .tp-contact-content h6 {
            font-size: 12px;
            font-weight: 700;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 8px;
        }

        .tp-contact-content a {
            color: #1a1a1a;
            font-size: 12px;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            line-height: 1.7;
            word-break: break-word;
        }

        .tp-contact-content a:hover {
            color: var(--theme-color1);
        }

        /* Map Box Styling */
        .tp-map-box {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 2px solid rgba(26, 21, 82, 0.08);
            margin-top: 60px;
            transition: all 0.4s ease;
        }

        .tp-map-box:hover {
            box-shadow: 0 15px 50px rgba(26, 21, 82, 0.15);
            transform: translateY(-3px);
        }

        .tp-map-box iframe {
            width: 100%;
            height: 500px;
            border: none;
            display: block;
        }

        /* Responsive Design */
        @media (max-width: 1199px) {
            .tp-form-box {
                padding: 50px 40px;
            }

            .tp-contact-box {
                padding: 35px 40px;
            }
        }

        @media (max-width: 991px) {
            .tp-form-box {
                padding: 45px 35px;
            }

            .tp-contact-box {
                padding: 32px 35px;
            }

            .tp-form-box h4,
            .tp-contact-box h4 {
                font-size: 30px;
            }

            .tp-map-box iframe {
                height: 400px;
            }

            .tp-contact-icon-2 {
                width: 65px;
                height: 65px;
                min-width: 65px;
            }
        }

        @media (max-width: 767px) {
            .tp-form-box,
            .tp-contact-box {
                padding: 35px 28px;
                border-radius: 20px;
            }

            .tp-form-box h4,
            .tp-contact-box h4 {
                font-size: 26px;
                padding-bottom: 20px;
            }

            .tp-form-box h4::after,
            .tp-contact-box h4::after {
                width: 60px;
                height: 3px;
            }

            .tp-form-input-box input,
            .tp-form-textarea-box textarea {
                padding: 16px 20px;
                border-radius: 12px;
            }

            .tp-btn-theme {
                padding: 16px 40px;
                font-size: 15px;
            }

            .tp-map-box {
                border-radius: 20px;
                margin-top: 40px;
            }

            .tp-map-box iframe {
                height: 350px;
            }

            .tp-contact-icon-2 {
                width: 60px;
                height: 60px;
                min-width: 60px;
            }

            .tp-contact-icon-2 svg {
                width: 24px;
                height: 24px;
            }

            .tp-contact-content h6 {
                font-size: 11px;
            }

            .tp-contact-content a {
                font-size: 16px;
				white-space:normal;
				word-break:break-all;
				
            }
        }

        @media (max-width: 575px) {
            .tp-form-box,
            .tp-contact-box {
                padding: 30px 22px;
            }

            .tp-form-box h4,
            .tp-contact-box h4 {
                font-size: 24px;
            }

            .tp-map-box iframe {
                height: 300px;
            }
        }


/* ==============================
   services.html - Extracted Internal CSS
   ============================== */

/* Interior Renovation Section - Premium Redesign */
        
        .interior-renovation-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 140px 0;
            position: relative;
            overflow: hidden;
        }

        .interior-renovation-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .interior-renovation-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(201, 150, 102, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Image Wrapper */
        .interior-image-wrapper {
            position: relative;
            height: 100%;
            padding-right: 30px;
        }

        .interior-image {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background: #ffffff;
            padding: 8px;
        }

        .interior-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(201, 150, 102, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
            border-radius: 20px;
        }

        .interior-image:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
        }

        .interior-image:hover::before {
            opacity: 1;
        }

        .interior-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 0;
        }

        .interior-image:hover img {
            transform: scale(1.08);
        }

        .image-overlay {
            position: absolute;
            top: 8px;
            left: 8px;
            right: 8px;
            bottom: 8px;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
            pointer-events: none;
            border-radius: 20px;
            z-index: 2;
        }

        /* Content Section */
        .interior-content {
            padding-left: 60px;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Title */
        .interior-title {
            font-size: 48px;
            font-weight: 800;
            color: #1a1a1a;
            line-height: 1.2;
            margin-bottom: 30px;
            letter-spacing: -0.8px;
            position: relative;
        }

        .interior-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 4px;
            background: #1a1552;
            border-radius: 2px;
        }

        /* Text */
        .interior-text {
            font-size: 17px;
            color: #555;
            line-height: 1.9;
            margin-bottom: 22px;
            font-weight: 400;
        }

        .interior-text-secondary {
            font-size: 17px;
            color: #555;
            line-height: 1.9;
            margin-bottom: 45px;
            font-weight: 400;
        }

        /* Features List */
        .interior-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 50px;
        }

        .interior-feature-item {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 20px 24px;
            background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .interior-feature-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: #1a1552;
            transform: scaleY(0);
            transition: transform 0.4s ease;
        }

        .interior-feature-item:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 30px rgba(26, 21, 82, 0.2);
            border-color: rgba(26, 21, 82, 0.3);
            background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
        }

        .interior-feature-item:hover::before {
            transform: scaleY(1);
        }

        .interior-feature-item i {
            font-size: 22px;
            color: #ffffff;
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #1a1552;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(26, 21, 82, 0.3);
            transition: all 0.3s ease;
        }

        .interior-feature-item:hover i {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 6px 20px rgba(26, 21, 82, 0.4);
        }

        .interior-feature-item span {
            font-size: 17px;
            font-weight: 600;
            color: #1a1a1a;
            letter-spacing: -0.2px;
        }

        /* CTA Button */
        .interior-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            padding: 20px 45px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 14px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 6px 25px rgba(26, 26, 26, 0.35);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            max-width: fit-content;
        }

        .interior-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .interior-cta-button:hover::before {
            left: 100%;
        }

        .interior-cta-button:hover {
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
            color: #ffffff;
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(26, 26, 26, 0.5);
        }

        .interior-cta-button i {
            font-size: 16px;
            transition: transform 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .interior-cta-button:hover i {
            transform: translateX(6px);
        }

        .interior-cta-button span {
            position: relative;
            z-index: 1;
        }

        /* Responsive Design */
        @media (max-width: 1199px) {
            .interior-content {
                padding-left: 40px;
            }

            .interior-title {
                font-size: 42px;
            }

            .interior-image-wrapper {
                padding-right: 20px;
            }
        }

        @media (max-width: 991px) {
            .interior-renovation-section {
                padding: 100px 0;
            }

            .interior-content {
                padding-left: 0;
                padding-top: 50px;
            }

            .interior-title {
                font-size: 38px;
            }

            .interior-image-wrapper {
                padding-right: 0;
            }

            .interior-image {
                margin-bottom: 0;
            }
        }

        @media (max-width: 767px) {
            .interior-renovation-section {
                padding: 80px 0;
            }

            .interior-title {
                font-size: 32px;
            }

            .interior-title::after {
                width: 60px;
                height: 3px;
            }

            .interior-text,
            .interior-text-secondary {
                font-size: 16px;
            }

            .interior-feature-item {
                padding: 18px 20px;
                gap: 16px;
            }

            .interior-feature-item i {
                width: 32px;
                height: 32px;
                font-size: 20px;
            }

            .interior-feature-item span {
                font-size: 16px;
            }

            .interior-cta-button {
                padding: 18px 40px;
                font-size: 15px;
                width: 100%;
                justify-content: center;
            }
        }


/* ==============================
   faq.html - Extracted Internal CSS
   ============================== */

/* FAQ Section Redesign */
        
        .modern-faq-section {
            background: #f8f9fa;
            position: relative;
        }

        /* FAQ Header */
        .faq-header {
            margin-bottom: 60px;
        }

        .faq-main-title {
            font-size: 42px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .faq-subtitle {
            font-size: 18px;
            color: #666;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Accordion Container */
        .modern-accordion {
            height: 100%;
        }

        /* Accordion Item */
        .modern-accordion-item {
            margin-bottom: 20px;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            border: 1px solid #f0f0f0;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modern-accordion-item:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        /* Accordion Button */
        .modern-accordion-button {
            width: 100%;
            padding: 24px 28px;
            background: #ffffff;
            border: none;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .modern-accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(201, 150, 102, 0.05) 100%);
            border-bottom: 1px solid rgba(212, 165, 116, 0.1);
        }

        .modern-accordion-button:focus {
            box-shadow: none;
            outline: none;
        }

        .modern-accordion-button::after {
            display: none;
        }

        /* FAQ Number */
        .faq-number {
            font-size: 18px;
            font-weight: 700;
            color: #d4a574;
            min-width: 30px;
            flex-shrink: 0;
        }

        /* FAQ Question */
        .faq-question {
            font-size: 17px;
            font-weight: 600;
            color: #1a1a1a;
            flex: 1;
            line-height: 1.5;
        }

        .modern-accordion-button:not(.collapsed) .faq-question {
            color: #d4a574;
        }

        /* Accordion Icon */
        .accordion-icon {
            font-size: 16px;
            color: #999;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .modern-accordion-button:not(.collapsed) .accordion-icon {
            background: linear-gradient(135deg, #d4a574 0%, #c99666 100%);
            color: #ffffff;
            transform: rotate(180deg);
        }

        .modern-accordion-button .accordion-icon.fa-plus {
            transition: transform 0.3s ease;
        }

        .modern-accordion-button:not(.collapsed) .accordion-icon.fa-plus {
            transform: rotate(90deg);
        }

        /* Accordion Body */
        .modern-accordion-body {
            padding: 0 28px 24px 74px;
            color: #666;
            font-size: 15px;
            line-height: 1.8;
            background: #ffffff;
            border-radius: 0 0 16px 16px;
        }

        /* Active State Enhancement */
        .modern-accordion-item:has(.modern-accordion-button:not(.collapsed)) {
            border-color: rgba(212, 165, 116, 0.3);
            box-shadow: 0 4px 20px rgba(212, 165, 116, 0.15);
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .faq-main-title {
                font-size: 36px;
            }

            .faq-subtitle {
                font-size: 16px;
            }

            .modern-accordion-button {
                padding: 20px 24px;
            }

            .faq-question {
                font-size: 16px;
            }

            .modern-accordion-body {
                padding: 0 24px 20px 70px;
            }
        }

        @media (max-width: 767px) {
            .faq-main-title {
                font-size: 28px;
            }

            .faq-subtitle {
                font-size: 15px;
            }

            .modern-accordion-button {
                padding: 18px 20px;
                gap: 12px;
            }

            .faq-number {
                font-size: 16px;
                min-width: 25px;
            }

            .faq-question {
                font-size: 15px;
            }

            .accordion-icon {
                width: 28px;
                height: 28px;
                font-size: 14px;
            }

            .modern-accordion-body {
                padding: 0 20px 18px 57px;
                font-size: 14px;
            }
        }


/* ==============================
   space-planning-solutions.html - Extracted Internal CSS
   ============================== */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2c3e50;
            --secondary-color: #1a1552;
            --accent-color: #1a2332;
            --text-dark: #1a1a1a;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --theme-color1: #1a1552;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:hover {
            color: var(--secondary-color);
        }

        .phone-btn {
            padding: 0.7rem 1.5rem;
            background: var(--secondary-color);
            color: var(--white);
            border-radius: 50px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .phone-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(26, 21, 82, 0.3);
        }

        /* Hero Section */
        .hero {
            margin-top: 0;
            min-height: 600px;
            position: relative;
            display: flex;
            align-items: center;
            background: #1A1552;
            overflow: hidden;
            padding: 120px 0 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text {
            padding-right: 40px;
        }

        .hero-text h1 {
            font-size: 64px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }

        .hero-text .subtitle {
            font-size: 18px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 0;
            line-height: 1.7;
            font-weight: 400;
        }

        .breadcrumb {
            display: flex;
            gap: 8px;
            align-items: center;
            color: rgba(255,255,255,0.7);
            margin-bottom: 32px;
            font-size: 14px;
            font-weight: 400;
        }

        .breadcrumb a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: #ffffff;
        }

        .breadcrumb i {
            font-size: 12px;
            margin: 0 4px;
            opacity: 0.6;
        }

        .breadcrumb span {
            color: rgba(255,255,255,0.7);
        }

        .hero-image {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Overview Section */
        .overview {
            padding: 120px 2rem;
            background: var(--white);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(26, 21, 82, 0.1);
            color: var(--secondary-color);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .overview-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: start;
        }

        .overview-content p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .quick-facts {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.05);
            position: sticky;
            top: 100px;
        }

        .quick-facts h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--primary-color);
        }

        .fact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .fact-item:last-child {
            border-bottom: none;
        }

        .fact-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .fact-text {
            font-weight: 500;
            color: var(--text-dark);
            font-size: 1.05rem;
        }

        /* Benefits Section */
        .benefits {
            padding: 120px 2rem;
            background: var(--bg-light);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 60px;
        }

        .benefit-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border-color: var(--secondary-color);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, #2a1f72 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 2rem;
        }

        .benefit-card h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .benefit-card p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Features Section */
        .features {
            padding: 120px 2rem;
            background: var(--white);
        }

        .feature-showcase {
            margin-top: 60px;
        }

        .feature-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        .feature-item:nth-child(even) .feature-img {
            order: 2;
        }

        .feature-img {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .feature-item:hover .feature-img img {
            transform: scale(1.05);
        }

        .feature-content h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .feature-content p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .feature-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem;
            background: var(--bg-light);
            border-radius: 10px;
        }

        .highlight-item i {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }

        /* Testimonial Section */
        .testimonial {
            padding: 120px 2rem;
            background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonial::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(26, 21, 82, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .testimonial-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .quote-icon {
            font-size: 4rem;
            color: var(--secondary-color);
            opacity: 0.3;
            margin-bottom: 2rem;
        }

        .testimonial-text {
            font-size: 1.8rem;
            line-height: 1.8;
            color: var(--white);
            margin-bottom: 3rem;
            font-style: italic;
        }

        .testimonial-author {
            display: inline-block;
            padding-top: 2rem;
            border-top: 2px solid rgba(255,255,255,0.2);
        }

        .author-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .author-role {
            color: rgba(255,255,255,0.7);
            font-size: 1rem;
        }

        /* CTA Section */
        .cta {
            padding: 120px 2rem;
            background: var(--white);
            text-align: center;
        }

        .cta h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .cta p {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 3rem;
            background: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(26, 21, 82, 0.3);
        }

        /* Footer */
        footer {
            background: var(--accent-color);
            color: rgba(255,255,255,0.8);
            padding: 80px 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand h3 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-links h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        .service-breadcrumb {
            padding: 20px 0;
            background: var(--tp-common-white);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .breadcrumb-content {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
        }

        .breadcrumb-content span a {
            color: var(--tp-text-body);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-content span a:hover {
            color: var(--tp-theme-1);
        }

        .breadcrumb-content span:not(.dvdr) {
            color: var(--tp-text-body);
        }

        .breadcrumb-content .dvdr {
            color: rgba(0, 0, 0, 0.3);
            font-size: 12px;
        }

        .breadcrumb-content span:last-child {
            color: var(--tp-common-black);
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero {
                padding: 100px 0 60px;
                min-height: 500px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 0 30px;
            }

            .hero-text {
                padding-right: 0;
                text-align: left;
            }

            .hero-text h1 {
                font-size: 48px;
            }

            .hero-image {
                height: 400px;
            }

            .overview-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .feature-item {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 80px 0 50px;
                min-height: auto;
            }

            .hero-content {
                padding: 0 20px;
                gap: 30px;
            }

            .hero-text h1 {
                font-size: 36px;
                line-height: 1.2;
            }

            .hero-text .subtitle {
                font-size: 16px;
            }

            .breadcrumb {
                font-size: 13px;
                margin-bottom: 24px;
            }

            .hero-image {
                height: 300px;
                border-radius: 16px;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 2rem;
            }
        }


/* ==============================
   art-and-decor-curation.html - Extracted Internal CSS
   ============================== */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2c3e50;
            --secondary-color: #1a1552;
            --theme-color1: #1a1552;
            --accent-color: #1a2332;
            --text-dark: #1a1a1a;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:hover {
            color: var(--secondary-color);
        }

        .phone-btn {
            padding: 0.7rem 1.5rem;
            background: var(--secondary-color);
            color: var(--white);
            border-radius: 50px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .phone-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(26, 21, 82, 0.3);
        }

        /* Hero Section */
        .hero {
            margin-top: 0;
            min-height: 600px;
            position: relative;
            display: flex;
            align-items: center;
            background: #1A1552;
            overflow: hidden;
            padding: 120px 0 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text {
            padding-right: 40px;
        }

        .hero-text h1 {
            font-size: 64px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }

        .hero-text .subtitle {
            font-size: 18px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 0;
            line-height: 1.7;
            font-weight: 400;
        }

        .breadcrumb {
            display: flex;
            gap: 8px;
            align-items: center;
            color: rgba(255,255,255,0.7);
            margin-bottom: 32px;
            font-size: 14px;
            font-weight: 400;
        }

        .breadcrumb a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: #ffffff;
        }

        .breadcrumb i {
            font-size: 12px;
            margin: 0 4px;
            opacity: 0.6;
        }

        .breadcrumb span {
            color: rgba(255,255,255,0.7);
        }

        .hero-image {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Overview Section */
        .overview {
            padding: 120px 2rem;
            background: var(--white);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(26, 21, 82, 0.1);
            color: var(--secondary-color);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .overview-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: start;
        }

        .overview-content p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .quick-facts {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.05);
            position: sticky;
            top: 100px;
        }

        .quick-facts h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--primary-color);
        }

        .fact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .fact-item:last-child {
            border-bottom: none;
        }

        .fact-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .fact-text {
            font-weight: 500;
            color: var(--text-dark);
            font-size: 1.05rem;
        }

        /* Benefits Section */
        .benefits {
            padding: 120px 2rem;
            background: var(--bg-light);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 60px;
        }

        .benefit-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border-color: var(--secondary-color);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, #2a1f72 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 2rem;
        }

        .benefit-card h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .benefit-card p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Features Section */
        .features {
            padding: 120px 2rem;
            background: var(--white);
        }

        .feature-showcase {
            margin-top: 60px;
        }

        .feature-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        .feature-item:nth-child(even) .feature-img {
            order: 2;
        }

        .feature-img {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .feature-item:hover .feature-img img {
            transform: scale(1.05);
        }

        .feature-content h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .feature-content p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .feature-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem;
            background: var(--bg-light);
            border-radius: 10px;
        }

        .highlight-item i {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }

        /* Testimonial Section */
        .testimonial {
            padding: 120px 2rem;
            background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonial::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(26, 21, 82, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .testimonial-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .quote-icon {
            font-size: 4rem;
            color: var(--secondary-color);
            opacity: 0.3;
            margin-bottom: 2rem;
        }

        .testimonial-text {
            font-size: 1.8rem;
            line-height: 1.8;
            color: var(--white);
            margin-bottom: 3rem;
            font-style: italic;
        }

        .testimonial-author {
            display: inline-block;
            padding-top: 2rem;
            border-top: 2px solid rgba(255,255,255,0.2);
        }

        .author-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .author-role {
            color: rgba(255,255,255,0.7);
            font-size: 1rem;
        }

        /* CTA Section */
        .cta {
            padding: 120px 2rem;
            background: var(--white);
            text-align: center;
        }

        .cta h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .cta p {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 3rem;
            background: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(26, 21, 82, 0.3);
        }

        /* Footer */
        footer {
            background: var(--accent-color);
            color: rgba(255,255,255,0.8);
            padding: 80px 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand h3 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-links h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }


        .service-breadcrumb {
  padding: 20px 0;
  background: var(--tp-common-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.breadcrumb-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.breadcrumb-content span a {
  color: var(--tp-text-body);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-content span a:hover {
  color: var(--tp-theme-1);
}

.breadcrumb-content span:not(.dvdr) {
  color: var(--tp-text-body);
}

.breadcrumb-content .dvdr {
  color: rgba(0, 0, 0, 0.3);
  font-size: 12px;
}

.breadcrumb-content span:last-child {
  color: var(--tp-common-black);
  font-weight: 500;
}

        /* Responsive */
        @media (max-width: 1024px) {
            .hero {
                padding: 100px 0 60px;
                min-height: 500px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 0 30px;
            }

            .hero-text {
                padding-right: 0;
                text-align: left;
            }

            .hero-text h1 {
                font-size: 48px;
            }

            .hero-image {
                height: 400px;
            }

            .overview-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .feature-item {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 80px 0 50px;
                min-height: auto;
            }

            .hero-content {
                padding: 0 20px;
                gap: 30px;
            }

            .hero-text h1 {
                font-size: 36px;
                line-height: 1.2;
            }

            .hero-text .subtitle {
                font-size: 16px;
            }

            .breadcrumb {
                font-size: 13px;
                margin-bottom: 24px;
            }

            .hero-image {
                height: 300px;
                border-radius: 16px;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 2rem;
            }
        }


/* ==============================
   luxury-interior-design.html - Extracted Internal CSS
   ============================== */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2c3e50;
            --secondary-color: #1a1552;
            --theme-color1: #1a1552;
            --accent-color: #1a2332;
            --text-dark: #1a1a1a;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:hover {
            color: var(--secondary-color);
        }

        .phone-btn {
            padding: 0.7rem 1.5rem;
            background: var(--secondary-color);
            color: var(--white);
            border-radius: 50px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .phone-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(26, 21, 82, 0.3);
        }

        /* Hero Section */
        .hero {
            margin-top: 0;
            min-height: 600px;
            position: relative;
            display: flex;
            align-items: center;
            background: #1A1552;
            overflow: hidden;
            padding: 120px 0 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text {
            padding-right: 40px;
        }

        .hero-text h1 {
            font-size: 64px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }

        .hero-text .subtitle {
            font-size: 18px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 0;
            line-height: 1.7;
            font-weight: 400;
        }

        .breadcrumb {
            display: flex;
            gap: 8px;
            align-items: center;
            color: rgba(255,255,255,0.7);
            margin-bottom: 32px;
            font-size: 14px;
            font-weight: 400;
        }

        .breadcrumb a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: #ffffff;
        }

        .breadcrumb i {
            font-size: 12px;
            margin: 0 4px;
            opacity: 0.6;
        }

        .breadcrumb span {
            color: rgba(255,255,255,0.7);
        }

        .hero-image {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Overview Section */
        .overview {
            padding: 120px 2rem;
            background: var(--white);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(26, 21, 82, 0.1);
            color: var(--secondary-color);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .overview-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: start;
        }

        .overview-content p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .quick-facts {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.05);
            position: sticky;
            top: 100px;
        }

        .quick-facts h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--primary-color);
        }

        .fact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .fact-item:last-child {
            border-bottom: none;
        }

        .fact-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .fact-text {
            font-weight: 500;
            color: var(--text-dark);
            font-size: 1.05rem;
        }

        /* Benefits Section */
        .benefits {
            padding: 120px 2rem;
            background: var(--bg-light);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 60px;
        }

        .benefit-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border-color: var(--secondary-color);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, #2a1f72 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 2rem;
        }

        .benefit-card h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .benefit-card p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Features Section */
        .features {
            padding: 120px 2rem;
            background: var(--white);
        }

        .feature-showcase {
            margin-top: 60px;
        }

        .feature-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        .feature-item:nth-child(even) .feature-img {
            order: 2;
        }

        .feature-img {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .feature-item:hover .feature-img img {
            transform: scale(1.05);
        }

        .feature-content h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .feature-content p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .feature-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem;
            background: var(--bg-light);
            border-radius: 10px;
        }

        .highlight-item i {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }

        /* Testimonial Section */
        .testimonial {
            padding: 120px 2rem;
            background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonial::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(26, 21, 82, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .testimonial-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .quote-icon {
            font-size: 4rem;
            color: var(--secondary-color);
            opacity: 0.3;
            margin-bottom: 2rem;
        }

        .testimonial-text {
            font-size: 1.8rem;
            line-height: 1.8;
            color: var(--white);
            margin-bottom: 3rem;
            font-style: italic;
        }

        .testimonial-author {
            display: inline-block;
            padding-top: 2rem;
            border-top: 2px solid rgba(255,255,255,0.2);
        }

        .author-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .author-role {
            color: rgba(255,255,255,0.7);
            font-size: 1rem;
        }

        /* CTA Section */
        .cta {
            padding: 120px 2rem;
            background: var(--white);
            text-align: center;
        }

        .cta h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .cta p {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 3rem;
            background: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(26, 21, 82, 0.3);
        }

        /* Footer */
        footer {
            background: var(--accent-color);
            color: rgba(255,255,255,0.8);
            padding: 80px 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand h3 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-links h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        .service-breadcrumb {
            padding: 20px 0;
            background: var(--tp-common-white);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .breadcrumb-content {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
        }

        .breadcrumb-content span a {
            color: var(--tp-text-body);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-content span a:hover {
            color: var(--tp-theme-1);
        }

        .breadcrumb-content span:not(.dvdr) {
            color: var(--tp-text-body);
        }

        .breadcrumb-content .dvdr {
            color: rgba(0, 0, 0, 0.3);
            font-size: 12px;
        }

        .breadcrumb-content span:last-child {
            color: var(--tp-common-black);
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero {
                padding: 100px 0 60px;
                min-height: 500px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 0 30px;
            }

            .hero-text {
                padding-right: 0;
                text-align: left;
            }

            .hero-text h1 {
                font-size: 48px;
            }

            .hero-image {
                height: 400px;
            }

            .overview-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .feature-item {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 80px 0 50px;
                min-height: auto;
            }

            .hero-content {
                padding: 0 20px;
                gap: 30px;
            }

            .hero-text h1 {
                font-size: 36px;
                line-height: 1.2;
            }

            .hero-text .subtitle {
                font-size: 16px;
            }

            .breadcrumb {
                font-size: 13px;
                margin-bottom: 24px;
            }

            .hero-image {
                height: 300px;
                border-radius: 16px;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 2rem;
            }
        }


/* ==============================
   craft-dream-space.html - Extracted Internal CSS
   ============================== */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2c3e50;
            --secondary-color: #1a1552;
            --theme-color1: #1a1552;
            --accent-color: #1a2332;
            --text-dark: #1a1a1a;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:hover {
            color: var(--secondary-color);
        }

        .phone-btn {
            padding: 0.7rem 1.5rem;
            background: var(--secondary-color);
            color: var(--white);
            border-radius: 50px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .phone-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(26, 21, 82, 0.3);
        }

        /* Hero Section */
        .hero {
            margin-top: 0;
            min-height: 600px;
            position: relative;
            display: flex;
            align-items: center;
            background: #1A1552;
            overflow: hidden;
            padding: 120px 0 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text {
            padding-right: 40px;
        }

        .hero-text h1 {
            font-size: 64px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }

        .hero-text .subtitle {
            font-size: 18px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 0;
            line-height: 1.7;
            font-weight: 400;
        }

        .breadcrumb {
            display: flex;
            gap: 8px;
            align-items: center;
            color: rgba(255,255,255,0.7);
            margin-bottom: 32px;
            font-size: 14px;
            font-weight: 400;
        }

        .breadcrumb a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: #ffffff;
        }

        .breadcrumb i {
            font-size: 12px;
            margin: 0 4px;
            opacity: 0.6;
        }

        .breadcrumb span {
            color: rgba(255,255,255,0.7);
        }

        .hero-image {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Overview Section */
        .overview {
            padding: 120px 2rem;
            background: var(--white);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(26, 21, 82, 0.1);
            color: var(--secondary-color);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .overview-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: start;
        }

        .overview-content p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .quick-facts {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.05);
            position: sticky;
            top: 100px;
        }

        .quick-facts h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--primary-color);
        }

        .fact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .fact-item:last-child {
            border-bottom: none;
        }

        .fact-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .fact-text {
            font-weight: 500;
            color: var(--text-dark);
            font-size: 1.05rem;
        }

        /* Benefits Section */
        .benefits {
            padding: 120px 2rem;
            background: var(--bg-light);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 60px;
        }

        .benefit-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border-color: var(--secondary-color);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, #2a1f72 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 2rem;
        }

        .benefit-card h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .benefit-card p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Features Section */
        .features {
            padding: 120px 2rem;
            background: var(--white);
        }

        .feature-showcase {
            margin-top: 60px;
        }

        .feature-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        .feature-item:nth-child(even) .feature-img {
            order: 2;
        }

        .feature-img {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .feature-item:hover .feature-img img {
            transform: scale(1.05);
        }

        .feature-content h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .feature-content p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .feature-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem;
            background: var(--bg-light);
            border-radius: 10px;
        }

        .highlight-item i {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }

        /* Testimonial Section */
        .testimonial {
            padding: 120px 2rem;
            background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonial::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(26, 21, 82, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .testimonial-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .quote-icon {
            font-size: 4rem;
            color: var(--secondary-color);
            opacity: 0.3;
            margin-bottom: 2rem;
        }

        .testimonial-text {
            font-size: 1.8rem;
            line-height: 1.8;
            color: var(--white);
            margin-bottom: 3rem;
            font-style: italic;
        }

        .testimonial-author {
            display: inline-block;
            padding-top: 2rem;
            border-top: 2px solid rgba(255,255,255,0.2);
        }

        .author-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .author-role {
            color: rgba(255,255,255,0.7);
            font-size: 1rem;
        }

        /* CTA Section */
        .cta {
            padding: 120px 2rem;
            background: var(--white);
            text-align: center;
        }

        .cta h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .cta p {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 3rem;
            background: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(26, 21, 82, 0.3);
        }

        /* Footer */
        footer {
            background: var(--accent-color);
            color: rgba(255,255,255,0.8);
            padding: 80px 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand h3 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-links h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        .service-breadcrumb {
            padding: 20px 0;
            background: var(--tp-common-white);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .breadcrumb-content {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
        }

        .breadcrumb-content span a {
            color: var(--tp-text-body);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-content span a:hover {
            color: var(--tp-theme-1);
        }

        .breadcrumb-content span:not(.dvdr) {
            color: var(--tp-text-body);
        }

        .breadcrumb-content .dvdr {
            color: rgba(0, 0, 0, 0.3);
            font-size: 12px;
        }

        .breadcrumb-content span:last-child {
            color: var(--tp-common-black);
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero {
                padding: 100px 0 60px;
                min-height: 500px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 0 30px;
            }

            .hero-text {
                padding-right: 0;
                text-align: left;
            }

            .hero-text h1 {
                font-size: 48px;
            }

            .hero-image {
                height: 400px;
            }

            .overview-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .feature-item {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 80px 0 50px;
                min-height: auto;
            }

            .hero-content {
                padding: 0 20px;
                gap: 30px;
            }

            .hero-text h1 {
                font-size: 36px;
                line-height: 1.2;
            }

            .hero-text .subtitle {
                font-size: 16px;
            }

            .breadcrumb {
                font-size: 13px;
                margin-bottom: 24px;
            }

            .hero-image {
                height: 300px;
                border-radius: 16px;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 2rem;
            }
        }


/* ==============================
   power-design.html - Extracted Internal CSS
   ============================== */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2c3e50;
            --secondary-color: #1a1552;
            --theme-color1: #1a1552;
            --accent-color: #1a2332;
            --text-dark: #1a1a1a;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:hover {
            color: var(--secondary-color);
        }

        .phone-btn {
            padding: 0.7rem 1.5rem;
            background: var(--secondary-color);
            color: var(--white);
            border-radius: 50px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .phone-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(26, 21, 82, 0.3);
        }

        /* Hero Section */
        .hero {
            margin-top: 0;
            min-height: 600px;
            position: relative;
            display: flex;
            align-items: center;
            background: #1A1552;
            overflow: hidden;
            padding: 120px 0 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text {
            padding-right: 40px;
        }

        .hero-text h1 {
            font-size: 64px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }

        .hero-text .subtitle {
            font-size: 18px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 0;
            line-height: 1.7;
            font-weight: 400;
        }

        .breadcrumb {
            display: flex;
            gap: 8px;
            align-items: center;
            color: rgba(255,255,255,0.7);
            margin-bottom: 32px;
            font-size: 14px;
            font-weight: 400;
        }

        .breadcrumb a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: #ffffff;
        }

        .breadcrumb i {
            font-size: 12px;
            margin: 0 4px;
            opacity: 0.6;
        }

        .breadcrumb span {
            color: rgba(255,255,255,0.7);
        }

        .hero-image {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Overview Section */
        .overview {
            padding: 120px 2rem;
            background: var(--white);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(26, 21, 82, 0.1);
            color: var(--secondary-color);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .overview-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: start;
        }

        .overview-content p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .quick-facts {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.05);
            position: sticky;
            top: 100px;
        }

        .quick-facts h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--primary-color);
        }

        .fact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .fact-item:last-child {
            border-bottom: none;
        }

        .fact-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .fact-text {
            font-weight: 500;
            color: var(--text-dark);
            font-size: 1.05rem;
        }

        /* Benefits Section */
        .benefits {
            padding: 120px 2rem;
            background: var(--bg-light);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 60px;
        }

        .benefit-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border-color: var(--secondary-color);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, #2a1f72 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 2rem;
        }

        .benefit-card h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .benefit-card p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Features Section */
        .features {
            padding: 120px 2rem;
            background: var(--white);
        }

        .feature-showcase {
            margin-top: 60px;
        }

        .feature-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        .feature-item:nth-child(even) .feature-img {
            order: 2;
        }

        .feature-img {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .feature-item:hover .feature-img img {
            transform: scale(1.05);
        }

        .feature-content h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .feature-content p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .feature-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem;
            background: var(--bg-light);
            border-radius: 10px;
        }

        .highlight-item i {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }

        /* Testimonial Section */
        .testimonial {
            padding: 120px 2rem;
            background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonial::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(26, 21, 82, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .testimonial-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .quote-icon {
            font-size: 4rem;
            color: var(--secondary-color);
            opacity: 0.3;
            margin-bottom: 2rem;
        }

        .testimonial-text {
            font-size: 1.8rem;
            line-height: 1.8;
            color: var(--white);
            margin-bottom: 3rem;
            font-style: italic;
        }

        .testimonial-author {
            display: inline-block;
            padding-top: 2rem;
            border-top: 2px solid rgba(255,255,255,0.2);
        }

        .author-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .author-role {
            color: rgba(255,255,255,0.7);
            font-size: 1rem;
        }

        /* CTA Section */
        .cta {
            padding: 120px 2rem;
            background: var(--white);
            text-align: center;
        }

        .cta h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .cta p {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 3rem;
            background: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(26, 21, 82, 0.3);
        }

        /* Footer */
        footer {
            background: var(--accent-color);
            color: rgba(255,255,255,0.8);
            padding: 80px 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand h3 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-links h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        .service-breadcrumb {
            padding: 20px 0;
            background: var(--tp-common-white);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .breadcrumb-content {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
        }

        .breadcrumb-content span a {
            color: var(--tp-text-body);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-content span a:hover {
            color: var(--tp-theme-1);
        }

        .breadcrumb-content span:not(.dvdr) {
            color: var(--tp-text-body);
        }

        .breadcrumb-content .dvdr {
            color: rgba(0, 0, 0, 0.3);
            font-size: 12px;
        }

        .breadcrumb-content span:last-child {
            color: var(--tp-common-black);
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero {
                padding: 100px 0 60px;
                min-height: 500px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 0 30px;
            }

            .hero-text {
                padding-right: 0;
                text-align: left;
            }

            .hero-text h1 {
                font-size: 48px;
            }

            .hero-image {
                height: 400px;
            }

            .overview-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .feature-item {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 80px 0 50px;
                min-height: auto;
            }

            .hero-content {
                padding: 0 20px;
                gap: 30px;
            }

            .hero-text h1 {
                font-size: 36px;
                line-height: 1.2;
            }

            .hero-text .subtitle {
                font-size: 16px;
            }

            .breadcrumb {
                font-size: 13px;
                margin-bottom: 24px;
            }

            .hero-image {
                height: 300px;
                border-radius: 16px;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 2rem;
            }
        }


/* ==============================
   shine-personality.html - Extracted Internal CSS
   ============================== */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2c3e50;
            --secondary-color: #1a1552;
            --theme-color1: #1a1552;
            --accent-color: #1a2332;
            --text-dark: #1a1a1a;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:hover {
            color: var(--secondary-color);
        }

        .phone-btn {
            padding: 0.7rem 1.5rem;
            background: var(--secondary-color);
            color: var(--white);
            border-radius: 50px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .phone-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(26, 21, 82, 0.3);
        }

        /* Hero Section */
        .hero {
            margin-top: 0;
            min-height: 600px;
            position: relative;
            display: flex;
            align-items: center;
            background: #1A1552;
            overflow: hidden;
            padding: 120px 0 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text {
            padding-right: 40px;
        }

        .hero-text h1 {
            font-size: 64px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }

        .hero-text .subtitle {
            font-size: 18px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 0;
            line-height: 1.7;
            font-weight: 400;
        }

        .breadcrumb {
            display: flex;
            gap: 8px;
            align-items: center;
            color: rgba(255,255,255,0.7);
            margin-bottom: 32px;
            font-size: 14px;
            font-weight: 400;
        }

        .breadcrumb a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: #ffffff;
        }

        .breadcrumb i {
            font-size: 12px;
            margin: 0 4px;
            opacity: 0.6;
        }

        .breadcrumb span {
            color: rgba(255,255,255,0.7);
        }

        .hero-image {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Overview Section */
        .overview {
            padding: 120px 2rem;
            background: var(--white);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(26, 21, 82, 0.1);
            color: var(--secondary-color);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .overview-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: start;
        }

        .overview-content p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .quick-facts {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.05);
            position: sticky;
            top: 100px;
        }

        .quick-facts h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--primary-color);
        }

        .fact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .fact-item:last-child {
            border-bottom: none;
        }

        .fact-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .fact-text {
            font-weight: 500;
            color: var(--text-dark);
            font-size: 1.05rem;
        }

        /* Benefits Section */
        .benefits {
            padding: 120px 2rem;
            background: var(--bg-light);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 60px;
        }

        .benefit-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border-color: var(--secondary-color);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, #2a1f72 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 2rem;
        }

        .benefit-card h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .benefit-card p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Features Section */
        .features {
            padding: 120px 2rem;
            background: var(--white);
        }

        .feature-showcase {
            margin-top: 60px;
        }

        .feature-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        .feature-item:nth-child(even) .feature-img {
            order: 2;
        }

        .feature-img {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .feature-item:hover .feature-img img {
            transform: scale(1.05);
        }

        .feature-content h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .feature-content p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .feature-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem;
            background: var(--bg-light);
            border-radius: 10px;
        }

        .highlight-item i {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }

        /* Testimonial Section */
        .testimonial {
            padding: 120px 2rem;
            background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonial::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(26, 21, 82, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .testimonial-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .quote-icon {
            font-size: 4rem;
            color: var(--secondary-color);
            opacity: 0.3;
            margin-bottom: 2rem;
        }

        .testimonial-text {
            font-size: 1.8rem;
            line-height: 1.8;
            color: var(--white);
            margin-bottom: 3rem;
            font-style: italic;
        }

        .testimonial-author {
            display: inline-block;
            padding-top: 2rem;
            border-top: 2px solid rgba(255,255,255,0.2);
        }

        .author-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .author-role {
            color: rgba(255,255,255,0.7);
            font-size: 1rem;
        }

        /* CTA Section */
        .cta {
            padding: 120px 2rem;
            background: var(--white);
            text-align: center;
        }

        .cta h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .cta p {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 3rem;
            background: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(26, 21, 82, 0.3);
        }

        /* Footer */
        footer {
            background: var(--accent-color);
            color: rgba(255,255,255,0.8);
            padding: 1px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand h3 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-links h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        .service-breadcrumb {
            padding: 20px 0;
            background: var(--tp-common-white);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .breadcrumb-content {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
        }

        .breadcrumb-content span a {
            color: var(--tp-text-body);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-content span a:hover {
            color: var(--tp-theme-1);
        }

        .breadcrumb-content span:not(.dvdr) {
            color: var(--tp-text-body);
        }

        .breadcrumb-content .dvdr {
            color: rgba(0, 0, 0, 0.3);
            font-size: 12px;
        }

        .breadcrumb-content span:last-child {
            color: var(--tp-common-black);
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero {
                padding: 100px 0 60px;
                min-height: 500px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 0 30px;
            }

            .hero-text {
                padding-right: 0;
                text-align: left;
            }

            .hero-text h1 {
                font-size: 48px;
            }

            .hero-image {
                height: 400px;
            }

            .overview-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .feature-item {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 80px 0 50px;
                min-height: auto;
            }

            .hero-content {
                padding: 0 20px;
                gap: 30px;
            }

            .hero-text h1 {
                font-size: 36px;
                line-height: 1.2;
            }

            .hero-text .subtitle {
                font-size: 16px;
            }

            .breadcrumb {
                font-size: 13px;
                margin-bottom: 24px;
            }

            .hero-image {
                height: 300px;
                border-radius: 16px;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 2rem;
            }
        }

/*----------------------------------------*/
/*  Expert Services Section Styles
/*----------------------------------------*/
.expert-services-section {
    padding: 120px 0;
    background: var(--tp-common-white);
    position: relative;
}

.expert-services-section .section-header {
    margin-bottom: 80px;
}

.expert-services-section .section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--tp-common-black);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0;
    font-family: var(--tp-ff-heading);
}

@media (max-width: 991px) {
    .expert-services-section .section-title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .expert-services-section {
        padding: 80px 0;
    }
    
    .expert-services-section .section-header {
        margin-bottom: 50px;
    }
    
    .expert-services-section .section-title {
        font-size: 32px;
    }
}

/*----------------------------------------*/
/*  Home Remodeling Oklahoma Page Styles
/*----------------------------------------*/

/* What We Remodel Section */
.service-what-we-remodel-section {
    padding: 120px 0;
    background: var(--sub-bg);
}

.remodel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--main-bg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.remodel-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.remodel-item i {
    color: var(--theme-color1);
    font-size: 18px;
}

.remodel-item span {
    font-size: 16px;
    color: #1a1a1a; /* Black for better visibility */
    font-weight: 500;
}

/* Process Section */
.service-process-section {
    padding: 120px 0;
    background: var(--sub-bg);
}

.process-card {
    background: var(--main-bg);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(26, 21, 82, 0.08);
    font-family: var(--font-title);
    line-height: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--theme-color1) 0%, rgba(26, 21, 82, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
}

.process-icon i {
    font-size: 32px;
    color: var(--text-color1);
}

.process-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 12px;
    font-family: var(--font-title);
}

.process-text {
    font-size: 16px;
    color: #1a1a1a; /* Black for better visibility */
    line-height: 1.6;
    margin: 0;
}
.btn-backToTop{
	padding:0
}

/* Why Choose Section */
.service-why-choose-section {
    padding: 120px 0;
    background: var(--tp-common-white);
    position: relative;
}

.service-why-choose-section .section-header {
    margin-bottom: 60px;
}

.service-why-choose-section .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--tp-common-black);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.service-why-choose-section .section-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 40px;
    max-width: 900px;
}

.service-why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-why-choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.service-why-choose-list li:hover {
    background: #ffffff;
    border-left-color: var(--theme-color1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.service-why-choose-list li:last-child {
    margin-bottom: 0;
}

.service-why-choose-list li i {
    color: var(--theme-color1);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
    width: 30px;
    text-align: center;
}

.service-why-choose-list li .choose-content {
    flex: 1;
}

.service-why-choose-list li .choose-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--tp-common-black);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.service-why-choose-list li .choose-description {
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a1a;
    margin: 0;
}

.service-why-choose-closing {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-color1);
    font-style: italic;
    text-align: center;
}

.service-why-choose-content-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.service-why-choose-block {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--theme-color1);
    transition: all 0.3s ease;
}

.service-why-choose-block:hover {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.service-why-choose-block h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--tp-common-black);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.service-why-choose-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a1a;
    margin: 0;
}

@media (max-width: 991px) {
    .service-why-choose-section {
        padding: 80px 0;
    }
    
    .service-why-choose-section .section-header h2 {
        font-size: 36px;
    }
    
    .service-why-choose-section .section-intro {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .service-why-choose-section {
        padding: 60px 0;
    }
    
    .service-why-choose-section .section-header {
        margin-bottom: 40px;
    }
    
    .service-why-choose-section .section-header h2 {
        font-size: 28px;
    }
    
    .service-why-choose-section .section-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .service-why-choose-list li {
        padding: 20px;
        gap: 14px;
    }
    
    .service-why-choose-list li i {
        font-size: 20px;
        width: 24px;
    }
    
    .service-why-choose-list li .choose-title {
        font-size: 16px;
    }
    
    .service-why-choose-list li .choose-description {
        font-size: 15px;
    }
    
    .service-why-choose-closing {
        font-size: 16px;
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .service-why-choose-block {
        padding: 24px;
    }
    
    .service-why-choose-block h3 {
        font-size: 20px;
    }
    
    .service-why-choose-block p {
        font-size: 15px;
    }
}

/* FAQ Section */
.service-faq-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
    border-top: 2px solid #1a1552;
    border-bottom: 2px solid #1a1552;
}

.service-faq-section .service-section-title {
    color: #1a1552;
    position: relative;
    display: inline-block;
}

.service-faq-section .service-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1a1552, transparent);
}

.service-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(26, 21, 82, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 21, 82, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.4;
}

.service-faq-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        #1a1552 0px,
        #1a1552 15px,
        #ffd700 15px,
        #ffd700 30px
    );
    opacity: 0.15;
    pointer-events: none;
}

.faq-item {
    background: #ffffff;
    border: 2px solid rgba(26, 21, 82, 0.1);
    border-left: 4px solid #1a1552;
    border-radius: 8px;
    padding: 30px 35px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #1a1552, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    border-color: #1a1552;
    border-left-color: #3b82f6;
    box-shadow: 0 6px 20px rgba(26, 21, 82, 0.12);
    transform: translateX(5px);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: #1a1552;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-title);
    position: relative;
}

.faq-question i {
    color: #1a1552;
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 21, 82, 0.08) 0%, rgba(26, 21, 82, 0.04) 100%);
    border-radius: 6px;
    border: 1px solid rgba(26, 21, 82, 0.15);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question i {
    background: linear-gradient(135deg, #1a1552 0%, #2a2a6e 100%);
    color: #ffffff;
    border-color: #1a1552;
    transform: scale(1.1);
}

.faq-answer {
    font-size: 16px;
    color: #1a1a1a; /* Black for better visibility */
    line-height: 1.7;
    margin: 0;
    padding-left: 54px;
    font-weight: 400;
}

@media (max-width: 991px) {
    .service-what-we-remodel-section,
    .service-process-section,
    .service-faq-section {
        padding: 80px 0;
    }
    
    .process-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .process-number {
        font-size: 36px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 767px) {
    .remodel-item {
        padding: 14px 16px;
    }
    
    .remodel-item span {
        font-size: 15px;
    }
    
    .process-icon {
        width: 70px;
        height: 70px;
    }
    
    .process-icon i {
        font-size: 28px;
    }
    
    .process-title {
        font-size: 20px;
    }
    
    .faq-question {
        font-size: 18px;
    }
    
    .faq-answer {
        padding-left: 0;
        margin-top: 12px;
    }
}

/* ===== Home Testimonials Section ===== */
.home-testimonials-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.home-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/slider/slider-2.webp') center/cover no-repeat;
    opacity: 0.05;
}

.home-testimonials-section .container {
    position: relative;
    z-index: 1;
}

/* Ensure equal height for all testimonial cards */
.home-testimonials-slider .swiper-wrapper {
    align-items: stretch;
    display: flex;
}

.home-testimonials-slider .swiper-slide {
    height: auto;
    display: flex;
}

.home-testimonials-title {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: var(--font-title);
}

.home-testimonials-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    font-style: italic;
}

.home-testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 1px 20px 5px 20px;
    backdrop-filter: blur(10px);
  
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    
}

.home-testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
    border-color: var(--tp-theme-1, #A6A182);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-quote-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1a1552 0%, #2a2a6e 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(26, 21, 82, 0.3);
    margin-bottom: 16px;
    margin-bottom: 24px;
}

.testimonial-quote-icon i {
    font-size: 20px;
    color: #ffffff;
}

.testimonial-quote-text {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 0;
    flex: 1 1 auto;
    min-height: 0;
    position: relative;
}

/* Text wrapper for read more functionality */
.testimonial-text-wrapper {
    position: relative;
    margin-bottom: 12px;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.testimonial-text-wrapper .testimonial-quote-text {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.testimonial-text-wrapper.expanded .testimonial-quote-text {
    display: block;
    -webkit-line-clamp: none;
    overflow-y: auto;
    max-height: 300px;
    padding-right: 8px;
}

/* Custom scrollbar for expanded text */
.testimonial-text-wrapper.expanded .testimonial-quote-text::-webkit-scrollbar {
    width: 4px;
}

.testimonial-text-wrapper.expanded .testimonial-quote-text::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
}

.testimonial-text-wrapper.expanded .testimonial-quote-text::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

.testimonial-text-wrapper.expanded .testimonial-quote-text::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.3);
}

/* Read more button */
.testimonial-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 4px 0;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 600;
    font-style: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
    align-self: flex-start;
}

.testimonial-read-more-btn:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.testimonial-read-more-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
    margin-top: 1px;
}

.testimonial-text-wrapper.expanded .testimonial-read-more-btn i {
    transform: rotate(180deg);
}

.testimonial-read-more-btn.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.home-testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.home-testimonial-card .author-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #1a1552 0%, #2a2a6e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.home-testimonial-card .author-info {
    flex: 1;
}

.home-testimonial-card .author-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2px;
    font-family: var(--font-title);
}

.home-testimonial-card .author-location {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* Bottom section wrapper for author and rating */
.home-testimonial-card .testimonial-author,
.home-testimonial-card .testimonial-rating {
    flex-shrink: 0;
}

.home-testimonial-card .testimonial-author {
    margin-top: auto;
}

.home-testimonial-card .testimonial-rating {
    display: flex;
    gap: 2px;
    margin-top: 0;
}

.home-testimonial-card .testimonial-rating i {
    font-size: 11px;
    color: #ffc107;
}

/* Testimonials Slider Controls */
.home-testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.home-testimonials-prev,
.home-testimonials-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-testimonials-prev:hover,
.home-testimonials-next:hover {
    background: var(--tp-theme-1, #A6A182);
    border-color: var(--tp-theme-1, #A6A182);
}

.home-testimonials-prev i,
.home-testimonials-next i {
    font-size: 18px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.home-testimonials-pagination {
    display: flex;
    gap: 8px;
}

.home-testimonials-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    background: rgba(255,255,255,0.25);
    border-radius: 2px;
    opacity: 1;
    transition: all 0.3s ease;
}

.home-testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--tp-theme-1, #A6A182);
}

/* Responsive adjustments for testimonial cards */
@media (max-width: 991px) {
    .testimonial-text-wrapper .testimonial-quote-text {
        -webkit-line-clamp: 5;
    }
    
    .testimonial-text-wrapper.expanded .testimonial-quote-text {
        max-height: 250px;
    }
}

@media (max-width: 767px) {
    .testimonial-text-wrapper .testimonial-quote-text {
        -webkit-line-clamp: 4;
        font-size: 14px;
    }
    
    .testimonial-text-wrapper.expanded .testimonial-quote-text {
        max-height: 200px;
    }
    
    .home-testimonial-card {
        padding: 24px 20px 20px;
    }
    
    .testimonial-read-more-btn {
        font-size: 12px;
    }
    
    /* Hide pagination dots in mobile view */
    .home-testimonials-pagination {
        display: none !important;
    }
}

/* ===== Service Areas Section ===== */
.service-areas-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 2px solid #1a1552;
    border-bottom: 2px solid #1a1552;
    overflow: hidden;
}

.service-areas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(26, 21, 82, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 21, 82, 0.015) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.5;
}

.service-areas-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        #1a1552 0px,
        #1a1552 12px,
        #ffd700 12px,
        #ffd700 24px
    );
    opacity: 0.15;
    pointer-events: none;
}

.service-areas-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1552;
    margin-bottom: 16px;
    font-family: var(--font-title);
    position: relative;
    padding-bottom: 12px;
}

.service-areas-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #1a1552, #3b82f6);
}

.service-areas-description {
    font-size: 17px;
    color: #333333;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: #ffffff;
    border: 2px solid rgba(26, 21, 82, 0.1);
    border-left: 4px solid #1a1552;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.area-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #1a1552, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.area-item:hover {
    background: #ffffff;
    border-color: #1a1552;
    border-left-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 21, 82, 0.15);
}

.area-item:hover::before {
    opacity: 1;
}

.area-item i {
    font-size: 22px;
    color: #1a1552;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 21, 82, 0.08) 0%, rgba(26, 21, 82, 0.04) 100%);
    border-radius: 6px;
    border: 1px solid rgba(26, 21, 82, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.area-item:hover i {
    background: linear-gradient(135deg, #1a1552 0%, #2a2a6e 100%);
    color: #ffffff;
    border-color: #1a1552;
    transform: scale(1.1);
}

.area-item span {
    font-size: 16px;
    font-weight: 600;
    color: #1a1552;
}

/* ===== Home CTA Section ===== */
.home-cta-section {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    position: relative;
}

.home-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.home-cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: var(--font-title);
    position: relative;
    z-index: 1;
}

.home-cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.home-cta-btn {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .home-testimonials-title,
    .home-cta-title {
        font-size: 32px;
    }
    
    .service-areas-title {
        font-size: 28px;
    }
    
    .service-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .home-testimonials-title,
    .home-cta-title {
        font-size: 28px;
    }
    
    .home-testimonial-card {
        padding: 30px 25px;
    }
    
    .service-areas-title {
        font-size: 24px;
    }
    
    .service-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .area-item {
        padding: 14px 16px;
    }

    /* Hide items 4-6 initially on mobile */
    .area-item-hidden {
        display: none;
    }

    .service-areas-grid.show-all .area-item-hidden {
        display: flex;
    }

    /* Show More Button */
    .service-areas-show-more {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .show-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 24px;
        background: #1a1552;
        color: #ffffff;
        border: 2px solid #1a1552;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .show-more-btn:hover {
        background: #2a2a6e;
        border-color: #2a2a6e;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(26, 21, 82, 0.3);
    }

    .show-more-icon {
        transition: transform 0.3s ease;
    }

    .service-areas-grid.show-all + .service-areas-show-more .show-more-icon {
        transform: rotate(180deg);
    }

}

/* Hide show more button on desktop */
@media (min-width: 768px) {
    .service-areas-show-more {
        display: none;
    }

    .area-item-hidden {
        display: flex !important;
    }
}

/* ===== Trust Section ===== */
.trust-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
    border-top: 2px solid #1a1552;
    border-bottom: 2px solid #1a1552;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(26, 21, 82, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 21, 82, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.6;
}

.trust-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        #1a1552 0px,
        #1a1552 15px,
        #ffd700 15px,
        #ffd700 30px
    );
    opacity: 0.2;
    pointer-events: none;
}

.trust-section-title {
    font-size: 44px;
    font-weight: 700;
    color: #1a1552;
    margin-bottom: 16px;
    font-family: var(--font-title);
    position: relative;
    display: inline-block;
}

.trust-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1a1552, transparent);
}

.trust-section-subtitle {
    font-size: 18px;
    color: var(--paragraph);
    font-style: italic;
}

/* Trust Cards Carousel */
.trust-cards-carousel-wrapper {
    margin-bottom: 60px;
    position: relative;
    padding: 0 50px;
}

.trust-cards-slider {
    overflow: visible;
}

.trust-cards-slider .swiper-slide {
    height: auto;
}

.trust-cards-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.trust-cards-prev,
.trust-cards-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 21, 82, 0.1);
    border: 2px solid rgba(26, 21, 82, 0.2);
    color: #1a1552;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.trust-cards-prev:hover,
.trust-cards-next:hover {
    background: #1a1552;
    border-color: #1a1552;
    color: #ffffff;
    transform: scale(1.1);
}

.trust-cards-pagination {
    position: relative !important;
    bottom: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trust-cards-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(26, 21, 82, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.trust-cards-pagination .swiper-pagination-bullet-active {
    background: #1a1552;
    width: 30px;
    border-radius: 6px;
}

.trust-card {
    background: #ffffff;
    border: 2px solid rgba(26, 21, 82, 0.1);
    border-top: 4px solid #1a1552;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    height: 80%;
    transition: all 0.4s ease;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1a1552, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-card::after {
    display: none;
}

.trust-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: #1a1552;
    border-top-color: #3b82f6;
    box-shadow: 
        0 12px 30px rgba(26, 21, 82, 0.15),
        0 0 20px rgba(26, 21, 82, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1a1552 0%, #2a2a6e 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 20px rgba(26, 21, 82, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.trust-card-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(26, 21, 82, 0.15);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-card:hover .trust-card-icon {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(26, 21, 82, 0.35),
        inset 0 2px 4px rgba(255, 255, 255, 0.25),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2a2a6e 0%, #3b82f6 100%);
}

.trust-card:hover .trust-card-icon::after {
    opacity: 1;
    border-color: rgba(59, 130, 246, 0.3);
}

.trust-card-icon i {
    font-size: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.trust-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1552;
    margin-bottom: 12px;
    font-family: var(--font-title);
    position: relative;
    padding-bottom: 10px;
}

.trust-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1a1552, transparent);
    transition: width 0.4s ease;
}

.trust-card:hover .trust-card-title::after {
    width: 50px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.trust-card-text {
    font-size: 15px;
    color: var(--paragraph);
    line-height: 1.7;
    margin: 0;
}

/* Quote Divider */
.trust-quote {
    background: linear-gradient(135deg, rgba(26, 21, 82, 0.08) 0%, rgba(26, 21, 82, 0.03) 100%);
    border-left: 4px solid #1a1552;
    border-top: 2px solid rgba(26, 21, 82, 0.1);
    border-bottom: 2px solid rgba(26, 21, 82, 0.1);
    border-radius: 0 16px 16px 0;
    padding: 40px 50px;
    position: relative;
}

.trust-quote .quote-icon {
    font-size: 40px;
    color: var(--tp-theme-1, #A6A182);
    opacity: 0.4;
    position: absolute;
    top: 20px;
    left: 30px;
}

.trust-quote .quote-text {
    font-size: 22px;
    font-weight: 500;
    color: var(--heading-color);
    font-style: italic;
    margin: 0;
    padding-left: 30px;
    line-height: 1.6;
}

/* Explore Work Sub-Section */
.explore-work-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1552;
    margin-bottom: 20px;
    font-family: var(--font-title);
    position: relative;
    padding-bottom: 15px;
}

.explore-work-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1a1552, #3b82f6);
}

.explore-work-description {
    font-size: 17px;
    color: #333333;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

/* Explore Work Section Container */
.explore-work-wrapper {
    background: linear-gradient(135deg, rgba(26, 21, 82, 0.04) 0%, rgba(26, 21, 82, 0.01) 100%);
    border: 2px solid rgba(26, 21, 82, 0.12);
    border-left: 4px solid #1a1552;
    border-radius: 12px;
    padding: 50px 40px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.explore-work-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26, 21, 82, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
}

.explore-work-btn {
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(26, 21, 82, 0.2);
    transition: all 0.3s ease;
}

.explore-work-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 21, 82, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .trust-section-title {
        font-size: 32px;
    }
    
    .trust-card {
        padding: 28px 24px;
    }
    
    .trust-cards-carousel-wrapper {
        padding: 0 30px;
    }
    
    .trust-cards-navigation {
        margin-top: 30px;
    }
    
    .trust-quote {
        padding: 30px 35px;
    }
    
    .trust-quote .quote-text {
        font-size: 18px;
        padding-left: 20px;
    }
    
    .explore-work-title {
        font-size: 30px;
    }
    
    .explore-work-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .trust-section-title {
        font-size: 28px;
    }
    
    .trust-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .trust-card-icon i {
        font-size: 24px;
    }
    
    .trust-card-title {
        font-size: 18px;
    }
    
    .trust-cards-carousel-wrapper {
        padding: 0 20px;
    }
    
    .trust-cards-prev,
    .trust-cards-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .trust-cards-carousel-wrapper {
        padding: 0 20px;
    }
    
    .trust-cards-prev,
    .trust-cards-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .trust-quote {
        padding: 25px 20px;
    }
    
    .trust-quote .quote-icon {
        font-size: 30px;
        top: 15px;
        left: 15px;
    }
    
    .trust-quote .quote-text {
        font-size: 16px;
        padding-left: 10px;
    }
    
    .explore-work-title {
        font-size: 26px;
    }
    
    .explore-work-wrapper {
        padding: 30px 20px;
        margin : 0 2px;
    }
    
    .explore-work-description {
        font-size: 16px;
    }
}

/* ===== Dark Process Section ===== */
.dark-process-section {
    background: linear-gradient(135deg, #0a0e14 0%, #151a24 50%, #0d1117 100%);
    overflow: hidden;
    border-top: 3px solid #1a1552;
    border-bottom: 3px solid #1a1552;
}

.dark-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(26, 21, 82, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 21, 82, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.5;
}

.dark-process-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        #1a1552 0px,
        #1a1552 20px,
        #ffd700 20px,
        #ffd700 40px
    );
    opacity: 0.3;
    pointer-events: none;
}

.dark-process-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: var(--font-title);
}

.dark-process-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.dark-process-card {
    background: rgba(15, 20, 30, 0.8);
    border: 2px solid rgba(26, 21, 82, 0.3);
    border-top: 4px solid #1a1552;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    height: 100%;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dark-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1a1552, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dark-process-card:hover {
    background: rgba(20, 25, 35, 0.9);
    border-color: #1a1552;
    border-top-color: #3b82f6;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(26, 21, 82, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dark-process-card:hover::before {
    opacity: 1;
}

.dark-process-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 72px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1;
    font-family: var(--font-title);
    letter-spacing: -2px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    font-size: 60px;
    font-weight: 800;
    transition: all 0.4s ease;
}

.dark-process-card:hover .dark-process-number {
    color: rgba(255, 255, 255, 0.45);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.dark-process-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a1552 0%, #2a2a6e 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 20px rgba(26, 21, 82, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.dark-process-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(26, 21, 82, 0.3);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dark-process-card:hover .dark-process-icon {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 
        0 12px 30px rgba(26, 21, 82, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.15),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4);
    border-color: rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2a2a6e 0%, #3b82f6 100%);
}

.dark-process-card:hover .dark-process-icon::after {
    opacity: 1;
    border-color: rgba(59, 130, 246, 0.4);
}

.dark-process-icon i {
    font-size: 36px;
    color: #ffffff;
}

.dark-process-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: var(--font-title);
    line-height: 1.4;
    position: relative;
    padding-bottom: 12px;
}

.dark-process-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1a1552, transparent);
    transition: width 0.4s ease;
}

.dark-process-card:hover .dark-process-card-title::after {
    width: 60px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.dark-process-card-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0;
}

/* Connector line between cards */
.dark-process-connector {
    display: none;
}

@media (min-width: 1200px) {
    .dark-process-connector {
        display: block;
        position: absolute;
        top: 50%;
        right: -30px;
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, #1a1552 0%, #3b82f6 50%, transparent 100%);
        transform: translateY(-50%);
        z-index: 1;
    }
    
    .dark-process-card.last-card .dark-process-connector {
        display: none;
    }
}

/* Process Carousel Wrapper */
.dark-process-carousel-wrapper {
    position: relative;
    padding: 0 60px 100px;
}

.dark-process-carousel {
    overflow: visible;
    padding-bottom: 60px;
}

.dark-process-carousel .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.dark-process-carousel .swiper-slide .dark-process-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

/* Navigation Arrows Container */
.dark-process-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    transform: translateY(-50%);
    pointer-events: none;
}

.dark-process-navigation button {
    pointer-events: all;
}

/* Navigation Arrow Buttons */
.dark-process-prev,
.dark-process-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 21, 82, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
}

.dark-process-prev:hover,
.dark-process-next:hover {
    background: rgba(26, 21, 82, 1);
    border-color: rgba(59, 130, 246, 0.6);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(26, 21, 82, 0.4);
}

.dark-process-prev:active,
.dark-process-next:active {
    transform: scale(0.95);
}

.dark-process-prev i,
.dark-process-next i {
    font-size: 18px;
    color: #ffffff;
}

/* Pagination Dots - Positioned below cards */
.dark-process-pagination {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    margin-top: 30px;
}

.dark-process-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.dark-process-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 30px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 991px) {
    .dark-process-title {
        font-size: 32px;
    }
    
    .dark-process-card {
        padding: 30px 24px;
    }
    
    .dark-process-icon {
        width: 80px;
        height: 80px;
    }
    
    .dark-process-icon i {
        font-size: 32px;
    }
    
    .dark-process-card-title {
        font-size: 20px;
    }

    .dark-process-carousel-wrapper {
        padding: 0 50px 100px;
    }

    .dark-process-carousel {
        padding-bottom: 60px;
    }

    .dark-process-prev,
    .dark-process-next {
        width: 45px;
        height: 45px;
    }

    .dark-process-prev i,
    .dark-process-next i {
        font-size: 16px;
    }

    .dark-process-pagination {
        bottom: 0;
    }
}

@media (max-width: 767px) {
    .dark-process-title {
        font-size: 28px;
    }
    
    .dark-process-number {
        font-size: 48px;
    }
    
    .dark-process-icon {
        width: 70px;
        height: 70px;
    }
    
    .dark-process-icon i {
        font-size: 28px;
    }

    .dark-process-carousel-wrapper {
        padding: 0 20px 30px;
    }

    .dark-process-carousel {
        padding-bottom: 20px;
    }

    /* Move arrows below cards and center them in mobile */
    .dark-process-navigation {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        justify-content: center;
        gap: 20px;
        padding: 15px 0 0 0;
        margin-bottom: 0;
    }
    
    .dark-process-pagination {
        margin-top: 10px;
        margin-bottom: 0;
    }

    .dark-process-prev,
    .dark-process-next {
        width: 40px;
        height: 40px;
        position: relative;
    }

    .dark-process-prev i,
    .dark-process-next i {
        font-size: 14px;
    }

    /* Hide pagination dots in mobile view */
    .dark-process-pagination {
        display: none;
    }
    
    /* Reduce section bottom padding on mobile */
    .dark-process-section {
        padding-bottom: 40px !important;
    }
}

/* ===== Home Services Detailed Section ===== */
.home-services-detailed {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.home-services-detailed .section-main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 16px;
    font-family: var(--font-title);
}

.home-services-detailed .section-main-subtitle {
    font-size: 18px;
    color: var(--paragraph);
    font-style: italic;
}

/* Service Detail Block */
.service-detail-block {
    position: relative;
}

.service-detail-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-block:hover .service-detail-image img {
    transform: scale(1.05);
}

.service-detail-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--theme-color1);
    padding: 12px 20px;
    border-radius: 8px;
}

.service-detail-badge .badge-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-title);
}

.service-detail-content {
    padding: 20px 0;
    padding-left: 40px;
}

.flex-lg-row-reverse .service-detail-content {
    padding-left: 0;
    padding-right: 40px;
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--theme-color1) 0%, rgba(26, 21, 82, 0.9) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.service-detail-block:hover .service-detail-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-detail-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 16px;
    font-family: var(--font-title);
}

.service-detail-description {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 16px;
    font-family: var(--font-title);
}

.service-detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-detail-list.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
}

.service-detail-list li span {
    color: #1a1a1a;
}

.service-detail-list li i {
    color: var(--theme-color1);
    font-size: 16px;
    flex-shrink: 0;
}

/* Service Details Container */
.service-details-container {
    position: relative;
    width: 100%;
}

/* Service Details Show More/Less Button */
.service-details-show-more {
    display: none;
    justify-content: center;
    margin-top: 20px;
}

.service-details-show-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--theme-color1);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(26, 21, 82, 0.2);
}

.service-details-show-btn:hover {
    background: #2a2a6e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 21, 82, 0.3);
}

.service-details-btn-text {
    display: inline-block;
}

.service-details-btn-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 14px;
}

/* Mobile: Hide items 4+ and show button */
@media (max-width: 767px) {
    /* Hide items 4+ for remodel-item structure */
    .service-detail-hidden {
        display: none !important;
    }
    
    .service-details-container.show-all .service-detail-hidden {
        display: block !important;
    }
    
    /* Hide items 4+ for service-detail-list structure */
    .service-detail-list li.service-detail-hidden {
        display: none !important;
    }
    
    .service-details-container.show-all .service-detail-list li.service-detail-hidden {
        display: flex !important;
    }
    
    /* Show the button on mobile */
    .service-details-show-more {
        display: flex;
    }
    
    /* Ensure proper spacing for remodel-item rows */
    .service-details-container .row > [class*="col-"].service-detail-hidden {
        display: none !important;
    }
    
    .service-details-container.show-all .row > [class*="col-"].service-detail-hidden {
        display: block !important;
    }
}

.service-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--theme-color1);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border: 2px solid var(--theme-color1);
    border-radius: 8px;
    background: transparent;
}

.service-detail-link:hover {
    background: var(--theme-color1);
    color: var(--white);
}

.service-detail-link span {
    color: inherit;
}

.service-detail-link i {
    transition: transform 0.3s ease, color 0.3s ease;
    color: inherit;
}

.service-detail-link:hover i {
    transform: translateX(5px);
    color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
    .home-services-detailed .section-main-title {
        font-size: 32px;
    }
    
    .service-detail-content {
        padding-left: 0;
        padding-top: 30px;
    }
    
    .flex-lg-row-reverse .service-detail-content {
        padding-right: 0;
    }
    
    .service-detail-image img {
        height: 300px;
    }
    
    .service-detail-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .home-services-detailed .section-main-title {
        font-size: 28px;
    }
    
    .service-detail-list.two-column {
        grid-template-columns: 1fr;
    }
    
    .service-detail-image img {
        height: 250px;
    }
    
    .service-detail-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-detail-icon i {
        font-size: 24px;
    }
}

/* Subsection Title */
.subsection-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 30px;
    font-family: var(--font-title);
}

/* Kitchen & Bathroom Service Sections */
.service-kitchen-section,
.service-bathroom-section {
    padding: 120px 0;
}

.service-kitchen-section {
    background: var(--sub-bg);
}

.service-bathroom-section {
    background: var(--main-bg);
}

.service-kitchen-section .section-header .service-section-title,
.service-kitchen-section .section-header .benefits-subtitle,
.service-bathroom-section .section-header .service-section-title,
.service-bathroom-section .section-header .benefits-subtitle {
    color: var(--heading-color);
}

@media (max-width: 991px) {
    .subsection-title {
        font-size: 24px;
    }
    
    .service-kitchen-section,
    .service-bathroom-section {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .subsection-title {
        font-size: 22px;
        margin-bottom: 24px;
    }
}

/* ==========================================================================
   HERO SECTION STYLES
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 60px;
    background: linear-gradient(135deg, rgba(248,248,248,0.95) 0%, rgba(240,240,240,0.95) 50%, rgba(232,232,232,0.95) 100%);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/slider/slider-1.webp') center/cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-row {
    min-height: calc(100vh - 300px);
}

/* Hero Content */
.hero-content {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    display: block;
    width: 100%;
    font-size: 52px;
    font-weight: 700;
    color: var(--theme-color1);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    display: block;
    width: 100%;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 28px;
    line-height: 1.6;
    position: relative;
    clear: both;
}

/* Hero Highlights */
.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    align-items: flex-start;
	text-align:left;
}

.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--theme-color1);
    font-size: 18px;
    font-weight: 700;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 2px solid rgba(26, 21, 82, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-highlight-item span {
    color: var(--theme-color1);
    font-weight: 700;
}

.hero-highlight-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--theme-color1);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(26, 21, 82, 0.2);
}

.hero-highlight-item:hover span {
    color: var(--theme-color1);
}

.hero-highlight-item i {
    color: #ffffff;
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1552;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(26, 21, 82, 0.2);
    transition: all 0.3s ease;
}

.hero-highlight-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(26, 21, 82, 0.3);
}

/* Mobile: Make all hero highlight items same width */
@media (max-width: 767px) {
    .hero-highlight-item {
        width: 100%;
        min-width: 100%;
    }
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 21, 82, 0.3);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    border: 2px solid rgba(34,34,34,0.3);
    background: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-btn-secondary:hover {
    border-color: #1a1552;
    background: #1a1552;
    color: #fff;
    transform: translateY(-3px);
}

.hero-btn-secondary i {
    transition: transform 0.3s ease;
}

.hero-btn-secondary:hover i {
    transform: translateX(5px);
}

/* Trust Strip */
.hero-trust-strip {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 16px 28px;
    background: rgba(0,0,0,0.05);
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-stars {
    display: flex;
    gap: 2px;
}

.trust-stars i {
    color: #ffc107;
    font-size: 12px;
}

.trust-item span {
    color: rgba(34,34,34,0.9);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-icon {
    color: var(--tp-theme-1, #A6A182);
    font-size: 16px;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(0,0,0,0.2);
}

/* Hero Visual */
.hero-visual-wrapper {
    position: relative;
}

/* Before/After Slider */
.hero-before-after {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-before {
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}

.ba-after {
    z-index: 1;
}

.ba-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
}

.ba-label-before {
    left: 20px;
}

.ba-label-after {
    right: 20px;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%);
}

.ba-handle-line {
    flex: 1;
    width: 3px;
    background: #fff;
}

.ba-handle-circle {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

/* Service Cards */
.hero-service-cards {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 50px;
    padding: 0 20px;
}

.hero-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 28px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex: 1 1 0;
    min-width: 160px;
    max-width: 200px;
}

.hero-service-card:hover {
    background: rgba(26, 21, 82, 0.1);
    border-color: #1a1552;
    transform: translateY(-5px);
    color: var(--theme-color1);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1552 0%, #2a2a6e 100%);
    border-radius: 12px;
    font-size: 24px;
    color: #fff;
}

.hero-service-card span {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: inherit;
}

/* Project Showcase */
.hero-project-showcase {
    position: relative;
    margin-top: 60px;
    padding: 0 40px;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 20px;
}

.showcase-header h4 {
    color: #222222;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.showcase-controls {
    display: flex;
    gap: 10px;
}

.showcase-prev,
.showcase-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
    color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-prev:hover,
.showcase-next:hover {
    background: #1a1552;
    border-color: #1a1552;
    color: #fff;
}

.hero-showcase-slider {
    overflow: visible;
}

.showcase-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.showcase-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #1a1552;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 44px;
    }
    
    .hero-content {
        padding-right: 20px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-row {
        min-height: auto;
    }
    
    .hero-content {
        padding: 0;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 24px;
        font-weight: 700;
    }
    
    .hero-cta-buttons {
        justify-content: center;
    }
    
    .hero-trust-strip {
        justify-content: center;
    }
    
    .trust-divider {
        display: none;
    }
    
    .hero-service-cards {
        gap: 12px;
    }
    
    .hero-service-card {
        padding: 18px 20px;
        min-width: 120px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 100px 0 40px !important;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
        font-weight: 700;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-trust-strip {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
    }
    
    .hero-service-cards {
        gap: 10px;
    }
    
    .hero-service-card {
        flex: 1 1 45%;
        max-width: 48%;
        padding: 16px 12px;
        min-width: unset;
    }
    
    .service-card-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .hero-service-card span {
        font-size: 12px;
    }
    
    .hero-project-showcase {
        padding: 0 15px;
        margin-top: 40px;
    }
    
    .showcase-header {
        padding: 0 10px;
    }
    
    .ba-handle-circle {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        font-weight: 700;
    }
    
    .hero-service-card {
        flex: 1 1 100%;
        max-width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
        padding: 14px 18px;
    }
    
    .service-card-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        border-radius: 10px;
    }
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

/* 1. Hero Section */
.about-page-hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 50%, #ffffff 100%);
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/about/about.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.about-page-hero .container {
    position: relative;
    z-index: 2;
}

.about-page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-page-title {
    font-size: 56px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.about-page-subtitle {
    font-size: 22px;
    color: #1a1552;
    font-weight: 600;
    margin-bottom: 35px;
}

.about-page-intro p {
    font-size: 17px;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Section Titles */
.about-section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-family: var(--font-title);
}

.about-section-subtitle {
    font-size: 17px;
    color: var(--paragraph);
    max-width: 700px;
    margin: 0 auto;
}

/* 2. Who We Are */
.about-who-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0d0d0d 100%);
}

.about-who-section .about-section-title {
    color: #ffffff;
}

.about-who-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-quote-block {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-left: 4px solid rgba(99, 102, 241, 0.6);
    padding: 25px 30px;
    margin-top: 30px;
    border-radius: 0 12px 12px 0;
}

.about-quote-block i {
    color: rgba(99, 102, 241, 0.8);
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.about-quote-block p {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

.about-who-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-who-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 3. What We Do */
.about-services-section {
    background: #f8f9fa;
}

.about-service-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.about-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #1a1552;
}

.about-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a1552 0%, #2a2a6e 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-service-icon i {
    font-size: 28px;
    color: #fff;
}

.about-service-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
}

.about-services-support {
    font-size: 16px;
    color: var(--paragraph);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Cards Container */
.about-services-cards-container {
    position: relative;
    width: 100%;
}

/* Show All/Less Button (Hidden on Desktop) */
.about-services-show-more {
    display: none;
    justify-content: center;
    margin-top: 30px;
}

.about-services-show-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #1a1552;
    color: #ffffff;
    border: 2px solid #1a1552;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(26, 21, 82, 0.2);
}

.about-services-show-btn:hover {
    background: #2a2a6e;
    border-color: #2a2a6e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 21, 82, 0.3);
}

.about-services-show-btn:active {
    transform: translateY(0);
}

.about-services-btn-icon {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.about-services-cards-container.show-all .about-services-btn-icon {
    transform: rotate(180deg);
}

/* 4. Our Approach */
.about-approach-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 50%, #16213e 100%);
}

.about-approach-section .about-section-title,
.about-approach-section .about-section-subtitle {
    color: #fff;
}

.about-approach-section .about-section-subtitle {
    color: rgba(255,255,255,0.7);
}

.about-approach-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.about-approach-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--tp-theme-1, #A6A182);
    transform: translateY(-5px);
}

.approach-step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    transition: all 0.3s ease;
    font-family: var(--font-title);
    letter-spacing: -1px;
}

.about-approach-card:hover .approach-step-number {
    color: rgba(255, 255, 255, 0.5);
}

.approach-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #1a1552 0%, #2a2a6e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.approach-icon i {
    font-size: 26px;
    color: #fff;
}

.about-approach-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.about-approach-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.6;
}

.about-approach-closing {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

/* Approach Carousel Wrapper */
.about-approach-carousel-wrapper {
    position: relative;
}

.about-approach-carousel {
    overflow: visible;
}

.about-approach-carousel .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.about-approach-carousel .swiper-slide .about-approach-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

/* Desktop: Make Swiper structure work with grid */
@media (min-width: 768px) {
    .about-approach-carousel-wrapper {
        display: contents;
    }

    .about-approach-carousel {
        display: contents;
    }

    .about-approach-carousel .swiper-wrapper {
        display: contents;
    }

    .about-approach-carousel .swiper-slide {
        display: block;
    }

    .about-approach-navigation {
        display: none !important;
    }
}

/* Navigation Arrows Container - Below Cards, Centered */
.about-approach-navigation {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px 0;
    z-index: 10;
    width: auto;
    margin-top: 30px;
}

/* Navigation Arrow Buttons */
.about-approach-prev,
.about-approach-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(26, 21, 82, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
}

.about-approach-prev:hover,
.about-approach-next:hover {
    background: rgba(26, 21, 82, 1);
    border-color: rgba(59, 130, 246, 0.6);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(26, 21, 82, 0.4);
}

.about-approach-prev:active,
.about-approach-next:active {
    transform: scale(0.95);
}

.about-approach-prev i,
.about-approach-next i {
    font-size: 16px;
    color: #ffffff;
}

/* Mobile View - Show Carousel */
@media (max-width: 767px) {
    .about-approach-carousel-wrapper {
        display: block;
        padding-bottom: 0px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
    }

    .about-approach-carousel {
        display: block;
        overflow: hidden !important;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .about-approach-carousel .swiper-wrapper {
        display: flex;
        width: 100%;
    }

    .about-approach-carousel .swiper-slide {
        display: flex;
        width: 100% !important;
        flex-shrink: 0;
        min-width: 0;
        box-sizing: border-box;
    }

    .about-approach-carousel .swiper-slide .about-approach-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    /* Show navigation arrows on mobile */
    .about-approach-navigation {
        display: flex;
        position: absolute;
        bottom: -80px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 30px;
        width: auto;
        z-index: 10;
    }
}

/* 5. Why Clients Choose Us */
.about-why-section {
    background: #fff;
}

.about-why-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px 28px;
    transition: all 0.3s ease;
    height: 100%;
}

.about-why-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.about-why-card i {
    font-size: 28px;
    color: #1a1552;
    flex-shrink: 0;
}

.about-why-card span {
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-color);
}

.about-why-support {
    font-size: 18px;
    color: var(--paragraph);
}

/* Why Cards Container */
.about-why-cards-container {
    position: relative;
    width: 100%;
}

/* Show All/Less Button (Hidden on Desktop) */
.about-why-show-more {
    display: none;
    justify-content: center;
    margin-top: 30px;
}

.about-why-show-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #1a1552;
    color: #ffffff;
    border: 2px solid #1a1552;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(26, 21, 82, 0.2);
}

.about-why-show-btn:hover {
    background: #2a2a6e;
    border-color: #2a2a6e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 21, 82, 0.3);
}

.about-why-show-btn:active {
    transform: translateY(0);
}

.about-why-btn-icon {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.about-why-cards-container.show-all .about-why-btn-icon {
    transform: rotate(180deg);
}

/* ============================================
   COMPREHENSIVE MOBILE FIXES FOR ABOUT PAGE
   ============================================ */
@media (max-width: 767px) {
    /* About Page Hero Section */
    .about-page-hero {
        padding: 140px 0 60px !important;
        overflow-x: hidden;
        margin-top: 0;
    }
    
    .about-page-hero-content {
        max-width: 100%;
        padding: 31px 9px;
    }
    
    .about-page-title {
        font-size: 32px;
        line-height: 1.3;
        padding: 0 10px;
        margin-top: 0;
    }
    
    .about-page-subtitle {
        font-size: 18px;
        padding: 0 10px;
    }
    
    .about-page-intro {
        padding: 0 10px;
    }
    
    .about-page-intro p {
        font-size: 15px;
    }
    
    /* Who We Are Section */
    .about-who-section {
        overflow-x: hidden;
        padding: 60px 0;
    }
    
    .about-who-section .row {
        margin: 0;
    }
    
    .about-who-section .row > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .about-who-content {
        margin-bottom: 30px;
    }
    
    .about-who-image {
        width: 100%;
        max-width: 100%;
    }
    
    .about-who-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    /* What We Do Section - Show All/Less */
    .about-services-section {
        overflow-x: hidden;
        padding: 60px 0;
    }
    
    .about-services-cards-container {
        width: 100%;
        max-width: 100%;
    }
    
    .about-services-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .about-services-section .row > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 15px;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    /* Hide cards 4-6 initially on mobile */
    .about-service-card-hidden {
        display: none !important;
    }
    
    .about-services-cards-container.show-all .about-service-card-hidden {
        display: block !important;
    }
    
    .about-service-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Show All/Less Button on Mobile */
    .about-services-show-more {
        display: flex;
    }
    
    /* Our Approach Section */
    .about-approach-section {
        overflow-x: hidden;
        padding: 60px 0;
    }
    
    .about-approach-section .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    
    .about-section-title {
        font-size: 28px;
        padding: 0 10px;
    }
    
    .about-section-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }
    
    /* Why Clients Choose Section - Show All/Less */
    .about-why-section {
        overflow-x: hidden;
        padding: 60px 0;
    }
    
    .about-why-cards-container {
        width: 100%;
        max-width: 100%;
    }
    
    .about-why-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .about-why-section .row > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 15px;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    /* Hide cards 4-6 initially on mobile */
    .about-why-card-hidden {
        display: none !important;
    }
    
    .about-why-cards-container.show-all .about-why-card-hidden {
        display: block !important;
    }
    
    .about-why-card {
        width: 100%;
        max-width: 100%;
        padding: 20px 18px;
        margin: 0;
        box-sizing: border-box;
    }
    
    /* Show All/Less Button on Mobile */
    .about-why-show-more {
        display: flex;
    }
    
    /* Ensure all images are responsive */
    .about-who-image img,
    .about-service-card img,
    img.img-fluid {
        max-width: 100%;
        height: auto;
        width: 100%;
    }
    
    /* Fix navigation arrows positioning */
    .about-approach-navigation {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 30px;
        justify-content: center;
        width: 100%;
    }
    
    /* Ensure carousel wrapper doesn't overflow */
    .about-approach-carousel-wrapper {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Prevent any section from causing overflow */
    section[class*="about-"] {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
    }
    
    /* Fix container padding on mobile */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* 6. Serving Oklahoma */
.about-locations-section {
    background: #1a1552;
}

.about-locations-section .about-section-title {
    color: #ffffff;
}

.about-locations-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.about-locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 14px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.location-item:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.location-item i {
    color: #fff;
    font-size: 18px;
}

.location-item span {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

/* 7. Our Commitment */
.about-commitment-section {
    background: #fff;
}

.about-commitment-content {
    max-width: 800px;
    margin: 0 auto;
}

.commitment-text {
    font-size: 18px;
    color: var(--paragraph);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* 8. CTA Section */
.about-cta-section {
    background: 
        radial-gradient(circle at 20% 30%, rgba(26, 21, 82, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(13, 13, 13, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%),
        linear-gradient(135deg, #1a1552 0%, #0d0d0d 25%, #1a1a2e 50%, #0d0d0d 75%, #1a1552 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.3) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.about-cta-section .container {
    position: relative;
    z-index: 1;
}

.about-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.about-cta-text {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
}

.about-cta-btn {
    padding: 16px 40px;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-page-title {
        font-size: 42px;
    }
    
    .about-page-hero {
        padding: 140px 0 80px;
    }
    
    .about-section-title {
        font-size: 32px;
    }
    
    .about-cta-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .about-page-title {
        font-size: 32px;
    }
    
    .about-page-subtitle {
        font-size: 18px;
    }
    
    .about-page-hero {
        padding: 120px 0 60px;
    }
    
    .about-section-title {
        font-size: 28px;
    }
    
    .about-quote-block p {
        font-size: 17px;
    }
    
    .about-cta-title {
        font-size: 26px;
    }
    
    .about-locations-grid {
        justify-content: center;
    }
    
    /* Mobile: Make location items display properly */
    .about-locations-section {
        padding: 60px 0;
    }
    
    .about-locations-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .about-locations-section .row > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .about-locations-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .location-item {
        width: 100%;
        max-width: 100%;
        padding: 12px 16px;
        font-size: 14px;
        box-sizing: border-box;
        flex: 1 1 auto;
        min-width: 0;
        justify-content: center;
        text-align: center;
    }
    
    .location-item i {
        font-size: 16px;
        flex-shrink: 0;
    }
    
    .location-item span {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/*# sourceMappingURL=main.css.map */






/* ============================================
   PREMIUM MOBILE SIDEBAR STYLING
   Add this CSS to your main.css or style.css file
   ============================================ */

/* Sidebar Base Styles */
.sidebar-area.offcanvas {
    background: #0f172a;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    max-width: 340px;
    width: 100%;
    border: none;
}

/* Offcanvas Header */
.sidebar-area .offcanvas-header {
    padding: 24px 24px 20px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-area .offcanvas-header .logo {
    display: block;
    flex: 1;
}

.sidebar-area .offcanvas-header .logo img {
    max-height: 50px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.sidebar-area .offcanvas-header .btn-close {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    width: 38px;
    height: 38px;
    opacity: 1;
    position: absolute;
    right: 24px;
    top: 24px;
}

.sidebar-area .offcanvas-header .btn-close:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    transform: rotate(90deg);
    color: #ef4444;
}

.sidebar-area .offcanvas-header .btn-close:focus {
    box-shadow: none;
    outline: none;
}

/* Offcanvas Body */
.sidebar-area .offcanvas-body {
    padding: 24px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

/* About Section */
.sidebar-area .sidebar__body > div:first-child {
    margin-bottom: 28px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.sidebar-area .sidebar__body h5 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-area .sidebar__body h5::before {
    content: '';
    width: 3px;
    height: 16px;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 2px;
}

.sidebar-area .sidebar__text {
    color: rgba(203, 213, 225, 0.9);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Contact Info Section */
.sidebar__contact-info {
    margin-top: 32px;
}

.sidebar__contact-info > h5 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar__contact-info > h5::before {
    content: '';
    width: 3px;
    height: 16px;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 2px;
}

.sidebar__contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar__contact-info li {
    margin-bottom: 0;
}

.sidebar__contact-info a {
    color: #e2e8f0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(148, 163, 184, 0.08);
    position: relative;
    overflow: hidden;
}

.sidebar__contact-info a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar__contact-info a:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateX(4px);
    color: #fff;
}

.sidebar__contact-info a:hover::before {
    transform: scaleY(1);
}

.sidebar__contact-info a span {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 14px;
    font-weight: 500;
    flex: 1;
}

.sidebar__contact-info a i {
    font-size: 18px;
    color: #3b82f6;
    min-width: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sidebar__contact-info a:hover i {
    color: #60a5fa;
    transform: scale(1.1);
}

/* Fix spacing for icon inside span */
.sidebar__contact-info a span i {
    margin-right: 0;
}

/* Social Links */
.sidebar__socials {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.sidebar__socials ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.sidebar__socials li {
    margin: 0;
}

.sidebar__socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    color: #cbd5e1;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sidebar__socials li a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.sidebar__socials li a i {
    position: relative;
    z-index: 1;
}

.sidebar__socials li a:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
    color: #fff;
}

.sidebar__socials li a:hover::before {
    opacity: 1;
}

/* Mobile Menu Navigation */
.mobile-menu {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu nav ul li {
    margin: 0;
}

.mobile-menu nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: 12px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-menu nav ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu nav ul li a:hover,
.mobile-menu nav ul li a.active {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #fff;
    transform: translateX(4px);
}

.mobile-menu nav ul li a:hover::before,
.mobile-menu nav ul li a.active::before {
    transform: scaleY(1);
}

/* Mobile menu icon (optional chevron) */
.mobile-menu nav ul li a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free';
    font-weight: 300;
    font-size: 12px;
    color: rgba(203, 213, 225, 0.5);
    transition: all 0.3s ease;
}

.mobile-menu nav ul li a:hover::after {
    color: #3b82f6;
    transform: translateX(4px);
}

/* Scrollbar Styling */
.sidebar-area::-webkit-scrollbar {
    width: 5px;
}

.sidebar-area::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
}

.sidebar-area::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 10px;
}

.sidebar-area::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.5);
}

/* Backdrop Enhancement */
.offcanvas-backdrop {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.offcanvas-backdrop.show {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .sidebar-area.offcanvas {
        max-width: 300px;
    }

    .sidebar-area .offcanvas-header {
        padding: 20px 20px 16px;
    }

    .sidebar-area .offcanvas-header .btn-close {
        right: 20px;
        top: 20px;
    }

    .sidebar-area .offcanvas-body {
        padding: 20px;
    }

    .sidebar__contact-info a {
        padding: 12px 14px;
    }

    .sidebar__socials li a {
        width: 46px;
        height: 46px;
        font-size: 16px;
    }
}

/* Animation for smooth opening */
.sidebar-area.offcanvas.show {
    transform: translateX(0) !important;
}

/* Fix for Bootstrap offcanvas positioning */
.offcanvas.offcanvas-end {
    right: 0;
    border-left: none;
}

/* Remove default Bootstrap button styles */
.sidebar-area .btn-close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

/* Hide "About Us" on small screens if needed */
@media (max-width: 991px) {
    .sidebar-area .d-none.d-lg-block {
        display: block !important;
    }
}

/* Additional Polish */
.sidebar__contact-info a span::after {
    content: '';
    position: absolute;
    right: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3b82f6;
    opacity: 0;
    transition: all 0.3s ease;
}

.sidebar__contact-info a:hover span::after {
    opacity: 1;
    transform: translateX(-4px);
}

/* ============================================
   404 PAGE & THANK YOU PAGE STYLES
   ============================================ */

/* 404 Page Styles */
.error-page-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.error-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(26,21,82,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.error-page-content {
    position: relative;
    z-index: 1;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 21, 82, 0.1);
}

.error-page-icon {
    margin-bottom: 30px;
}

.error-page-icon i {
    font-size: 80px;
    color: var(--theme-color1);
    opacity: 0.9;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.error-page-title {
    font-size: 120px;
    font-weight: 700;
    color: var(--theme-color1);
    line-height: 1;
    margin-bottom: 20px;
    font-family: var(--font-title);
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(26, 21, 82, 0.1);
}

.error-page-heading {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: var(--font-title);
    letter-spacing: -0.5px;
}

.error-page-text {
    font-size: 18px;
    color: #1a1a1a;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-page-helper {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-style: italic;
}

.error-page-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-page-buttons .tp-btn-theme {
    min-width: 180px;
}

.error-page-buttons .tp-btn-border {
    min-width: 180px;
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.thank-you-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(26, 21, 82, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(26, 21, 82, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.thank-you-content {
    position: relative;
    z-index: 1;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(26, 21, 82, 0.1);
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-icon i {
    font-size: 100px;
    color: #28a745;
    animation: checkmark 0.6s ease-in-out;
    display: inline-block;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.thank-you-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--theme-color1);
    margin-bottom: 25px;
    font-family: var(--font-title);
    letter-spacing: -1px;
    line-height: 1.2;
}

.thank-you-text {
    font-size: 20px;
    color: #1a1a1a;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.thank-you-helper {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-buttons .tp-btn-theme {
    min-width: 200px;
}

.thank-you-buttons .tp-btn-border {
    min-width: 200px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .error-page-section,
    .thank-you-section {
        padding: 80px 0;
        min-height: calc(100vh - 150px);
    }

    .error-page-content,
    .thank-you-content {
        padding: 50px 30px;
    }

    .error-page-title {
        font-size: 90px;
    }

    .error-page-heading {
        font-size: 36px;
    }

    .thank-you-title {
        font-size: 48px;
    }

    .error-page-icon i {
        font-size: 60px;
    }

    .thank-you-icon i {
        font-size: 80px;
    }
}

@media (max-width: 767px) {
    .error-page-section,
    .thank-you-section {
        padding: 60px 0;
    }

    .error-page-content,
    .thank-you-content {
        padding: 40px 25px;
        border-radius: 15px;
    }

    .error-page-title {
        font-size: 70px;
    }

    .error-page-heading {
        font-size: 28px;
    }

    .error-page-text {
        font-size: 16px;
    }

    .error-page-helper {
        font-size: 14px;
    }

    .thank-you-title {
        font-size: 38px;
    }

    .thank-you-text {
        font-size: 18px;
    }

    .thank-you-helper {
        font-size: 15px;
    }

    .error-page-icon i {
        font-size: 50px;
    }

    .thank-you-icon i {
        font-size: 70px;
    }

    .error-page-buttons,
    .thank-you-buttons {
        flex-direction: column;
        width: 100%;
    }

    .error-page-buttons .tp-btn-theme,
    .error-page-buttons .tp-btn-border,
    .thank-you-buttons .tp-btn-theme,
    .thank-you-buttons .tp-btn-border {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 575px) {
    .error-page-title {
        font-size: 60px;
    }

    .error-page-heading {
        font-size: 24px;
    }

    .thank-you-title {
        font-size: 32px;
    }
}
.rc__post-thumb.mr-20 a{
	width:90px;
	height:100%;
}


