/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&amp;family=Plus+Jakarta+Sans:wght@400;500;600;700&amp;display=swap");
/* -----------------------------------------
    Variables CSS
----------------------------------------- */
:root {
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-icon: "Font Awesome 5 Pro";
  --font-base: 16px;
  --font-sm: 14px;
  --font-xsm: 12px;
  --font-lg: 18px;
  --font-normal: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-size--h1: 54px;
  --font-size--h2: 42px;
  --font-size--h3: 32px;
  --font-size--h4: 24px;
  --font-size--h5: 20px;
  --font-size--h6: 18px;
  --color-primary: #4F5AE4;
  --color-red: #EB4C4C;
  --color-green: #00B67A;
  --color-blue: #0061DF;
  --color-cyan: #21C4DF;
  --color-pink: #FF7294;
  --color-purple: #6231F0;
  --color-yellow: #FFC107;
  --color-orange: #F59872;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark: #12142a;
  --color-light: #dcdcdc;
  --color-medium: #747474;
  --color-primary-rgb: 79, 90, 228;
  --color-red-rgb: 235, 76, 76;
  --color-green-rgb: 0, 182, 122;
  --color-blue-rgb: 0, 97, 223;
  --color-cyan-rgb: 33, 196, 223;
  --color-pink-rgb: 255, 114, 148;
  --color-purple-rgb: 98, 49, 240;
  --color-yellow-rgb: 253, 192, 64;
  --color-orange-rgb: 245, 152, 114;
  --color-white-rgb: 255, 255, 255;
  --color-black-rgb: 0,0,0;
  --color-dark-rgb: 10, 11, 28;
  --color-medium-rgb: 141, 141, 141;
  --color-light-rgb: 242, 242, 242;
  --border-color: #e8e8e8;
  --border-color-2: #a7a7a7;
  --text-dark: var(--color-dark);
  --text-medium: var(--color-medium);
  --text-white: var(--color-white);
  --text-light: var(--color-light);
  --bg-1: #F3F3F3;
  --bg-2: #F8F8F8;
  --bg-white: var(--color-white);
  --bg-dark: var(--color-dark);
  --bg-primary-light: rgba(var(--color-primary-rgb), .05);
  --gradient-1: linear-gradient(135deg, rgba(var(--color-white-rgb), .4) 0%, var(--color-primary) 100%);
  --shadow-md: 0 5px 30px -5px rgb(8, 0, 42, .08);
  --shadow-round: 0 10px 30px -5px rgb(8, 0, 42, .08);
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-xl: 15px;
  --radius-lg: 20px;
}

/* margin CSS*/
.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

/* Padding CSS*/
.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-120 {
  padding-bottom: 120px;
}

.px-60 {
  padding-inline: 60px;
}

.px-30 {
  padding-inline: 20px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.ptb-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.ptb-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.ptb-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.ptb-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.ptb-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.p-15 {
  padding: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-25 {
  padding: 25px !important;
}

.p-30 {
  padding: 30px !important;
}

.p-40 {
  padding: 40px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.spacer-x {
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
}
.spacer-x .swiper-slide {
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}

.pxy-center {
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

/* Border */
.border,
.border-top,
.border-bottom,
.border-end,
.border-start {
  border-color: var(--border-color) !important;
}

/* Border Radius */
.radius-0 {
  border-radius: 0 !important;
}

.radius-sm {
  border-radius: var(--radius-sm) !important;
}

.radius-md {
  border-radius: var(--radius-md) !important;
}

.radius-lg {
  border-radius: var(--radius-lg) !important;
}

.radius-xl {
  border-radius: var(--radius-xl) !important;
}

.opacity-1 {
  opacity: 1 !important;
}

.opacity-65 {
  opacity: 0.65 !important;
}

.opacity-80 {
  opacity: 0.8 !important;
}

.opacity-85 {
  opacity: 0.85 !important;
}

.opacity-90 {
  opacity: 0.9 !important;
}

.mw-75 {
  max-width: 75%;
}

.mw-80 {
  max-width: 80%;
}

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

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

:is(.lc-1, .lc-2, .lc-3) {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.lc-1 {
  -webkit-line-clamp: 1 !important;
  line-clamp: 1 !important;
}

.lc-2 {
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
}

.lc-3 {
  -webkit-line-clamp: 3 !important;
  line-clamp: 3 !important;
}

.gap-15 {
  gap: 15px !important;
}

.gap-20 {
  gap: 20px !important;
}

.gap-25 {
  gap: 25px !important;
}

/* Tooltip CSS */
.tooltip {
  --bs-tooltip-bg: var(--color-dark);
  --bs-tooltip-padding-x: 10px;
  --bs-tooltip-padding-y: 5px;
  --bs-tooltip-font-size: var(--font-xsm) ;
}

.no-animation {
  transform: none;
  -webkit-animation: none;
          animation: none;
}

/* Badge CSS */
.badge {
  padding: 8px 14px;
  font-size: var(--font-xsm);
  font-weight: var(--font-medium);
}
.badge.bg-success {
  color: var(--color-green);
  background: rgba(var(--color-green-rgb), 0.2) !important;
}
.badge.bg-info {
  color: var(--color-blue);
  background: rgba(var(--color-blue-rgb), 0.2) !important;
}
.badge.bg-danger {
  color: var(--color-red);
  background: rgba(var(--color-red-rgb), 0.2) !important;
}
.badge.bg-warning {
  color: var(--color-yellow);
  background: rgba(var(--color-yellow), 0.2) !important;
}

/* Card CSS */
.card {
  --bs-card-bg: var(--bg-white);
  border: none;
  border-radius: 10px;
}
.card .card-title {
  margin-bottom: 20px;
}
.card .card-text {
  color: var(--text-medium);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-black);
  opacity: 0.4;
  z-index: -1;
}

.lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: -1;
}
.lines .line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background: var(--border-color);
}
.lines .line:nth-child(1) {
  margin-left: -40%;
}
.lines .line:nth-child(1)::after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.lines .line:nth-child(2) {
  margin-left: -20%;
}
.lines .line:nth-child(2)::after {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.lines .line:nth-child(4) {
  margin-left: 20%;
}
.lines .line:nth-child(4)::after {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.lines .line:nth-child(5) {
  margin-left: 40%;
}
.lines .line:nth-child(5)::after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.lines .line::after {
  content: "";
  display: block;
  position: absolute;
  height: 30px;
  width: 2px;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(var(--color-primary-rgb), 0) 0%, var(--color-secondary) 70%, var(--color-primary) 100%);
  -webkit-animation: run 5s 0s infinite;
          animation: run 5s 0s infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
          animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.bg-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hidden {
  overflow: hidden;
  display: none;
  visibility: hidden;
}

.progress {
  height: 10px;
  border-radius: 30px;
}
.progress .progress-bar {
  border-radius: 30px;
  background: var(--color-primary);
}

.click-show {
  position: relative;
  overflow: hidden;
  max-height: 120px;
}
.click-show::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.001) 60%);
  transition: all 0.4s ease-out;
}

.click-show.show {
  max-height: 100% !important;
}
.click-show.show::after {
  opacity: 0;
}

.read-more-btn {
  color: #1F1F26;
  cursor: pointer;
  font-weight: var(--font-medium);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

ul.list-bullet {
  list-style-type: disc !important;
}
ul.list-bullet li {
  list-style-type: disc !important;
}

@media (min-width: 576px) {
  .fluid-left {
    -webkit-padding-start: calc((100vw - 540px) / 2);
            padding-inline-start: calc((100vw - 540px) / 2);
    -webkit-padding-end: calc((100vw - 540px) / 2);
            padding-inline-end: calc((100vw - 540px) / 2);
  }
  .fluid-right {
    -webkit-padding-start: calc((100vw - 540px) / 2);
            padding-inline-start: calc((100vw - 540px) / 2);
    -webkit-padding-end: calc((100vw - 540px) / 2);
            padding-inline-end: calc((100vw - 540px) / 2);
  }
  .border-sm-end {
    -webkit-border-end: 1px solid var(--border-color);
            border-inline-end: 1px solid var(--border-color);
  }
}
@media (min-width: 768px) {
  .fluid-left {
    -webkit-padding-start: calc((100vw - 720px) / 2);
            padding-inline-start: calc((100vw - 720px) / 2);
    -webkit-padding-end: 0;
            padding-inline-end: 0;
  }
  .fluid-right {
    -webkit-padding-end: calc((100vw - 720px) / 2);
            padding-inline-end: calc((100vw - 720px) / 2);
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}
@media (min-width: 992px) {
  .img-left {
    -webkit-margin-start: -60px;
            margin-inline-start: -60px;
  }
  .img-right {
    -webkit-margin-end: -60px;
            margin-inline-end: -60px;
  }
  .fluid-left {
    -webkit-padding-start: calc((100vw - 960px) / 2);
            padding-inline-start: calc((100vw - 960px) / 2);
    -webkit-padding-end: 0;
            padding-inline-end: 0;
  }
  .fluid-right {
    -webkit-padding-end: calc((100vw - 960px) / 2);
            padding-inline-end: calc((100vw - 960px) / 2);
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
  .position-lg-absolute {
    position: absolute !important;
  }
  .border-lg-end {
    -webkit-border-end: 1px solid var(--border-color);
            border-inline-end: 1px solid var(--border-color);
  }
}
@media (min-width: 1200px) {
  .img-left {
    -webkit-margin-start: -100px;
            margin-inline-start: -100px;
  }
  .img-right {
    -webkit-margin-end: -100px;
            margin-inline-end: -100px;
  }
  .fluid-left {
    -webkit-padding-start: calc((100vw - 1140px) / 2);
            padding-inline-start: calc((100vw - 1140px) / 2);
  }
  .fluid-right {
    -webkit-padding-end: calc((100vw - 1140px) / 2);
            padding-inline-end: calc((100vw - 1140px) / 2);
  }
  .container-custom {
    max-width: 1440px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
  .fluid-left {
    -webkit-padding-start: calc((100vw - 1200px) / 2);
            padding-inline-start: calc((100vw - 1200px) / 2);
  }
  .fluid-right {
    -webkit-padding-end: calc((100vw - 1200px) / 2);
            padding-inline-end: calc((100vw - 1200px) / 2);
  }
  .col-xxl-5th {
    width: 20%;
  }
}
.bg-s-contain {
  background-repeat: no-repeat;
  background-size: contain !important;
}

.bg-a-fixed {
  background-attachment: fixed;
}

.clients-avatar {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.clients-avatar .client-img {
  z-index: 1;
  position: relative;
}
.clients-avatar .client-img img {
  max-width: 40px;
  border-radius: 50%;
  border: 3px solid var(--colo-white);
}
.clients-avatar .client-img img:not(:first-child) {
  -webkit-margin-start: -16px;
          margin-inline-start: -16px;
}
.clients-avatar .client-img span {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: var(--text-white);
  -webkit-margin-start: -16px;
          margin-inline-start: -16px;
  border: 3px solid var(--colo-white);
  z-index: 2;
  font-size: var(--font-xsm);
  background-color: var(--color-primary);
}

.quantity-input {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.quantity-input .btn {
  padding: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
}
.quantity-input .h3, .quantity-input .h2, .quantity-input .h4 {
  line-height: 1;
  margin-bottom: 0;
}
.quantity-input input {
  height: 40px;
  width: 60px;
  text-align: center;
  border: 1px solid var(--border-color);
  background-color: transparent;
}

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

/* -----------------------------------------
    Typography CSS
----------------------------------------- */
body {
  font-family: var(--font-body);
  font-size: var(--font-base);
  font-weight: var(--font-regular);
  color: var(--text-medium);
  overflow-x: hidden;
  background-color: var(--bg-white);
}

a {
  color: var(--text-dark);
  text-decoration: none;
  outline: 0 !important;
  transition: all 0.3s ease-out;
}
a:hover {
  color: var(--color-primary);
}
a.hover-primary:hover {
  color: var(--color-primary) !important;
}

.color-primary a {
  color: inherit;
}

:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) a {
  color: inherit;
}
:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) a:hover {
  color: var(--color-primary);
}

:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

:is(.h1, .h2, .h3, .h4, .h5, .h6) {
  display: block;
}

:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: var(--font-bold);
  line-height: 1.3;
}

h1 {
  font-size: var(--font-size--h1);
}

h2, .h2 {
  font-size: var(--font-size--h2);
}

h3, .h3 {
  font-size: var(--font-size--h3);
}

h4, .h4 {
  font-size: var(--font-size--h4);
}

h5, .h5 {
  font-size: var(--font-size--h5);
}

h6, .h6 {
  font-size: var(--font-size--h6);
}

p, .text, .card-text {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 15px;
}
p:last-child, .text:last-child, .card-text:last-child {
  margin-bottom: 0;
}

p:last-child {
  margin-bottom: 0 !important;
}

.font-lg {
  font-size: var(--font-lg) !important;
}

.font-sm {
  font-size: var(--font-sm) !important;
}

.font-xsm {
  font-size: var(--font-xsm) !important;
}

.font-medium {
  font-weight: var(--font-medium);
}

.font-bold {
  font-weight: var(--font-bold);
}

b {
  font-weight: 500;
}

i[class^=flaticon-]:before, i[class*=" flaticon-"]:before {
  line-height: inherit;
}

/* -----------------------------------------
    Reset CSS
----------------------------------------- */
:focus {
  outline: none;
}

img {
  max-width: 100%;
}

.form-control:focus {
  box-shadow: none;
}

ul {
  padding: 0;
}

figure,
blockquote,
ul {
  margin-bottom: 0;
}

table, th, td {
  vertical-align: middle;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: var(--text-light);
}

::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background: rgba(var(--color-dark-rgb), 0.2);
}

/* -----------------------------------------
	Color CSS
----------------------------------------- */
/* Theme Color CSS */
.theme-color-1 {
  --color-primary: #4F5AE4;
  --color-primary-rgb: 79, 90, 228;
}

.theme-color-2 {
  --color-primary: #FF7043;
  --color-primary-rgb: 255, 112, 67;
}

.theme-color-3 {
  --color-primary: #F79B22;
  --color-secondary: #DE4313;
  --color-primary-rgb: 247, 155, 34;
  --gradient-1: linear-gradient(145deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.theme-color-4 {
  --color-primary: #FC6767;
  --color-secondary: #EC008C;
  --color-primary-rgb: 252, 103, 103;
  --gradient-1: linear-gradient(145deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.theme-color-5 {
  --color-primary: #737af2;
  --color-secondary: #f72b86;
  --color-primary-rgb: 115, 122, 242;
  --color-secondary-rgb: 247, 43, 134;
  --gradient-1: linear-gradient(145deg, rgba(var(--color-secondary-rgb), .2) 0%, var(--color-primary) 60%);
}

.theme-color-6 {
  --color-primary: #7e4efe;
  --color-secondary: #50DD9D;
  --color-primary-rgb: 126, 78, 254;
  --color-secondary-rgb: 80, 221, 157;
}

/* Color CSS */
.color-primary {
  color: var(--color-primary) !important;
}

.color-white {
  color: var(--text-white) !important;
}

.color-light {
  color: var(--text-light) !important;
}

.color-dark {
  color: var(--color-dark) !important;
}

.color-medium {
  color: var(--text-medium) !important;
}

.color-blue {
  color: var(--color-blue) !important;
}

.color-green {
  color: var(--color-green) !important;
}

.color-red {
  color: var(--color-red) !important;
}

.color-yellow {
  color: var(--color-yellow) !important;
}

.color-purple {
  color: var(--color-primary) !important;
}

.color-orange {
  color: var(--color-orange) !important;
}

.bg-primary {
  background-color: var(--color-primary) !important;
}

.bg-primary-light {
  --bg-primary-light: rgba(var(--color-primary-rgb), .05);
  background-color: var(--bg-primary-light) !important;
}

.bg-secondary {
  background-color: var(--color-secondary) !important;
}

.bg-secondary-light {
  --bg-secondary-light: rgba(var(--color-secondary-rgb), .05);
  background-color: var(--bg-secondary-light) !important;
}

.bg-white {
  background-color: var(--bg-white) !important;
}

.bg-light {
  background-color: var(--bg-1) !important;
}

.bg-light-2 {
  background-color: var(--bg-2) !important;
}

.bg-dark {
  background-color: var(--color-dark) !important;
}

.bg-gradient {
  background-image: var(--gradient-1) !important;
}

.border-primary {
  border-color: var(--color-primary) !important;
}

.text-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-none {
  background-color: transparent !important;
  background: transparent !important;
}

.fill-primary {
  fill: var(--color-primary) !important;
}

.stroke-primary {
  stroke: var(--color-primary) !important;
}

.fill-primary-light {
  fill: var(--color-primary) !important;
  filter: contrast(30%);
}

.fill-dark {
  fill: var(--color-primary) !important;
  filter: brightness(50%);
}

/* -----------------------------------------
    Button CSS
----------------------------------------- */
button, .btn {
  cursor: pointer;
  border: none;
  background: inherit;
}
button:focus, button:active, .btn:focus, .btn:active {
  outline: none;
  box-shadow: none;
}
button:hover, .btn:hover {
  outline: none;
}

.btn {
  position: relative;
  overflow: hidden;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 0;
  letter-spacing: 0.05em;
  font-weight: var(--font-medium);
  z-index: 1;
  transition: all 0.3s ease-out;
}

.icon-start i {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.icon-end i {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}

.btn-lg {
  padding: 14px 34px;
  border-radius: 7px;
}

.btn-md {
  padding: 10px 24px;
  font-size: var(--font-sm);
  border-radius: 5px;
}

.btn-sm {
  padding: 6px 14px;
  font-size: var(--font-xsm);
  border-radius: 5px;
}
.btn-sm.btn-icon {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

.btn-primary {
  color: var(--text-white);
  background-color: var(--color-primary);
  transition: all 0.3s ease-out;
  box-shadow: 0 10px 30px -7px rgba(var(--color-primary-rgb), 0.5);
}
.btn-primary::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  content: "";
  background: var(--bg-dark);
  border-radius: 50%;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  z-index: -1;
}
.btn-primary:hover {
  color: var(--text-white);
  background-color: var(--color-primary);
  transform: translateY(-3px);
}
.btn-primary:hover::before {
  transform: translateY(0) scale(2);
}

.btn-gradient::before {
  background-image: var(--gradient-1);
}

.btn-fancy {
  border-radius: 15px 0 15px 0;
}

.btn.no-animation {
  transform: none;
  -webkit-animation: none;
          animation: none;
  background-color: var(--color-primary);
}
.btn.no-animation::before, .btn.no-animation::after {
  content: none;
}

.btn-danger {
  border: 1px solid var(--color-red);
  background-color: var(--color-red);
  transition: background 0.3s ease-out;
}
.btn-danger:hover {
  border-color: var(--color-red);
  background-color: var(--color-red);
}

.btn-outline {
  color: var(--color-primary);
  background: var(--color-white);
  border: 1px solid var(--color-primary);
}
.btn-outline:hover {
  color: var(--color-primary);
}

.btn-outline-2 {
  color: var(--text-dark);
  background: var(--color-white);
  border: 1px solid var(--border-color);
}
.btn-outline-2:hover {
  color: var(--color-primary);
}

.btn-img {
  padding: 0;
  border: 1px solid var(--border-color-2);
  background-color: transparent !important;
}
.btn-img img {
  max-width: 150px;
}
.btn-img.size-sm img {
  max-width: 120px;
}
.btn-img:hover {
  border-color: var(--border-color-2) !important;
}

.btn-groups {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.btn-remove {
  padding: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  padding: 0;
  background: rgba(var(--color-primary-rgb), 0.12) !important;
  color: var(--color-primary) !important;
}

.btn-text {
  line-height: 1;
  color: var(--text-dark);
  font-size: var(--font-sm);
  font-weight: 500;
}
.btn-text:hover {
  color: var(--color-primary) !important;
}

.btn-tag {
  display: inline-block;
  padding: 10px 24px;
  font-size: var(--font-sm);
  border-radius: 50px;
  background: var(--bg-1);
  color: var(--text-dark);
  margin-bottom: 10px;
}
.btn-tag:not(:last-child) {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.btn-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-align: center;
}
.btn-icon:hover {
  border-color: transparent;
  color: var(--text-white);
  background-color: var(--color-primary);
}

.btn-icon-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  --size: 30px;
}
.btn-icon-text span {
  font-weight: var(--font-medium);
}
.btn-icon-text i {
  width: var(--size);
  height: var(--size);
  line-height: var(--size);
  text-align: center;
  background-color: var(--color-primary);
  font-size: 14px;
  border-radius: 50%;
  color: var(--text-white);
  box-shadow: 0px 14px 20px 5px rgba(var(--color-primary-rgb), 0.1);
}

button.mfp-close {
  display: inline-block;
  width: 35px !important;
  height: 35px;
  line-height: 35px;
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  opacity: 1;
  right: 0 !important;
  padding: 0 !important;
  text-align: center !important;
}

.disabled {
  border: none;
  background: var(--color-dark) !important;
  cursor: not-allowed !important;
  pointer-events: initial !important;
}

/* Video Btn CSS */
.video-btn {
  --size: 75px;
  position: relative;
  width: var(--size);
  height: var(--size);
  padding: 0;
  font-size: 22px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--color-primary);
  background-color: var(--bg-white);
}
.video-btn:hover {
  background-color: var(--color-primary);
  color: var(--text-white);
}
.video-btn::after {
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  -webkit-animation: ripple 3s infinite;
          animation: ripple 3s infinite;
  background-color: var(--bg-white);
  border-radius: 50%;
  z-index: -2;
}
.video-btn::before {
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  -webkit-animation: ripple 3s 0.9s infinite;
          animation: ripple 3s 0.9s infinite;
  background-color: var(--bg-white);
  border-radius: 50%;
  z-index: -1;
}
.video-btn-sm {
  --size: 50px;
  font-size: var(--font-sm);
}
.video-btn-sm::before, .video-btn-sm::after {
  -webkit-animation-name: ripple2;
          animation-name: ripple2;
}
.video-btn.p-absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.video-btn-text {
  --size: auto;
  border: none;
  gap: 10px;
}
.video-btn-text::before, .video-btn-text::after {
  content: none;
}
.video-btn-text i {
  --size: 45px;
  position: relative;
  width: var(--size);
  height: var(--size);
  padding: 0;
  font-size: 16px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--color-primary);
  background-color: var(--bg-white);
  border: 1px solid var(--color-primary);
}
.video-btn-text span {
  color: var(--text-medium);
}
.video-btn-text:hover {
  background-color: transparent;
  color: var(--color-primary);
}
.video-btn-text:hover span {
  color: var(--color-primary);
}

.show-more-btn {
  --size: auto;
  cursor: pointer;
  color: var(--color-primary);
  border: 0;
}

/* -----------------------------------------
    Form CSS
----------------------------------------- */
.form-control {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  -webkit-padding-start: 18px;
          padding-inline-start: 18px;
  font-size: 14px;
  color: var(--text-medium);
  transition: border-color 0.4s;
}
.form-control:focus {
  color: var(--text-dark);
  background-color: transparent;
}
.form-control.color-white::-moz-placeholder {
  color: var(--color-white) !important;
}
.form-control.color-white:-ms-input-placeholder {
  color: var(--color-white) !important;
}
.form-control.color-white::placeholder {
  color: var(--color-white) !important;
}

:is(input:not([type=radio], [type=checkbox]), textarea, .nice-select):is(:focus, :visited, :focus-within, :focus-visible) {
  border-color: #5961F9 !important;
}

select.form-select {
  background-size: 8px !important;
}

textarea {
  height: auto;
  line-height: 1.7;
  padding: 15px 18px 18px;
}

textarea.form-control {
  min-height: 200px;
  line-height: 1.7;
  padding: 15px 18px 18px;
}

textarea::-moz-placeholder {
  font-size: var(--font-base);
}

textarea:-ms-input-placeholder {
  font-size: var(--font-base);
}

textarea::placeholder {
  font-size: var(--font-base);
}

::-moz-placeholder {
  color: var(--color-medium) !important;
}

:-ms-input-placeholder {
  color: var(--color-medium) !important;
}

::placeholder {
  color: var(--color-medium) !important;
}

.custom-radio .form-radio-label {
  position: relative;
  cursor: pointer;
  position: relative;
  cursor: pointer;
  padding: 0;
  vertical-align: middle;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
}
.custom-radio .form-radio-label::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 12px;
  width: 12px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
}
.custom-radio input[type=radio]:checked + .form-radio-label::after {
  opacity: 1;
}
.custom-radio input[type=radio] + .form-radio-label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
  opacity: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
  transition: all 0.2s ease-out;
}
.custom-radio .input-radio {
  display: none;
}

.custom-checkbox .form-check-label {
  position: relative;
  cursor: pointer;
  position: relative;
  cursor: pointer;
  padding: 0;
  vertical-align: middle;
  -webkit-padding-start: 22px;
          padding-inline-start: 22px;
}
.custom-checkbox .form-check-label::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 15px;
  width: 15px;
  border: 1px solid var(--color-primary);
  border-radius: 2px;
}
.custom-checkbox input[type=checkbox]:checked + .form-check-label::after {
  opacity: 1;
}
.custom-checkbox input[type=checkbox] + .form-check-label::after {
  content: "";
  width: 11px;
  position: absolute;
  top: 50%;
  left: 2px;
  opacity: 0;
  height: 5px;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: translateY(-65%) rotate(-45deg);
  transition: all 0.2s ease-out;
}
.custom-checkbox .input-checkbox {
  display: none;
}

input[type=checkbox]:checked + .form-check-label::before,
input[type=radio]:checked + .form-check-label::before {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
input[type=checkbox]:checked + .form-check-label::after,
input[type=radio]:checked + .form-check-label::after {
  opacity: 1;
}

.form-group,
.input-group {
  position: relative;
}
.form-group.icon-end label,
.input-group.icon-end label {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  width: 18px;
  font-size: var(--font-sm);
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  transform: translateY(-50%);
}
.form-group.icon-start .form-control,
.input-group.icon-start .form-control {
  -webkit-padding-start: 44px;
          padding-inline-start: 44px;
}
.form-group.icon-start .icon,
.input-group.icon-start .icon {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  width: 18px;
  font-size: var(--font-sm);
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  -webkit-margin-start: 20px !important;
          margin-inline-start: 20px !important;
  transform: translateY(-50%);
  z-index: 1;
}
.form-group.icon-start input[type=number],
.input-group.icon-start input[type=number] {
  text-align: right;
  -webkit-padding-end: 10px;
          padding-inline-end: 10px;
}

.input-inline {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-inline .form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  padding: 15px 25px;
  background-color: var(--bg-white);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.input-inline .btn {
  -webkit-margin-start: -1px;
          margin-inline-start: -1px;
  position: relative;
  z-index: 2;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.show-password-field {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.show-password-field .show-icon {
  font-family: var(--font-icon);
  font-style: normal;
}
.show-password-field .show-icon::before {
  content: "\f06e";
}
.show-password-field .show-icon.show::before {
  content: "\f070";
}

.search-form {
  display: flex;
  padding: 6px 5px 6px 15px;
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
  border: 1px solid var(--border-color);
}
.search-form .search-input {
  display: block;
  width: 100%;
  border: none;
  outline: 0;
  height: 40px;
  line-height: 40px;
  border-radius: 5px 0 0 5px;
  background: transparent;
}
.search-form .btn-search {
  text-align: center;
  height: 40px;
  width: 40px;
  line-height: 40px;
  color: var(--text-medium);
  background: var(--color-white);
}

.file-upload {
  position: relative;
  line-height: 100px;
  text-align: center;
}

.file-upload-input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.faq-form textarea.form-control {
  min-height: 150px;
}
.faq-form :focus {
  color: var(--text-dark);
  background-color: var(--bg-white);
}

/* -----------------------------------------
Lazyload CSS
----------------------------------------- */
.lazy-container {
  position: relative;
  overflow: hidden;
  display: table;
  table-layout: fixed;
  width: 100%;
  background-color: var(--bg-1);
  z-index: 1;
}
.lazy-container::after {
  position: absolute;
  content: "\f03e";
  font-family: "Font Awesome 5 Pro";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  font-size: 25px;
  color: var(--text-medium);
  z-index: -1;
}
.lazy-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  max-width: 100%;
  min-width: 100%;
  max-height: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lazy-container img.lazy-load {
  filter: blur(5px);
  transition: filter 400ms;
}
.lazy-container img.lazyloaded {
  filter: blur(0);
}

.ratio::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.ratio.ratio-1-1::before {
  padding-bottom: 100%;
}
.ratio.ratio-1-2::before {
  padding-bottom: 114%;
}
.ratio.ratio-1-3::before {
  padding-bottom: 126.14%;
}
.ratio.ratio-2-3::before {
  padding-bottom: 66.67%;
}
.ratio.ratio-16-11::before {
  padding-bottom: 53.57%;
}
.ratio.ratio-16-8::before {
  padding-bottom: 50%;
}
.ratio.ratio-21-9::before {
  padding-bottom: 42.85%;
}
.ratio.ratio-21-8::before {
  padding-bottom: 38.0952380952%;
}
.ratio.ratio-5-3::before {
  padding-bottom: 60%;
}
.ratio.ratio-5-4::before {
  padding-bottom: 80%;
}
.ratio.ratio-4-3::before {
  padding-bottom: 133.3333333333%;
}
.ratio.ratio-3-4::before {
  padding-bottom: 75%;
}
.ratio.ratio-vertical::before {
  padding-bottom: 164%;
}

.blur-up {
  filter: blur(5px);
  transition: filter 400ms;
}

.lazyloaded.blur-up {
  filter: blur(0);
}

/* -----------------------------------------
    Nice Select CSS
----------------------------------------- */
.nice-select {
  float: unset;
  font-weight: var(--font-medium);
  padding-left: 0;
  padding-right: 0;
  -webkit-padding-start: 18px;
          padding-inline-start: 18px;
  -webkit-padding-end: 30px;
          padding-inline-end: 30px;
}
.nice-select:after {
  right: 0;
  left: 0;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}
.nice-select.form-control:after {
  -webkit-margin-end: 12px;
          margin-inline-end: 12px;
}
.nice-select .list {
  z-index: 777;
}
.nice-select.open .list {
  width: 100%;
  opacity: 1;
  pointer-events: auto;
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.nice-select .option {
  display: block;
  font-weight: 500;
  -webkit-border-start: 2px solid transparent;
          border-inline-start: 2px solid transparent;
}
.nice-select .option:is(:hover, .focus, .selected.focus) {
  background-color: var(--bg-1);
}
.nice-select .option.selected {
  font-weight: 500;
  color: var(--color-primary) !important;
  border-color: var(--color-primary);
}

/* -----------------------------------------
  	Preloader CSS
----------------------------------------- */
#preLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1000;
  background-color: var(--color-primary);
}
#preLoader .loader {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: block;
  margin: 15px auto;
  position: relative;
  left: -100px;
  box-sizing: border-box;
  -webkit-animation: shadowRolling 2s linear infinite;
          animation: shadowRolling 2s linear infinite;
}
@-webkit-keyframes shadowRolling {
  0% {
    box-shadow: 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
  }
  12% {
    box-shadow: 100px 0 white, 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
  }
  25% {
    box-shadow: 110px 0 white, 100px 0 white, 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
  }
  36% {
    box-shadow: 120px 0 white, 110px 0 white, 100px 0 white, 0px 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 130px 0 white, 120px 0 white, 110px 0 white, 100px 0 white;
  }
  62% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 130px 0 white, 120px 0 white, 110px 0 white;
  }
  75% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 130px 0 white, 120px 0 white;
  }
  87% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 130px 0 white;
  }
  100% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0);
  }
}
@keyframes shadowRolling {
  0% {
    box-shadow: 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
  }
  12% {
    box-shadow: 100px 0 white, 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
  }
  25% {
    box-shadow: 110px 0 white, 100px 0 white, 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
  }
  36% {
    box-shadow: 120px 0 white, 110px 0 white, 100px 0 white, 0px 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 130px 0 white, 120px 0 white, 110px 0 white, 100px 0 white;
  }
  62% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 130px 0 white, 120px 0 white, 110px 0 white;
  }
  75% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 130px 0 white, 120px 0 white;
  }
  87% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 130px 0 white;
  }
  100% {
    box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0);
  }
}

/* -----------------------------------------
    Swiper Slider CSS
----------------------------------------- */
.swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.swiper-wrapper {
  -webkit-transform-style: preserve-3d;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 30px;
  opacity: 1;
  background-color: var(--color-primary);
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
}
.swiper-pagination .swiper-pagination-bullet-active {
  width: 16px;
}
.swiper-pagination .swiper-pagination-bullet-active, .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: var(--color-primary);
  opacity: 1;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  line-height: 1;
  bottom: 0;
}

.slider-navigation {
  z-index: 3;
}
.slider-navigation .slider-btn {
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 5px;
  background-color: var(--color-primary);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: var(--text-white);
  font-size: 24px;
  transition: all 0.3s ease-out;
}
.slider-navigation .slider-btn:last-child {
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}
.slider-navigation .slider-btn i {
  transition: transform 0.3s ease-out;
}
.slider-navigation .slider-btn.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.slider-navigation .slider-btn.btn-outline:hover {
  color: var(--text-white);
  background: var(--color-primary);
}
.slider-navigation .slider-btn:disabled {
  cursor: not-allowed;
}
.slider-navigation.position-middle .slider-btn {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(var(--color-white-rgb), 0.2);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.slider-navigation.position-middle .slider-btn.slider-btn-prev {
  left: 0%;
}
.slider-navigation.position-middle .slider-btn.slider-btn-next {
  right: 0%;
}

.swiper-lazy {
  background-color: var(--text-light);
}

.swiper-lazy-loaded.blur-up {
  filter: blur(0);
}

/* -----------------------------------------
    Nav Tabs CSS
----------------------------------------- */
.tab-switch .text {
  color: var(--text-dark);
  font-weight: var(--font-medium);
}
.tab-switch .text.active {
  color: var(--color-primary);
}
.tab-switch .tab-switch-toggle {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 28px;
  margin: 0 10px;
}
.tab-switch .tab-switch-toggle .switch-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  background-color: var(--color-primary);
  transition: 0.4s;
}
.tab-switch .tab-switch-toggle .switch-toggle-slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 5px;
  bottom: 5px;
  border-radius: 50%;
  background-color: var(--bg-white);
  transition: 0.4s;
}
.tab-switch .tab-switch-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.tab-switch .tab-switch-toggle input:checked + .switch-toggle-slider {
  background-color: var(--color-primary);
}
.tab-switch .tab-switch-toggle input:checked + .switch-toggle-slider::before {
  transform: translateX(37px);
}

/* -----------------------------------------
  	Go top CSS
----------------------------------------- */
.go-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 3%;
  right: 0;
  width: 40px;
  height: 40px;
  opacity: 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-white);
  font-size: 28px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background-color: var(--color-primary);
  transition: 0.4s;
  transform: translateX(15%);
  z-index: 100;
}
.go-top.active {
  opacity: 1;
  transform: none;
}
.go-top:hover {
  transform: translateY(-3px);
}

/* -----------------------------------------
    Title CSS
----------------------------------------- */
.section-title .title {
  margin-bottom: 0;
  margin-top: -10px;
}
.section-title .title span {
  color: var(--color-primary);
}
.section-title .subtitle {
  font-size: var(--font-lg);
  font-weight: var(--font-medium);
  display: inline-block;
  margin-bottom: 5px;
}
.section-title.title-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.section-title.title-inline .title {
  margin-top: 0;
}
.section-title.title-center {
  text-align: center;
}
.section-title.title-center .subtitle {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}
.section-title.title-center .subtitle::before {
  content: none;
}
.section-title.title-center .title {
  max-width: 540px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-title.title-center p {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 0;
}

.content-title .title {
  margin-bottom: 10px;
  margin-top: -10px;
}
.content-title .title span {
  color: var(--color-primary);
}
.content-title .subtitle {
  font-size: var(--font-lg);
  font-weight: var(--font-medium);
  display: inline-block;
  margin-bottom: 5px;
  margin-top: -3px;
}
.content-title p:last-child {
  margin-bottom: 0;
}

.title-md {
  font-size: 32px;
}

/* -----------------------------------------
  	Animation CSS
----------------------------------------- */
@-webkit-keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.2, 1.2, 1.2);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.2, 1.2, 1.2);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes rotate {
  from {
    transform: rotate(-360deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(-360deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes moveAround {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes moveAround {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes moveLeftRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveLeftRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes ripple {
  0% {
    opacity: 0.45;
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
@keyframes ripple {
  0% {
    opacity: 0.45;
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
@-webkit-keyframes ripple2 {
  0% {
    opacity: 0.45;
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}
@keyframes ripple2 {
  0% {
    opacity: 0.45;
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}
@-webkit-keyframes run {
  0% {
    top: -50%;
  }
  100% {
    top: 100%;
  }
}
@keyframes run {
  0% {
    top: -50%;
  }
  100% {
    top: 100%;
  }
}
/* 

====== Zoom effect ======

*/
.mfp-zoom-in {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/* 

  ====== Newspaper effect ======

  */
.mfp-newspaper {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-newspaper .mfp-with-anim {
  opacity: 0;
  transition: all 0.5s;
  transform: scale(0) rotate(500deg);
}
.mfp-newspaper.mfp-bg {
  opacity: 0;
  transition: all 0.5s;
}
.mfp-newspaper.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.mfp-newspaper.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-newspaper.mfp-removing .mfp-with-anim {
  transform: scale(0) rotate(500deg);
  opacity: 0;
}
.mfp-newspaper.mfp-removing.mfp-bg {
  opacity: 0;
}

/* 

  ====== Move-horizontal effect ======

  */
.mfp-move-horizontal {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-move-horizontal .mfp-with-anim {
  opacity: 0;
  transition: all 0.3s;
  transform: translateX(-50px);
}
.mfp-move-horizontal.mfp-bg {
  opacity: 0;
  transition: all 0.3s;
}
.mfp-move-horizontal.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: translateX(0);
}
.mfp-move-horizontal.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-move-horizontal.mfp-removing .mfp-with-anim {
  transform: translateX(50px);
  opacity: 0;
}
.mfp-move-horizontal.mfp-removing.mfp-bg {
  opacity: 0;
}

/* 

  ====== Move-from-top effect ======

  */
.mfp-move-from-top {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-move-from-top .mfp-content {
  vertical-align: top;
}
.mfp-move-from-top .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s;
  transform: translateY(-100px);
}
.mfp-move-from-top.mfp-bg {
  opacity: 0;
  transition: all 0.2s;
}
.mfp-move-from-top.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: translateY(0);
}
.mfp-move-from-top.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-move-from-top.mfp-removing .mfp-with-anim {
  transform: translateY(-50px);
  opacity: 0;
}
.mfp-move-from-top.mfp-removing.mfp-bg {
  opacity: 0;
}

/* 

  ====== 3d unfold ======

  */
.mfp-3d-unfold {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-3d-unfold .mfp-content {
  perspective: 2000px;
}
.mfp-3d-unfold .mfp-with-anim {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform-style: preserve-3d;
  transform: rotateY(-60deg);
}
.mfp-3d-unfold.mfp-bg {
  opacity: 0;
  transition: all 0.5s;
}
.mfp-3d-unfold.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: rotateY(0deg);
}
.mfp-3d-unfold.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-3d-unfold.mfp-removing .mfp-with-anim {
  transform: rotateY(60deg);
  opacity: 0;
}
.mfp-3d-unfold.mfp-removing.mfp-bg {
  opacity: 0;
}

/* 

  ====== Zoom-out effect ======

  */
.mfp-zoom-out {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-zoom-out .mfp-with-anim {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: scale(1.3);
}
.mfp-zoom-out.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.mfp-zoom-out.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}
.mfp-zoom-out.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-zoom-out.mfp-removing .mfp-with-anim {
  transform: scale(1.3);
  opacity: 0;
}
.mfp-zoom-out.mfp-removing.mfp-bg {
  opacity: 0;
}

/* -----------------------------------------
    Social Link CSS
----------------------------------------- */
.social-link {
  --size: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.social-link a {
  text-align: center;
  width: var(--size);
  height: var(--size);
  line-height: var(--size);
  background-color: var(--color-primary);
  color: var(--text-white);
  font-size: var(--font-base);
}
.social-link a:last-child {
  margin: 0;
}
.social-link a:hover {
  color: var(--text-white);
  background-color: var(--color-primary);
}
.social-link.style-2 a {
  border-radius: 50%;
  background-color: rgba(var(--color-primary-rgb), 0.1);
  color: var(--color-primary);
}
.social-link.size-md {
  --size: 30px;
  --font-base: 14px;
}
.social-link.size-lg {
  --size: 50px;
}

/* -----------------------------------------
    Cookiebar CSS
----------------------------------------- */
.cookie-bar {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--bg-dark);
  padding: 20px 20px 0;
  transition: all 2s linear;
  z-index: 999;
}
.cookie-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-bar .btn:not(:last-child) {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}
.cookie-bar .btn::before {
  content: none;
}
.cookie-bar.show {
  bottom: 0;
  transition: all 2s linear;
}

/* -----------------------------------------
	Header CSS
----------------------------------------- */
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding-top: 20px;
}
.header-area.header-static {
  position: relative;
}
.header-area.is-sticky {
  position: fixed;
  background: rgba(var(--color-white-rgb), 0.9);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0px 8px 60px rgba(24, 24, 24, 0.1);
  -webkit-animation: slideDown 0.5s;
          animation: slideDown 0.5s;
  padding-top: 0;
}
.header-area .more-option {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.header-area .more-option .more-option-toggle {
  z-index: 11;
  font-size: 25px;
  padding: 10px;
}
.header-area .more-option .item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-area .navbar-nav {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: 60px;
          margin-inline-end: 60px;
}
.header-area .nav-link {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  color: var(--text-dark);
  font-weight: var(--font-medium);
}
.header-area .nav-link.toggle i {
  font-size: 12px;
  -webkit-margin-start: 2px;
          margin-inline-start: 2px;
  transition: transform 0.4s ease-out;
}
.header-area .nav-link.toggle:hover i {
  transform: rotate(-90deg);
}
.header-area .nav-link:hover .menu-dropdown {
  transform: none;
}
.header-area .nav-link:hover, .header-area .nav-link.active, .header-area .nav-link:focus {
  color: var(--color-primary);
}
.header-area .main-navbar .navbar {
  position: inherit;
  padding: 0;
}
.header-area .main-navbar .navbar .navbar-brand {
  padding: 0;
  margin: 0;
}
.header-area .main-navbar .nav-item {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}
.header-area .main-navbar .menu-dropdown {
  position: absolute;
  top: auto;
  left: 0;
  z-index: 99;
  opacity: 0;
  width: 200px;
  display: block;
  visibility: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 5px;
  padding: 15px 0px 15px 0px;
  background-color: var(--bg-white);
  box-shadow: 0px 0px 30px 0px rgba(var(--color-dark-rgb), 0.15);
  transform: translateY(10%);
  transition: transform 0.3s ease-out;
}
.header-area .main-navbar .menu-dropdown .nav-item {
  margin: 0;
}
.header-area .main-navbar .menu-dropdown .nav-link {
  display: block;
  padding: 5px 30px;
  font-size: var(--font-sm);
  -webkit-border-start: 2px solid transparent;
          border-inline-start: 2px solid transparent;
}
.header-area .main-navbar .menu-dropdown .nav-link:hover {
  color: var(--color-primary);
  background-color: var(--bg-1);
}
.header-area .main-navbar .menu-dropdown .nav-link:hover.toggle i {
  transform: translateY(-50%) rotate(-90deg);
}
.header-area .main-navbar .menu-dropdown .nav-link.toggle i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.header-area .main-navbar .menu-dropdown .nav-link.active {
  border-inline-start-color: var(--color-primary);
}
.header-area .main-navbar .menu-dropdown .menu-dropdown .nav-item {
  margin: 0;
}
.header-area .main-navbar .menu-dropdown .menu-dropdown .nav-item a:hover::before {
  transform: scaleY(0);
}
.header-area .main-navbar .menu-dropdown .menu-dropdown .nav-item a.active::before {
  transform: scaleY(0);
}
.header-area .menu-toggler {
  width: 22px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  z-index: 1000;
}
.header-area .menu-toggler:focus {
  box-shadow: none !important;
}
.header-area .menu-toggler span {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 10px;
  transition: transform 200ms 0ms, top 200ms 160ms;
}
.header-area .menu-toggler span:nth-child(1) {
  top: -4px;
}
.header-area .menu-toggler span:nth-child(3) {
  top: 4px;
}
.header-area .menu-toggler.active span:nth-child(1) {
  top: 0;
  transform: rotateZ(45deg);
  transition: top 200ms 0ms, transform 200ms 160ms;
}
.header-area .menu-toggler.active span:nth-child(2) {
  transform: scale(0);
}
.header-area .menu-toggler.active span:nth-child(3) {
  top: -4px;
  transform: rotateZ(-45deg);
  transition: top 200ms 0ms, transform 200ms 160ms;
}
.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown {
  top: 0;
  opacity: 0;
  left: 200px;
  visibility: hidden;
  transform: translateY(5px);
}
.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown {
  top: 0;
  opacity: 0;
  left: 200px;
  visibility: hidden;
  transform: translateY(5px);
}
.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown {
  top: 0;
  opacity: 0;
  left: 200px;
  visibility: hidden;
  transform: translateY(5px);
}
.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown {
  top: 0;
  opacity: 0;
  left: 200px;
  visibility: hidden;
  transform: translateY(5px);
}
.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown {
  top: 0;
  opacity: 0;
  left: 200px;
  visibility: hidden;
  transform: translateY(5px);
}
.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown {
  top: 0;
  opacity: 0;
  left: 200px;
  visibility: hidden;
  transform: translateY(5px);
}
.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li:hover .menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li.active a {
  color: var(--color-primary);
}
.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li:hover .menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown li .menu-dropdown li:hover .menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li .menu-dropdown li:hover .menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li .menu-dropdown li:hover .menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-area .main-navbar .navbar-nav .nav-item .menu-dropdown li:hover .menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-area .main-navbar .navbar-nav .nav-item:hover .menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-area .nice-select {
  border: none;
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 25px;
          padding-inline-start: 25px;
  background: transparent;
  color: var(--text-dark);
}
.header-area .nice-select:not(.list) {
  font-size: var(--font-base);
}
.header-area .nice-select::after {
  width: auto;
  height: auto;
  border-radius: 0;
  border: none;
  content: "\f0ac";
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  top: 50%;
  left: 0;
  font-weight: 300;
  margin: 0;
  transform: translateY(-50%);
}
.header-area .nice-select .list {
  min-width: 100px;
  height: auto;
  background-color: var(--bg-white);
  box-shadow: 0px 0px 30px 0px rgba(var(--color-medium-rgb), 0.15);
}
.header-area .nice-select .list li {
  min-height: 30px;
  line-height: 30px;
}
.header-area .btn-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-dark);
  width: auto;
  height: auto;
}
.header-area .btn-icon:hover {
  color: var(--color-primary);
  background: transparent;
}
.header-area .main-responsive-nav {
  display: none;
}
.header-area .mobile-menu {
  visibility: hidden;
}

@media (max-width: 1199px) {
  .header-area {
    height: 60px;
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    background-color: var(--bg-white);
  }
  .header-area.is-sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }
  .header-area .main-responsive-nav {
    display: block;
    height: 60px;
    line-height: 60px;
  }
  .header-area .main-responsive-nav > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-area .main-responsive-nav .logo {
    flex: 0 0 120px;
  }
  .header-area .main-navbar {
    display: none;
  }
  .mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
    transition: all 0.8s ease;
    z-index: 999;
    background: var(--bg-white);
  }
  .mobile-menu::-webkit-scrollbar {
    width: 1px;
  }
  .mobile-menu::-webkit-scrollbar-track {
    background: transparent;
  }
  .mobile-menu::-webkit-scrollbar-thumb {
    background: transparent;
  }
  .mobile-menu .mobile-menu-wrapper {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
  .mobile-menu .navbar-nav {
    width: 100%;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
  .mobile-menu .navbar-nav li a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 700ms ease;
  }
  .mobile-menu .navbar-nav li ul {
    -webkit-padding-start: 12px;
            padding-inline-start: 12px;
    list-style-type: none;
  }
  .mobile-menu .navbar-nav li li a {
    font-size: 14px;
  }
  .mobile-menu .more-option {
    padding-top: 20px;
    margin-top: 20px;
    justify-content: center;
  }
  .mobile-menu li.nav-item:not(.show) ul {
    display: none;
  }
  .mobile-menu li.nav-item.show > .toggle {
    position: relative;
  }
  .mobile-menu li.nav-item.show > .toggle i::before {
    content: "\f068";
  }
  .mobile-menu .nav-link.toggle {
    position: relative;
  }
  .mobile-menu .nav-link.toggle i {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .mobile-menu .nav-link.toggle:hover i {
    transform: translateY(-50%);
  }
  .mobile-menu .logo {
    display: none;
  }
  .mobile-menu-active .mobile-menu {
    visibility: visible;
    left: 0;
  }
  .header-area.header-2:is(.nav-link:not(:is(.active, .menu-dropdown .nav-link)), .btn-icon, .btn-icon-text, .nice-select, .nice-select::after) {
    color: var(--text-dark);
  }
}
body.mobile-menu-active {
  overflow: hidden;
}

/* -----------------------------------------
	Header 2 CSS
----------------------------------------- */
.header-area.header-2 {
  border-bottom-color: rgba(var(--color-white-rgb), 0.2);
}
.header-area.header-2.is-sticky {
  background: rgba(var(--color-dark-rgb), 0.9);
  border-bottom: 1px solid rgba(var(--color-white-rgb), 0.2);
}
.header-area.header-2.is-sticky .main-navbar .menu-dropdown {
  border: 1px solid var(--border-color);
}
.header-area.header-2 .main-responsive-nav {
  background-color: var(--bg-white);
}
.header-area.header-2 :is(.nav-link:not(:is(.active, .menu-dropdown .nav-link)), .btn-icon, .btn-icon-text, .nice-select, .nice-select::after) {
  color: var(--text-white);
}
@media (max-width: 1199.98px) {
  .header-area.header-2 :is(.nav-link:not(:is(.active, .menu-dropdown .nav-link)), .btn-icon, .btn-icon-text, .nice-select, .nice-select::after) {
    color: var(--text-dark);
  }
}
.header-area.header-2 .nice-select::after {
  color: var(--text-white);
}

/* -----------------------------------------
	Hero Banner CSS
----------------------------------------- */
.hero-banner {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-banner .banner-content {
  max-width: 640px;
}
.hero-banner .banner-content p {
  font-size: var(--font-lg);
  max-width: 540px;
  margin-bottom: 0;
}
.hero-banner .banner-image {
  position: relative;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  z-index: 1;
}
.hero-banner .banner-image img {
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}
.hero-banner .shape img {
  position: absolute;
  z-index: -1;
  opacity: 0.6;
}

.hero-banner.hero-banner-1 {
  padding-top: 120px;
  border-radius: 0 0 50px 50px;
  min-height: 850px;
  width: 100%;
  display: flex !important;
  align-items: flex-end;
}
@media (max-width: 767.98px) {
  .hero-banner.hero-banner-1 {
    border-radius: 0 0 30px 30px;
  }
}
.hero-banner.hero-banner-1 > .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 750px;
  width: 100%;
}
.hero-banner.hero-banner-1 .banner-content {
  padding-bottom: 30px;
}
.hero-banner.hero-banner-1 .shape img.shape-1 {
  top: 18%;
  left: 10%;
  -webkit-animation: moveLeftRight 10s linear infinite;
          animation: moveLeftRight 10s linear infinite;
}
.hero-banner.hero-banner-1 .shape img.shape-2 {
  top: 23%;
  left: 38%;
  -webkit-animation: moveUpDown 5s linear infinite;
          animation: moveUpDown 5s linear infinite;
}
.hero-banner.hero-banner-1 .shape img.shape-3 {
  bottom: 10%;
  left: 13%;
  -webkit-animation: moveUpDown 10s linear infinite;
          animation: moveUpDown 10s linear infinite;
}
.hero-banner.hero-banner-1 .shape img.shape-4 {
  bottom: 4%;
  left: 40%;
  -webkit-animation: moveLeftRight 8s linear infinite;
          animation: moveLeftRight 8s linear infinite;
}
.hero-banner.hero-banner-1 .shape img.shape-5 {
  bottom: 30%;
  left: 50%;
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}
.hero-banner.hero-banner-1 .shape img.shape-6 {
  top: 12%;
  right: 3%;
  -webkit-animation: moveLeftRight 10s linear infinite;
          animation: moveLeftRight 10s linear infinite;
}
.hero-banner.hero-banner-1 .shape img.shape-7 {
  top: 56%;
  right: 2%;
  -webkit-animation: moveAround 10s linear infinite;
          animation: moveAround 10s linear infinite;
}

.hero-banner.hero-banner-2 {
  padding-top: 170px;
  background-image: linear-gradient(0deg, rgb(255, 255, 255) 25%, rgba(var(--color-primary-rgb), 0.2) 100%);
}
.hero-banner.hero-banner-2 .swiper {
  background-size: contain !important;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 0;
}
@media (max-width: 575.98px) {
  .hero-banner.hero-banner-2 .swiper {
    padding: 0;
  }
}
.hero-banner.hero-banner-2 .shape img {
  opacity: 1;
}
.hero-banner.hero-banner-2 .shape img.shape-1 {
  top: 18%;
  left: 10%;
  -webkit-animation: moveLeftRight 10s linear infinite;
          animation: moveLeftRight 10s linear infinite;
}
.hero-banner.hero-banner-2 .shape img.shape-2 {
  top: 33%;
  left: 25%;
  -webkit-animation: moveUpDown 5s linear infinite;
          animation: moveUpDown 5s linear infinite;
}
.hero-banner.hero-banner-2 .shape img.shape-3 {
  bottom: 30%;
  left: 13%;
  -webkit-animation: moveUpDown 10s linear infinite;
          animation: moveUpDown 10s linear infinite;
}
.hero-banner.hero-banner-2 .shape img.shape-4 {
  top: 33%;
  right: 25%;
  -webkit-animation: moveLeftRight 8s linear infinite;
          animation: moveLeftRight 8s linear infinite;
}
.hero-banner.hero-banner-2 .shape img.shape-5 {
  bottom: 30%;
  right: 13%;
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}
.hero-banner.hero-banner-2 .shape img.shape-6 {
  top: 18%;
  right: 10%;
  -webkit-animation: moveLeftRight 10s linear infinite;
          animation: moveLeftRight 10s linear infinite;
}

.hero-banner.hero-banner-3 {
  padding-top: 170px;
  padding-bottom: 60px;
  background-position: center bottom;
}
.hero-banner.hero-banner-3 .banner-image {
  -webkit-animation: moveUpDown 5s infinite;
          animation: moveUpDown 5s infinite;
}

.hero-banner.hero-banner-4 {
  padding-top: 170px;
  padding-bottom: 60px;
}
.hero-banner.hero-banner-4 .banner-image {
  -webkit-animation: moveUpDown 5s infinite;
          animation: moveUpDown 5s infinite;
}

.hero-banner.hero-banner-5 {
  background-size: auto;
  background-repeat: no-repeat;
  background-position: right bottom;
}
.hero-banner.hero-banner-5 .banner-image {
  -webkit-animation: moveUpDown 10s infinite;
          animation: moveUpDown 10s infinite;
}
.hero-banner.hero-banner-5 .hero-area {
  position: relative;
  padding-top: 170px;
}
.hero-banner.hero-banner-5 .hero-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: left top;
}
.hero-banner.hero-banner-5 .hero-shape-img {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  opacity: 0.5;
  max-width: 35%;
}

.hero-banner.hero-banner-6 {
  background-size: auto;
  background-repeat: no-repeat;
  background-position: left top;
}
.hero-banner.hero-banner-6 .banner-image {
  -webkit-animation: moveUpDown 10s infinite;
          animation: moveUpDown 10s infinite;
}
.hero-banner.hero-banner-6 .hero-area {
  position: relative;
  padding-top: 170px;
}
.hero-banner.hero-banner-6 .hero-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right top;
}
.hero-banner.hero-banner-6 .dot-shapes img {
  position: absolute;
  top: 25%;
  z-index: -1;
  left: 4%;
  max-width: 100px;
  -webkit-animation: rotate linear 30s infinite;
          animation: rotate linear 30s infinite;
}
@media (max-width: 1450px) {
  .hero-banner.hero-banner-6 .dot-shapes img {
    top: 40%;
  }
}
@media (max-width: 1199.98px) {
  .hero-banner.hero-banner-6 .dot-shapes img {
    top: 45%;
    max-width: 80px;
  }
}
@media (max-width: 767.98px) {
  .hero-banner.hero-banner-6 .dot-shapes img {
    display: none;
  }
}
.hero-banner.hero-banner-6 .dot-shapes img.dot-two {
  left: 36%;
  top: 56%;
  max-width: 60px;
}
@media (max-width: 1199.98px) {
  .hero-banner.hero-banner-6 .dot-shapes img.dot-two {
    left: 40%;
    top: 60%;
  }
}
@media (max-width: 991.98px) {
  .hero-banner.hero-banner-6 .dot-shapes img.dot-two {
    display: none;
  }
}

.hero-banner.hero-banner-7 {
  padding-top: 170px;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: left bottom;
}
.hero-banner.hero-banner-7 .banner-image {
  -webkit-animation: moveUpDown 10s infinite;
          animation: moveUpDown 10s infinite;
}
.hero-banner.hero-banner-7 .banner-content span {
  font-weight: var(--font-medium);
}

.hero-banner.hero-banner-8 {
  padding-top: 170px;
  padding-bottom: 150px;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.hero-banner.hero-banner-8 .banner-image {
  -webkit-animation: moveUpDown 10s infinite;
          animation: moveUpDown 10s infinite;
}
.hero-banner.hero-banner-8 .banner-content span {
  font-weight: var(--font-medium);
}

/* -----------------------------------------
    Counter CSS
----------------------------------------- */
.counter-area .card-icon {
  font-size: 36px;
}
.counter-area .card-icon i {
  display: inline-block;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition-duration: 0.5s;
}
.counter-area .card:hover i {
  transform: scale(1.2);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.counter-area.counter-1 .card-icon {
  --size: 85px;
  width: var(--size);
  height: var(--size);
  line-height: var(--size);
  text-align: center;
  border-radius: 50%;
  background-color: var(--bg-white);
  box-shadow: 0px 18px 40px rgba(79, 90, 228, 0.11);
}
.counter-area.counter-2 .card-icon {
  --size: 85px;
  width: var(--size);
  height: var(--size);
  line-height: var(--size);
  text-align: center;
  border-radius: 50%;
  color: var(--text-white);
  background-color: var(--color-primary);
  background-image: var(--gradient-1);
}
.counter-area.counter-2 .item:nth-child(1) .card {
  background-color: rgba(115, 103, 240, 0.08);
}
.counter-area.counter-2 .item:nth-child(1) .card-icon {
  background-color: #7367F0;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #7367F0 100%);
}
.counter-area.counter-2 .item:nth-child(2) .card {
  background-color: rgba(50, 204, 188, 0.08);
}
.counter-area.counter-2 .item:nth-child(2) .card-icon {
  background-color: #32CCBC;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #32CCBC 100%);
}
.counter-area.counter-2 .item:nth-child(3) .card {
  background-color: rgba(246, 65, 108, 0.08);
}
.counter-area.counter-2 .item:nth-child(3) .card-icon {
  background-color: #F6416C;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #F6416C 100%);
}
.counter-area.counter-2 .item:nth-child(4) .card {
  background-color: rgba(40, 199, 111, 0.08);
}
.counter-area.counter-2 .item:nth-child(4) .card-icon {
  background-color: #28C76F;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #28C76F 100%);
}
.counter-area.counter-2 .item:nth-child(5) .card {
  background-color: rgba(73, 156, 33, 0.08);
}
.counter-area.counter-2 .item:nth-child(5) .card-icon {
  background-color: #499C21;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #499C21 100%);
}
.counter-area.counter-2 .item:nth-child(6) .card {
  background-color: rgba(241, 196, 15, 0.08);
}
.counter-area.counter-2 .item:nth-child(6) .card-icon {
  background-color: #F1C40F;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #F1C40F 100%);
}
.counter-area.counter-2 .item:nth-child(7) .card {
  background-color: rgba(230, 126, 34, 0.08);
}
.counter-area.counter-2 .item:nth-child(7) .card-icon {
  background-color: #E67E22;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #E67E22 100%);
}
.counter-area.counter-2 .item:nth-child(8) .card {
  background-color: rgba(231, 76, 60, 0.08);
}
.counter-area.counter-2 .item:nth-child(8) .card-icon {
  background-color: #E74C3C;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #E74C3C 100%);
}
.counter-area.counter-2 .item:nth-child(9) .card {
  background-color: rgba(255, 170, 133, 0.08);
}
.counter-area.counter-2 .item:nth-child(9) .card-icon {
  background-color: #FFAA85;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #FFAA85 100%);
}
.counter-area.counter-2 .item:nth-child(10) .card {
  background-color: rgba(60, 140, 231, 0.08);
}
.counter-area.counter-2 .item:nth-child(10) .card-icon {
  background-color: #3C8CE7;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #3C8CE7 100%);
}
.counter-area.counter-3 .item:is(:nth-child(2), :nth-child(4)) {
  margin-top: 40px;
}
@media (max-width: 575.98px) {
  .counter-area.counter-3 .item:is(:nth-child(2), :nth-child(4)) {
    margin-top: 0;
  }
  .counter-area.counter-3 .item {
    margin-top: 40px !important;
  }
}

/* -----------------------------------------
    Choose CSS
----------------------------------------- */
.choose-area {
  position: relative;
  overflow: hidden;
}
.choose-area .card .card-text {
  flex: auto;
}
.choose-area .card-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 28px;
  color: var(--color-primary);
  box-shadow: 0px 8px 20px rgba(39, 39, 39, 0.08);
}
.choose-area .image {
  position: relative;
}
.choose-area .client {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
}
.choose-area .client .client-img {
  max-width: 60px;
}
.choose-area .info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.choose-area .info-list li {
  position: relative;
}
.choose-area .info-list li i {
  color: var(--color-primary);
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}
.choose-area .info-list li span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
  line-height: 25px;
  text-align: center;
  color: var(--text-white);
  font-size: 12px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

/* -----------------------------------------
    About CSS
----------------------------------------- */
.about-area {
  position: relative;
  overflow: hidden;
}
.about-area .card .card-text {
  flex: auto;
}
.about-area .card:hover i {
  transform: scale(1.2);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.about-area .card-icon {
  --size: 60px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  height: var(--size);
  font-size: 30px;
  color: var(--color-primary);
}
.about-area .card-icon i {
  display: inline-block;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition-duration: 0.5s;
}
.about-area .image {
  position: relative;
}
.about-area .client {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
}
.about-area .client .client-img {
  max-width: 60px;
}
.about-area .info-list .card {
  max-width: 400px;
  overflow: hidden;
  z-index: 1;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
.about-area .info-list .card-icon {
  background-color: rgba(var(--color-primary-rgb), 0.08);
  color: var(--color-primary);
}
.about-area.about-1 .info-list .card-icon {
  border-color: rgba(var(--color-primary-rgb), 0.4) !important;
}
.about-area.about-2 .info-list .item:nth-child(1) .card-icon {
  background-color: rgba(118, 129, 248, 0.08);
  color: #7681F8;
}
.about-area.about-2 .info-list .item:nth-child(2) .card-icon {
  background-color: rgba(255, 97, 199, 0.08);
  color: #FF61C7;
}
.about-area.about-2 .info-list .item:nth-child(3) .card-icon {
  background-color: rgba(255, 124, 65, 0.08);
  color: #FF7C41;
}
.about-area.about-2 .info-list .item:nth-child(4) .card-icon {
  background-color: rgba(0, 221, 193, 0.08);
  color: #00DDC1;
}
.about-area.about-2 .info-list .item:nth-child(5) .card-icon {
  background-color: rgba(73, 156, 33, 0.08);
  color: #499C21;
}
.about-area.about-2 .info-list .item:nth-child(6) .card-icon {
  background-color: rgba(241, 196, 15, 0.08);
  color: #F1C40F;
}
.about-area.about-2 .info-list .item:nth-child(7) .card-icon {
  background-color: rgba(230, 126, 34, 0.08);
  color: #E67E22;
}
.about-area.about-2 .info-list .item:nth-child(8) .card-icon {
  background-color: rgba(231, 76, 60, 0.08);
  color: #E74C3C;
}
.about-area.about-2 .info-list .item:nth-child(9) .card-icon {
  background-color: rgba(255, 170, 133, 0.08);
  color: #FFAA85;
}
.about-area.about-2 .info-list .item:nth-child(10) .card-icon {
  background-color: rgba(60, 140, 231, 0.08);
  color: #3C8CE7;
}
.about-area.about-3 .info-list .card-icon {
  color: var(--text-white);
}
.about-area.about-3 .info-list .item:nth-child(1) .card-icon {
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #7681F8 100%);
}
.about-area.about-3 .info-list .item:nth-child(2) .card-icon {
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #FF61C7 100%);
}
.about-area.about-3 .info-list .item:nth-child(3) .card-icon {
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #FF7C41 100%);
}
.about-area.about-3 .info-list .item:nth-child(4) .card-icon {
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #00DDC1 100%);
}
.about-area.about-3 .info-list .item:nth-child(5) .card-icon {
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #499C21 100%);
}
.about-area.about-3 .info-list .item:nth-child(6) .card-icon {
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #F1C40F 100%);
}
.about-area.about-3 .info-list .item:nth-child(7) .card-icon {
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #E67E22 100%);
}
.about-area.about-3 .info-list .item:nth-child(8) .card-icon {
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #E74C3C 100%);
}
.about-area.about-3 .info-list .item:nth-child(9) .card-icon {
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #FFAA85 100%);
}
.about-area.about-3 .info-list .item:nth-child(10) .card-icon {
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #3C8CE7 100%);
}
.about-area.about-4 .icon {
  --size: 80px;
  height: var(--size);
  width: var(--size);
  background-color: rgba(var(--color-primary-rgb), 0.08);
  font-size: 30px;
  color: var(--color-primary);
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -----------------------------------------
    Feature CSS
----------------------------------------- */
.feature-area {
  position: relative;
  overflow: hidden;
}
.feature-area .item-top {
  display: flex;
  align-items: center;
  gap: 20px;
}
.feature-area .item-top .item-icon {
  --size: 70px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  height: var(--size);
  font-size: 28px;
  color: var(--color-primary);
  background-color: var(--bg-white);
  color: var(--color-primary);
}
.feature-area .image img {
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
}
.feature-area.feature-1 {
  border-radius: 50px 50px 0 0;
}
@media (max-width: 767.98px) {
  .feature-area.feature-1 {
    border-radius: 30px 30px 0 0;
  }
}
.feature-area.feature-1 .overlay {
  height: 80%;
}
@media (min-width: 992px) {
  .feature-area.feature-1 .image {
    padding-inline: 20px;
  }
}
.feature-area.feature-2 {
  padding-top: 320px;
}
@media (max-width: 767.98px) {
  .feature-area.feature-2 {
    padding-top: 120px;
  }
}
.feature-area.feature-2 .item {
  display: flex;
  gap: 24px;
  flex-direction: row;
}
.feature-area.feature-2 .item .item-icon {
  flex: 0 0 auto;
  --size: 70px;
  height: var(--size);
  width: var(--size);
  text-align: center;
  line-height: var(--size);
  color: var(--text-white);
  font-size: 24px;
}
.feature-area.feature-3 h2 span {
  color: var(--color-primary);
}
.feature-area.feature-3 .card {
  gap: 24px;
  flex-direction: row;
  padding: 30px 25px 62px 35px;
}
.feature-area.feature-3 .card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  min-width: calc(100% + 10px) !important;
  height: 100%;
  mask: url(../images/clippy-border.svg) no-repeat center/contain;
  -webkit-mask: url(../images/clippy-border.svg) no-repeat center/contain;
  background-color: var(--color-primary);
}
.feature-area.feature-3 .card .card-icon {
  flex: 0 0 auto;
  text-align: center;
  color: var(--color-primary);
  font-size: 48px;
}
.feature-area.feature-3 .item:nth-child(1) .card::before {
  background-color: #7e4efe;
}
.feature-area.feature-3 .item:nth-child(1) .card-icon {
  color: #7e4efe;
}
.feature-area.feature-3 .item:nth-child(2) .card::before {
  background-color: #7e4efe;
}
.feature-area.feature-3 .item:nth-child(2) .card-icon {
  color: #7e4efe;
}
.feature-area.feature-3 .item:nth-child(3) .card::before {
  background-color: #50DD9D;
}
.feature-area.feature-3 .item:nth-child(3) .card-icon {
  color: #50DD9D;
}
.feature-area.feature-3 .item:nth-child(4) .card::before {
  background-color: #F6416C;
}
.feature-area.feature-3 .item:nth-child(4) .card-icon {
  color: #F6416C;
}
.feature-area.feature-3 .item:nth-child(5) .card::before {
  background-color: #28C76F;
}
.feature-area.feature-3 .item:nth-child(5) .card-icon {
  color: #28C76F;
}
.feature-area.feature-3 .item:nth-child(6) .card::before {
  background-color: #499C21;
}
.feature-area.feature-3 .item:nth-child(6) .card-icon {
  color: #499C21;
}
.feature-area.feature-3 .item:nth-child(7) .card::before {
  background-color: #F1C40F;
}
.feature-area.feature-3 .item:nth-child(7) .card-icon {
  color: #F1C40F;
}
.feature-area.feature-3 .item:nth-child(8) .card::before {
  background-color: #E67E22;
}
.feature-area.feature-3 .item:nth-child(8) .card-icon {
  color: #E67E22;
}
.feature-area.feature-3 .item:nth-child(9) .card::before {
  background-color: #E74C3C;
}
.feature-area.feature-3 .item:nth-child(9) .card-icon {
  color: #E74C3C;
}
.feature-area.feature-3 .item:nth-child(10) .card::before {
  background-color: #3C8CE7;
}
.feature-area.feature-3 .item:nth-child(10) .card-icon {
  color: #3C8CE7;
}

/* -----------------------------------------
    Screenshot CSS
----------------------------------------- */
.screenshot-area {
  position: relative;
  overflow: hidden;
}
.screenshot-area .screenshot-slider-1 .swiper-slide {
  position: relative;
}
.screenshot-area .screenshot-slider-1 .swiper-slide::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(180deg, rgba(var(--color-black-rgb), 0.03) 50.06%, rgba(var(--color-black-rgb), 0.85) 97.53%);
  z-index: 2;
}
.screenshot-area .screenshot-slider-1 .swiper-pagination {
  width: auto;
  height: auto;
  left: 0;
  right: 0;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-inline: auto;
  padding: 30px 25px 60px;
  bottom: -50px;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.screenshot-area .screenshot-slider-1 .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--bg-white);
  opacity: 0.5;
  transform: translateY(-5px);
}
.screenshot-area .screenshot-slider-1 .swiper-pagination .swiper-pagination-bullet-active {
  width: 10px;
}
.screenshot-area .screenshot-slider-1 .swiper-pagination .swiper-pagination-bullet-active, .screenshot-area .screenshot-slider-1 .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: var(--bg-white);
  opacity: 1;
}
.screenshot-area .swiper-scrollbar {
  z-index: 999;
  background-color: rgba(var(--color-primary-rgb), 0.5);
  width: 100%;
  left: 0;
  top: 0;
  position: static;
  border-radius: 0;
}
.screenshot-area .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: var(--color-primary);
}
.screenshot-area .screenshot-slider .swiper-slide {
  overflow: hidden;
}
.screenshot-area .screenshot-slider#screenshot-slider-4 .swiper-slide {
  transform-origin: bottom !important;
}
.screenshot-area .screenshot-slider#screenshot-slider-4 .swiper-slide img {
  transform-origin: bottom !important;
}
.screenshot-area .screenshot-slider.shadow-none .swiper-slide {
  overflow: unset;
}
.screenshot-area .screenshot-slider.shadow-none .swiper-slide *:not(img) {
  width: 0;
}
.screenshot-area .screenshot-slider.shadow-none img {
  filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 10px 10px);
}
.screenshot-area.screenshot-2 {
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center bottom;
}

/* -----------------------------------------
    Pricing CSS
----------------------------------------- */
.pricing-item {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-out;
  padding: 40px;
  z-index: 1;
}
@media (max-width: 575.98px) {
  .pricing-item {
    padding: 30px;
  }
}
.pricing-item .pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.pricing-item .price {
  display: inline-flex;
  align-items: flex-end;
}
.pricing-item .h3 {
  color: var(--color-primary);
}
.pricing-item .label {
  padding: 5px 18px;
  border-radius: 5px;
  background-color: var(--bg-white);
  color: var(--color-primary);
  font-weight: var(--font-medium);
}
.pricing-item .icon {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: var(--color-primary);
  color: var(--text-white);
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
}
.pricing-item .pricing-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-dark);
}
.pricing-item .pricing-list i {
  font-size: 16px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}
.pricing-item .pricing-list .disabled {
  color: var(--text-medium);
}
.pricing-item .disabled {
  background-color: transparent !important;
}
.pricing-item .show-more {
  display: block;
  color: var(--color-dark);
  margin-top: 15px;
  font-size: var(--font-sm);
  cursor: pointer;
}
.pricing-item.active {
  background-color: var(--color-primary) !important;
}
.pricing-item.active *:not(.label), .pricing-item.active .disabled {
  color: var(--text-white);
}
.pricing-item.active .icon {
  background-color: var(--bg-white);
}
.pricing-item.active .icon * {
  color: var(--color-primary);
}
.pricing-item.active .btn-primary, .pricing-item:hover .btn-primary {
  color: var(--color-primary);
  background-color: var(--bg-white);
}

.pricing-area {
  position: relative;
  overflow: hidden;
}
.pricing-area .tab-pane {
  -webkit-animation: none;
          animation: none;
}
.pricing-area .tab-pane.active {
  -webkit-animation: slideUp 0.3s ease-out 1;
          animation: slideUp 0.3s ease-out 1;
}

.pricing-2 .item:nth-child(1) .icon {
  background-color: #7367F0;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #7367F0 100%);
}
.pricing-2 .item:nth-child(2) .icon {
  background-color: #32CCBC;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #32CCBC 100%);
}
.pricing-2 .item:nth-child(3) .icon {
  background-color: #F6416C;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #F6416C 100%);
}
.pricing-2 .item:nth-child(4) .icon {
  background-color: #28C76F;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #28C76F 100%);
}
.pricing-2 .item:nth-child(5) .icon {
  background-color: #499C21;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #499C21 100%);
}
.pricing-2 .item:nth-child(6) .icon {
  background-color: #F1C40F;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #F1C40F 100%);
}
.pricing-2 .item:nth-child(7) .icon {
  background-color: #E67E22;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #E67E22 100%);
}
.pricing-2 .item:nth-child(8) .icon {
  background-color: #E74C3C;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #E74C3C 100%);
}
.pricing-2 .item:nth-child(9) .icon {
  background-color: #FFAA85;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #FFAA85 100%);
}
.pricing-2 .item:nth-child(10) .icon {
  background-color: #3C8CE7;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #3C8CE7 100%);
}
.pricing-2 .pricing-item .icon {
  background-image: var(--gradient-1);
}
.pricing-2 .pricing-item.active {
  background-image: var(--gradient-1);
}
.pricing-2 .pricing-item.active .icon {
  background-image: none;
  background-color: var(--bg-white);
}
.pricing-2 .pricing-item.active .btn-primary {
  background-image: none !important;
}

.pricing-3 .pricing-item {
  padding: 70px 25px;
}
.pricing-3 .pricing-item.active .btn-primary, .pricing-3 .pricing-item:hover .btn-primary {
  color: var(--text-white);
  background-color: var(--bg-white);
}

.pricing-4 {
  padding-top: 240px;
  padding-bottom: 300px;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: left top;
}
.pricing-4.mt-negative {
  margin-top: -230px;
}
.pricing-4 .pricing-item {
  padding: 50px;
}
.pricing-4 .pricing-item * {
  color: var(--text-white);
}
.pricing-4 .pricing-item.active {
  background-color: var(--bg-white) !important;
}
.pricing-4 .pricing-item.active * {
  color: var(--text-medium);
}
.pricing-4 .pricing-item.active h4, .pricing-4 .pricing-item.active .h4 {
  color: var(--text-dark);
}
.pricing-4 .pricing-item.active .h2, .pricing-4 .pricing-item.active h2 {
  color: var(--color-primary);
}
.pricing-4 .pricing-item.active .btn-primary, .pricing-4 .pricing-item:hover .btn-primary {
  color: var(--text-white);
  background-color: var(--bg-white);
}

/* -----------------------------------------
    Testimonial CSS
----------------------------------------- */
.testimonial-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.testimonial-area .slider-item {
  position: relative;
  z-index: 5;
}
.testimonial-area .slider-item .quote {
  position: relative;
  padding: 0 50px;
}
@media (max-width: 767.98px) {
  .testimonial-area .slider-item .quote {
    padding-inline: 30px;
  }
}
.testimonial-area .slider-item p {
  margin-bottom: 0;
}
.testimonial-area .slider-item .client-info h6 {
  margin-bottom: 2px;
}
.testimonial-area .brands img {
  position: absolute;
  max-width: 90px;
  border-radius: 50%;
  padding: 10px;
  z-index: -1;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
}
.testimonial-area .brands img:nth-child(1) {
  top: 30%;
  left: 10%;
}
.testimonial-area .brands img:nth-child(2) {
  max-width: 60px;
  bottom: 20%;
  left: 5%;
}
.testimonial-area .brands img:nth-child(3) {
  max-width: 70px;
  bottom: 10%;
  left: 20%;
}
.testimonial-area .brands img:nth-child(4) {
  max-width: 70px;
  top: 45%;
  left: 25%;
}
.testimonial-area .brands img:nth-child(5) {
  top: 30%;
  right: 20%;
}
.testimonial-area .brands img:nth-child(6) {
  max-width: 70px;
  top: 45%;
  right: 5%;
}
.testimonial-area .brands img:nth-child(7) {
  max-width: 70px;
  bottom: 25%;
  right: 25%;
}
.testimonial-area .brands img:nth-child(8) {
  max-width: 60px;
  bottom: 10%;
  right: 10%;
}
.testimonial-area.testimonial-1 .slider-item .client-img {
  display: none;
}
.testimonial-area.testimonial-1 .swiper-pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.testimonial-area.testimonial-1 .custom-image-pagination {
  max-width: 40px;
  width: 40px;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}
.testimonial-area.testimonial-1 .custom-image-pagination:not(:first-child) {
  -webkit-margin-start: -7px;
          margin-inline-start: -7px;
}
.testimonial-area.testimonial-1 .custom-image-pagination.swiper-pagination-bullet-active {
  width: auto;
  transform: scale(1.1);
}
.testimonial-area.testimonial-2 .slider-item {
  padding: 30px 0;
}
.testimonial-area.testimonial-2 .slider-item .client-info {
  margin-top: 30px;
  display: grid;
  gap: 20px;
  grid-template-columns: 70px 1fr;
  align-items: center;
}
@media (max-width: 991.98px) {
  .testimonial-area.testimonial-2 .slider-item .client-info {
    grid-template-columns: 50px 1fr;
    gap: 10px;
  }
}
.testimonial-area.testimonial-2 .slider-item .client-info img {
  max-width: 70px;
  max-height: 70px;
  border-radius: 50%;
}
@media (max-width: 991.98px) {
  .testimonial-area.testimonial-2 .slider-item .client-info img {
    max-height: 50px;
    max-width: 50px;
  }
}
.testimonial-area.testimonial-2 .slider-item .quote {
  padding: 50px 40px;
}
@media (max-width: 1199.98px) {
  .testimonial-area.testimonial-2 .slider-item .quote {
    padding: 40px 30px;
  }
}
@media (max-width: 991.98px) {
  .testimonial-area.testimonial-2 .slider-item .quote {
    padding: 40px 25px;
  }
}
.testimonial-area.testimonial-2 .swiper-slide {
  transition: all 0.4s;
}
.testimonial-area.testimonial-2 .swiper-slide.swiper-slide-active {
  transform: scale(1.2);
  z-index: 99;
}
@media (max-width: 991.98px) {
  .testimonial-area.testimonial-2 .swiper-slide.swiper-slide-active {
    transform: scale(1.1);
  }
}
@media (max-width: 767.98px) {
  .testimonial-area.testimonial-2 .swiper-slide.swiper-slide-active {
    transform: scale(1);
  }
}
.testimonial-area.testimonial-3 {
  padding-top: 240px;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: left top;
}
.testimonial-area.testimonial-3.mt-negative {
  margin-top: -230px;
}
.testimonial-area.testimonial-3 .slider-item .client-info {
  margin-top: 30px;
  display: grid;
  gap: 20px;
  grid-template-columns: 70px 1fr;
  align-items: center;
}
@media (max-width: 991.98px) {
  .testimonial-area.testimonial-3 .slider-item .client-info {
    grid-template-columns: 50px 1fr;
    gap: 10px;
  }
}
.testimonial-area.testimonial-3 .slider-item .client-info img {
  max-width: 70px;
  max-height: 70px;
  border-radius: 50%;
}
@media (max-width: 991.98px) {
  .testimonial-area.testimonial-3 .slider-item .client-info img {
    max-height: 50px;
    max-width: 50px;
  }
}
.testimonial-area.testimonial-3 .slider-item .quote {
  padding: 50px 40px;
}
@media (max-width: 1199.98px) {
  .testimonial-area.testimonial-3 .slider-item .quote {
    padding: 40px 30px;
  }
}
@media (max-width: 991.98px) {
  .testimonial-area.testimonial-3 .slider-item .quote {
    padding: 40px 25px;
  }
}
.testimonial-area.testimonial-3 .swiper-slide {
  transition: all 0.4s;
  opacity: 0.4;
}
.testimonial-area.testimonial-3 .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.testimonial-pricing-area {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.testimonial-pricing-area .shape-one {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: left top;
}
@media (max-width: 1400px) {
  .testimonial-pricing-area .shape-one {
    background-position: center top;
  }
}
.testimonial-pricing-area .shape-two {
  position: absolute;
  left: 0;
  top: 200px;
  width: 100%;
  height: calc(100% - 280px);
  z-index: -2;
  background-repeat: no-repeat;
  background-position: left top;
}
.testimonial-pricing-area .testimonial-area {
  padding-top: 220px;
  padding-bottom: 240px;
}

/* -----------------------------------------
    Newsletter CSS
----------------------------------------- */
.newsletter-area {
  position: relative;
  z-index: 1;
}
.newsletter-area .newsletter-form {
  max-width: 540px;
}
.newsletter-area .overlay {
  background-color: transparent;
}
.newsletter-area .image-absolute {
  position: absolute;
  top: -3rem;
  right: 60px;
  height: calc(100% + 3rem);
}
.newsletter-area .image-absolute img {
  height: 100%;
}
.newsletter-area h2 {
  margin-top: -8px;
}

.newsletter-1 .overlay {
  height: calc(100% - 6rem);
  bottom: 0;
  top: auto;
}
.newsletter-1 .content {
  margin-top: 6rem;
}
@media (max-width: 991.98px) {
  .newsletter-1 .overlay {
    height: 100%;
  }
  .newsletter-1 .content {
    margin-top: 0;
  }
}

.newsletter-2 {
  background-repeat: no-repeat;
  background-position: center center;
}
.newsletter-2 .newsletter-form {
  max-width: 620px;
}
.newsletter-2 .newsletter-form .form-control {
  height: 70px;
  line-height: 70px;
  padding-inline: 30px;
  font-size: var(--font-base);
}
.newsletter-2 .newsletter-form button {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-end: 30px;
          margin-inline-end: 30px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  font-size: 30px;
  transform: translateY(-50%);
}

/* -----------------------------------------
	Brand CSS
----------------------------------------- */
.brand-area .swiper-slide a {
  opacity: 0.5;
}
.brand-area .swiper-slide a:hover {
  opacity: 1;
}

/* -----------------------------------------
    Work CSS
----------------------------------------- */
.work-area .card {
  margin-bottom: 13px;
}
.work-area .card-icon {
  --size: 150px;
  width: var(--size);
  height: calc(var(--size) / 2);
  line-height: calc(var(--size) / 2);
  text-align: center;
  font-size: 40px;
  border-bottom-left-radius: calc(var(--size) * 2);
  border-bottom-right-radius: calc(var(--size) * 2);
  color: var(--text-white);
  background-color: var(--color-primary);
  background-image: var(--gradient-1);
}
.work-area .card .count {
  --size: 26px;
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: var(--size);
  height: var(--size);
  line-height: var(--size);
  text-align: center;
  border-radius: 50%;
  color: var(--text-white);
  font-size: var(--font-xsm);
  background-color: var(--color-medium);
}
.work-area .item:nth-child(1) .card-icon {
  background-color: #0D25B9;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #0D25B9 100%);
}
.work-area .item:nth-child(2) .card-icon {
  background-color: #97ABFF;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #97ABFF 100%);
}
.work-area .item:nth-child(3) .card-icon {
  background-color: #E67E22;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #E67E22 100%);
}
.work-area .item:nth-child(4) .card-icon {
  background-color: #B210FF;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #B210FF 100%);
}
.work-area .item:nth-child(5) .card-icon {
  background-color: #499C21;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #499C21 100%);
}
.work-area .item:nth-child(6) .card-icon {
  background-color: #F1C40F;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #F1C40F 100%);
}
.work-area .item:nth-child(7) .card-icon {
  background-color: #E67E22;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #E67E22 100%);
}
.work-area .item:nth-child(8) .card-icon {
  background-color: #E74C3C;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #E74C3C 100%);
}
.work-area .item:nth-child(9) .card-icon {
  background-color: #FFAA85;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #FFAA85 100%);
}
.work-area .item:nth-child(10) .card-icon {
  background-color: #3C8CE7;
  background-image: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.6) 0%, #3C8CE7 100%);
}

/* -----------------------------------------
	Footer CSS
----------------------------------------- */
.footer-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 40px 40px 0 0;
}
@media (max-width: 1199.98px) {
  .footer-area {
    border-radius: 15px 15px 0 0;
  }
}
.footer-area :is(p, a, span) {
  color: var(--text-medium);
  font-size: 14px;
}
.footer-area .footer-widget {
  margin-bottom: 30px;
}
.footer-area .footer-widget ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.footer-area .footer-widget .navbar-brand {
  margin: 0;
  margin-bottom: 28px;
  padding: 0;
}
.footer-area .footer-widget h5 {
  text-transform: capitalize;
  margin-bottom: 25px;
}
@media (max-width: 575.98px) {
  .footer-area .footer-widget h5 {
    margin-bottom: 20px;
  }
}
.footer-area .footer-widget p {
  margin-bottom: 25px;
}
.footer-area .footer-links li {
  position: relative;
  overflow: hidden;
  font-size: 14px;
}
.footer-area .footer-links li:not(:last-child) {
  margin-bottom: 14px;
}
@media (max-width: 575.98px) {
  .footer-area .footer-links li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.footer-area .footer-links li a {
  display: block;
}
.footer-area .footer-links li a:hover {
  color: var(--color-primary);
}
.footer-area .footer-links a {
  position: relative;
  overflow: hidden;
  display: block;
  transition: all 0.3s linear;
}
.footer-area .copy-right-area {
  text-align: center;
}
.footer-area .border-top {
  --border-color: var(--border-color-2);
  border-top-style: dashed !important;
}
.footer-area .social-link {
  --size: 35px;
  gap: 15px;
}
.footer-area .social-link a {
  color: var(--color-primary);
  background-color: rgba(var(--color-primary-rgb), 0.2);
  border-radius: 50%;
}
.footer-area .social-link a:hover {
  background-color: var(--color-primary);
  color: var(--text-white);
}
.footer-area .newsletter-form input {
  background: transparent;
  height: 50px;
  border-color: rgba(var(--color-white-rgb), 0.2);
}
.footer-area .newsletter-form .btn {
  top: 5px;
  right: 0;
  left: 0;
  width: 60px;
  padding: 0;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  height: calc(100% - 10px);
  position: absolute;
}
.footer-area.mt-negative {
  padding-top: 200px;
  margin-top: -100px;
}
.footer-area .bg-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.footer-2, .footer-3 {
  position: relative;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: right bottom;
  border-radius: 0;
}
.footer-2.mt-negative, .mt-negative.footer-3 {
  margin-top: -30px;
  padding-top: 30px;
  background-position-y: 30px;
}
@media (max-width: 575.98px) {
  .footer-2.mt-negative, .mt-negative.footer-3 {
    background-position-y: bottom;
  }
}
.footer-2 .contact-area .contact-form, .footer-3 .contact-area .contact-form {
  padding: 70px 60px;
}
@media (max-width: 767.98px) {
  .footer-2 .contact-area .contact-form, .footer-3 .contact-area .contact-form {
    padding: 40px;
  }
}
@media (max-width: 399.98px) {
  .footer-2 .contact-area .contact-form, .footer-3 .contact-area .contact-form {
    padding: 30px;
  }
}
.footer-2 .contact-area .form-control, .footer-3 .contact-area .form-control {
  border-radius: 0;
  border-width: 0;
  border-color: var(--color-secondary);
  border-bottom-width: 1px;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}
.footer-2 .contact-area textarea.form-control, .footer-3 .contact-area textarea.form-control {
  min-height: 65px;
}
.footer-2 .social-link, .footer-3 .social-link {
  --size: 40px;
}
.footer-2 .social-link a, .footer-3 .social-link a {
  background-color: var(--bg-white);
}
.footer-2 .copy-right-area .copy-right-content *, .footer-3 .copy-right-area .copy-right-content * {
  color: var(--text-white);
}

/* -----------------------------------------
	Blog CSS
----------------------------------------- */
.blog-area {
  position: relative;
  overflow: hidden;
}
.blog-area .card {
  overflow: hidden;
}
.blog-area .card .card-img {
  overflow: hidden;
}
.blog-area .card img {
  transition: transform 0.3s ease-out;
}
.blog-area .card p {
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-area .card .card-btn {
  line-height: 1;
  font-weight: var(--font-bold);
  text-decoration: underline;
  color: var(--color-primary);
}
.blog-area .card .card-list {
  display: inline-flex;
  align-items: center;
}
.blog-area .card .card-list li:not(:last-child) {
  -webkit-padding-end: 10px;
          padding-inline-end: 10px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  -webkit-border-end: 1px solid var(--border-color);
          border-inline-end: 1px solid var(--border-color);
}
.blog-area .card .card-list a {
  color: var(--text-medium);
}
.blog-area .card .card-list i {
  color: var(--color-primary);
}
@media (max-width: 399.98px) {
  .blog-area .card .card-list * {
    font-size: 10px;
  }
}
.blog-area .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
}
.blog-area .card:hover .btn-text {
  letter-spacing: 0.1em;
}
.blog-area .article-item {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.blog-area .article-item .card-img {
  flex: 0 0 auto;
  width: calc(33.3333333333% - 16px);
}
.blog-area .article-item .card-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.blog-area .article-item .content {
  flex: 0 0 auto;
  width: calc(66.6666666667% - 16px);
}
.blog-area .article-item .card-list li:not(:last-child) {
  -webkit-padding-end: 8px;
          padding-inline-end: 8px;
  -webkit-margin-end: 8px;
          margin-inline-end: 8px;
}
.blog-area.blog-1 .card-content {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: calc(100% - 40px);
  z-index: 3;
}
.blog-area.blog-2 .card-big .card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0) 42.41%, rgba(0, 0, 0, 0.94) 82.77%);
  z-index: 3;
  display: inline-flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
}
.blog-area.blog-2 .card-big .card-list * {
  color: var(--text-white);
}
.blog-area.blog-3 .card-content {
  position: relative;
  overflow: hidden;
  margin-top: -20px;
  z-index: 3;
  margin-inline: auto;
  width: calc(100% - 40px);
}
.blog-area.blog-3 .card-content::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 100%;
  height: calc(100% - 40px);
  background-color: var(--color-primary);
  background-image: var(--gradient-1);
  border-radius: 0 0 inherit inherit;
  transition: all 0.3s;
  z-index: -2;
}
.blog-area.blog-3 .card-content::after {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background-color: inherit;
  border-radius: inherit;
  z-index: -1;
}
.blog-area.blog-3 .card:hover .card-content::before {
  height: 100%;
}
.blog-area.blog-4 .card .card-list {
  gap: 20px;
}
.blog-area.blog-4 .card .card-list li {
  padding: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  border: 0;
}
.blog-area.blog-5 .card {
  cursor: pointer;
}
.blog-area.blog-5 .card .card-list {
  gap: 20px;
}
.blog-area.blog-5 .card .card-list li {
  padding: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  border: 0;
}
.blog-area.blog-5 .card .card-list li i {
  color: var(--color-secondary);
}
.blog-area.blog-5 .card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  background-color: var(--bg-white);
  transition: all 0.3s;
}
.blog-area.blog-5 .card:hover *:not(i) {
  color: var(--text-white);
}
.blog-area.blog-5 .card:hover .card-content {
  background-color: rgba(var(--color-primary-rgb), 0.9);
}

/* -----------------------------------------
    Video CSS
----------------------------------------- */
.video-area .video-inner {
  width: 100%;
  height: 440px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .video-area .video-inner {
    height: 340px;
  }
}
.video-area .video-inner::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  content: "";
  z-index: -1;
  background-color: var(--color-primary);
}
.video-area.mb-negative {
  margin-bottom: -220px;
  z-index: 2;
  position: relative;
}
@media (max-width: 767.98px) {
  .video-area.mb-negative {
    margin-bottom: -60px;
  }
}

/* -----------------------------------------
    Pricing CSS
----------------------------------------- */
.team-area .slider-item {
  padding: 60px 45px 45px;
  text-align: center;
  position: relative;
}
@media (max-width: 1199.98px) {
  .team-area .slider-item {
    padding: 60px 25px 30px;
  }
}
.team-area .slider-item .shape-content {
  padding: 0 10px 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}
.team-area .slider-item .shape-content .item-img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin-top: -10px;
  margin-inline: auto;
}
.team-area.team-2 .slider-item .shape-content {
  background-position: bottom center;
}

/* -----------------------------------------
    Overview CSS
----------------------------------------- */
.overview-area {
  position: relative;
  overflow: hidden;
  padding-bottom: 300px;
}
.overview-area .overview .card {
  gap: 24px;
  flex-direction: row;
  background-color: transparent;
}
.overview-area .overview .card .card-icon {
  flex: 0 0 auto;
  width: 30px;
  text-align: center;
  color: var(--color-primary);
  font-size: 30px;
}
.overview-area .overview .card:nth-child(1) .card-icon {
  color: #7e4efe;
}
.overview-area .overview .card:nth-child(2) .card-icon {
  color: #F6416C;
}
.overview-area .overview .card:nth-child(3) .card-icon {
  color: #50DD9D;
}
.overview-area .overview .card:nth-child(4) .card-icon {
  color: #3C8CE7;
}
.overview-area .overview .card:nth-child(5) .card-icon {
  color: #28C76F;
}
.overview-area .overview .card:nth-child(6) .card-icon {
  color: #499C21;
}
.overview-area .overview .card:nth-child(7) .card-icon {
  color: #F1C40F;
}
.overview-area .overview .card:nth-child(8) .card-icon {
  color: #E67E22;
}
.overview-area .overview .card:nth-child(9) .card-icon {
  color: #E74C3C;
}
.overview-area .overview .card:nth-child(10) .card-icon {
  color: #3C8CE7;
}
.overview-area .overview .image {
  position: relative;
}
.overview-area .overview .image img {
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}
@media (max-width: 1199.98px) {
  .overview-area .overview .pt-90, .overview-area .overview .pt-80 {
    padding-top: 0;
  }
}
.overview-area .features .card {
  gap: 24px;
  flex-direction: row;
  padding: 30px 30px 50px;
  overflow: hidden;
  z-index: 1;
  background-color: transparent;
}
.overview-area .features .card::before {
  position: absolute;
  content: "";
  top: -20px;
  left: -20px;
  bottom: 0;
  right: 0;
  width: calc(100% + 20px);
  height: calc(100% - 20px);
  border-radius: 10px;
  transform: rotateZ(5deg);
  z-index: -1;
  background-color: var(--bg-white);
}
.overview-area .features .card::after {
  position: absolute;
  content: "";
  top: -15px;
  left: 5px;
  bottom: 0;
  right: 0;
  width: calc(100% + 5px);
  height: 100%;
  border-radius: 20px;
  transform: rotateZ(5deg);
  background-color: var(--bg-white);
  z-index: -2;
}
.overview-area .features .card .card-icon {
  flex: 0 0 auto;
  text-align: center;
  color: var(--color-primary);
  font-size: 48px;
}
.overview-area .features .item:nth-child(1) .card-icon {
  color: #7e4efe;
}
.overview-area .features .item:nth-child(2) .card-icon {
  color: #7e4efe;
}
.overview-area .features .item:nth-child(3) .card-icon {
  color: #50DD9D;
}
.overview-area .features .item:nth-child(4) .card-icon {
  color: #F6416C;
}
.overview-area .features .item:nth-child(5) .card-icon {
  color: #28C76F;
}
.overview-area .features .item:nth-child(6) .card-icon {
  color: #499C21;
}
.overview-area .features .item:nth-child(7) .card-icon {
  color: #F1C40F;
}
.overview-area .features .item:nth-child(8) .card-icon {
  color: #E67E22;
}
.overview-area .features .item:nth-child(9) .card-icon {
  color: #E74C3C;
}
.overview-area .features .item:nth-child(10) .card-icon {
  color: #3C8CE7;
}
.overview-area .bg-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center bottom;
}

/* -----------------------------------------
	Page title CSS
----------------------------------------- */
.page-title-area {
  position: relative;
  padding-top: 155px;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
  z-index: 1;
}
.page-title-area .bg {
  position: absolute;
  z-index: -1;
  width: 50%;
}
.page-title-area .bg.bg-1 {
  bottom: -10%;
  left: -20%;
}
.page-title-area .bg.bg-2 {
  top: -10%;
  right: -20%;
}
.page-title-area h2 span {
  color: var(--color-primary);
}
.page-title-area .active {
  color: var(--color-primary);
}
.page-title-area .breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-dark);
}
.page-title-area .breadcrumb {
  margin-bottom: 0;
  justify-content: center;
}
.page-title-area .author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.page-title-area .author .author-img {
  flex: 0 0 auto;
  width: 130px;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}
.page-title-area .content {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.page-title-area .content .bg.bg-1 {
  bottom: -30%;
  left: -20%;
}
.page-title-area .content .bg.bg-2 {
  top: -30%;
  right: -20%;
}

/* -----------------------------------------
	Sidebar Widget CSS
----------------------------------------- */
.widget-area {
  position: -webkit-sticky;
  position: sticky;
  top: 10%;
}
.widget-area .widget {
  overflow: hidden;
}
.widget-area .widget .title {
  margin-bottom: 0;
  margin-top: -2px;
}
.widget-area .widget label {
  display: block;
  font-size: var(--font-sm);
}
.widget-area .widget .list-group li {
  display: block;
  color: var(--text-medium);
}
.widget-area .widget .list-group li:not(:last-child) {
  margin-bottom: 10px;
}
.widget-area .widget .list-group a {
  color: inherit;
}
.widget-area .widget-categories ul li a {
  display: block;
  color: var(--text-medium);
  position: relative;
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
}
.widget-area .widget-categories ul li a:hover {
  color: var(--color-primary);
}
.widget-area .widget-categories .list-item ul {
  padding-top: 5px;
}
.widget-area .widget-categories .list-item ul li:not(:last-child) {
  margin-bottom: 5px;
}
.widget-area .widget-categories .list-item li {
  font-size: var(--font-sm);
}
.widget-area .widget-categories .list-item > a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 1;
  border: 1px solid var(--color-primary);
}
.widget-area .widget-categories .list-item > a::after {
  position: absolute;
  content: "";
  left: 2px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: var(--color-primary);
}
.widget-area .widget-categories .list-item.open > a {
  color: var(--color-primary);
}
.widget-area .widget-categories .list-item.open > a::after {
  opacity: 1;
}
.widget-area .widget-categories .list-dropdown:not(.open) .menu-collapse {
  display: none;
}
.widget-area .widget-search .search-form {
  background: var(--color-white);
  box-shadow: 0px 10px 40px rgba(36, 36, 36, 0.1);
}
.widget-area .widget-post .article-item {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.widget-area .widget-post .article-item:last-child {
  margin-bottom: 0 !important;
}
.widget-area .widget-post .article-item .image {
  flex: 0 0 auto;
  max-width: 90px;
  overflow: hidden;
  border-radius: 5px;
}
.widget-area .widget-post .article-item .image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.widget-area .widget-post .article-item .content {
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
}
.widget-area .widget-post .article-item .content h6 {
  margin-bottom: 10px;
}
.widget-area .widget-post .article-item .content .time {
  color: #717584;
  font-size: 13px;
}
.widget-area .widget-post .article-item .info-list {
  font-size: 12px;
  margin-bottom: 5px;
}
.widget-area .widget-post .article-item .info-list li {
  -webkit-margin-end: 8px;
          margin-inline-end: 8px;
  -webkit-padding-end: 8px;
          padding-inline-end: 8px;
}
.widget-area .widget-post .article-item .info-list li:last-child {
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}
.widget-area .widget-post .article-item .info-list li i {
  font-size: 12px;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}
@media (max-width: 575.98px) {
  .widget-area .widget-post .article-item {
    flex-direction: column;
  }
  .widget-area .widget-post .article-item .image {
    max-width: 100%;
  }
  .widget-area .widget-post .article-item .content {
    padding: 0;
    margin-top: 20px;
    text-align: center;
  }
}
.widget-area .widget-blog-categories ul li {
  margin-bottom: 5px;
}
.widget-area .widget-blog-categories ul li:last-child {
  margin: 0;
}
.widget-area .widget-blog-categories ul li a {
  color: var(--color-gray-1);
}
.widget-area .widget-blog-categories ul li i {
  color: var(--color-primary);
  -webkit-margin-end: 8px;
          margin-inline-end: 8px;
}

/* -----------------------------------------
	Pagination CSS
----------------------------------------- */
.pagination-nav {
  padding-top: 20px;
}
.pagination-nav .page-link {
  color: var(--text-dark);
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 5px;
  padding: 0;
  border-radius: 50%;
  font-size: var(--font-base);
  border-color: transparent;
}
.pagination-nav .page-item:first-child .page-link,
.pagination-nav .page-item:last-child .page-link {
  border-radius: 50%;
}
.pagination-nav .page-item.active .page-link, .pagination-nav .page-item:hover .page-link {
  color: var(--text-white);
  background-color: var(--color-primary);
  border-color: var(--border-color);
}
.pagination-nav .page-item.next, .pagination-nav .page-item.prev {
  border: none;
}
.pagination-nav .page-item.next:hover, .pagination-nav .page-item.prev:hover {
  color: var(--color-primary);
  background: transparent;
}

/* -----------------------------------------
Authentication CSS
----------------------------------------- */
.authentication-area {
  padding: 50px 0;
}
.authentication-area .wrapper {
  position: relative;
  overflow: hidden;
}
.authentication-area .main-form {
  padding: 20px 0;
  -webkit-padding-end: 40px;
          padding-inline-end: 40px;
  -webkit-padding-start: 30px;
          padding-inline-start: 30px;
}
@media (max-width: 991.98px) {
  .authentication-area .main-form {
    padding: 20px 30px;
  }
}
.authentication-area .main-form .icon-link {
  position: absolute;
  top: 30px;
  right: 0;
  width: 50px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 30px 0 0 30px;
}
.authentication-area .main-form .icon-link i {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.authentication-area .link a {
  display: inline-block;
  color: var(--color-primary);
}
.authentication-area .link a:hover {
  color: var(--color-primary);
}

/* -----------------------------------------
	Blog Details CSS
----------------------------------------- */
.blog-details-area .item-single {
  overflow: hidden;
  background: var(--color-white);
}
.blog-details-area .item-single .image {
  position: relative;
  overflow: hidden;
}
.blog-details-area .item-single .image .btn {
  position: absolute;
  bottom: 5%;
  right: 5%;
  z-index: 1;
}
.blog-details-area .item-single .image i {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}
.blog-details-area .item-single .content {
  position: relative;
  padding-top: 25px;
}
.blog-details-area .item-single .content .title {
  margin-bottom: 15px;
}
.blog-details-area .item-single .content .title a:hover {
  color: var(--color-primary);
}
.blog-details-area .item-single .content p {
  margin-bottom: 30px;
}
.blog-details-area .item-single .content .blockquote {
  padding: 24px;
  background-color: var(--bg-1);
  border-radius: 5px;
}
.blog-details-area .item-single .content .blockquote i {
  color: var(--color-primary);
  font-size: 24px;
}
.blog-details-area .item-single .content .blockquote p {
  color: var(--text-dark);
  margin-top: 10px;
  margin-bottom: 0;
  font-style: italic;
}
.blog-details-area .info-list {
  padding: 0;
  margin: 0;
  font-size: 15px;
  margin-bottom: 20px;
  text-transform: capitalize;
  line-height: 1;
}
.blog-details-area .info-list li {
  display: inline-block;
  -webkit-margin-end: 14px;
          margin-inline-end: 14px;
  -webkit-padding-end: 14px;
          padding-inline-end: 14px;
  color: var(--text-medium);
  -webkit-border-end: 1px solid var(--border-color);
          border-inline-end: 1px solid var(--border-color);
}
.blog-details-area .info-list li:last-child {
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  border: 0;
}
.blog-details-area .info-list li i {
  font-size: 16px;
  -webkit-margin-end: 8px;
          margin-inline-end: 8px;
  color: var(--color-primary);
}
.blog-details-area .comments .comment-box {
  overflow: hidden;
  background: var(--color-white);
  padding: 30px 30px 0;
  border: 1px solid var(--border-color) !important;
}
.blog-details-area .comments .name {
  margin-top: -3px;
  margin-bottom: 2px;
}
.blog-details-area .comments p {
  margin-bottom: 0;
}
.blog-details-area .comments .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.blog-details-area .comments .comment-list .comment .comment-body {
  display: flex;
  margin-bottom: 30px;
}
.blog-details-area .comments .comment-list .comment .comment-body .comment-author {
  -webkit-padding-end: 16px;
          padding-inline-end: 16px;
  max-width: 100px;
}
.blog-details-area .comments .comment-list .comment .comment-body .comment-author .lazy-container {
  height: auto;
}
.blog-details-area .comments .comment-list .comment .comment-body .comment-content p {
  margin-bottom: 10px;
}
.blog-details-area .comments .comment-list .comment .comment-body .comment-content .btn-reply {
  color: var(--color-primary);
  display: inline-block;
}
.blog-details-area .comments .comment-list .comment .comment-body .comment-content .btn-reply i {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}
.blog-details-area .comments .comment-list .comment .children {
  list-style-type: none;
  padding: 0;
  -webkit-padding-start: 30px;
          padding-inline-start: 30px;
}
.blog-details-area .comments .comment-list .comment .children .comment-body {
  -webkit-padding-start: 35px;
          padding-inline-start: 35px;
  margin-bottom: 25px;
}
.blog-details-area .comments .comment-reply .comment-notes {
  margin-bottom: 25px;
}
.blog-details-area .widget-area .widget {
  padding: 40px;
}

.accordion-item {
  border: none;
  padding: 20px 25px;
  border-radius: 10px;
  background-color: var(--bg-white);
  box-shadow: 0px 5px 30px 0px rgba(78, 76, 76, 0.1);
}
.accordion-item .accordion-header .accordion-button {
  color: var(--text-dark);
  font-weight: inherit;
  padding: 0;
  border: none;
  background-color: transparent;
  box-shadow: none;
}
.accordion-item .accordion-header .accordion-button::after {
  background: none;
  font-size: 14px;
  font-family: "Font Awesome 5 Pro" !important;
  content: "\f067";
  transform: none;
  text-align: right;
}
.accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: var(--color-primary);
}
.accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  color: var(--color-primary);
  content: "\f068";
}
.accordion-item .accordion-body {
  position: relative;
  padding: 16px 0 0 0;
}
.accordion-item .accordion-body p {
  margin: 0;
}

/* -----------------------------------------
	Contact CSS
----------------------------------------- */
.contact-area {
  position: relative;
  z-index: 1;
}
.contact-area .card {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 25px 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0px 10px 40px 0px rgba(78, 76, 76, 0.1);
}
.contact-area .card .icon {
  --size: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  height: var(--size);
  flex: 0 0 var(--size);
  border-radius: 8px;
  font-size: 28px;
  color: var(--color-primary);
  background: rgba(var(--color-primary), 0.7);
}
@media (max-width: 575.98px) {
  .contact-area .card .icon {
    --size: 60px;
  }
}
.contact-area .card .card-text {
  -webkit-padding-start: 22px;
          padding-inline-start: 22px;
  margin-bottom: 0;
}
.contact-area .card .card-text P {
  color: var(--text-dark);
  margin-bottom: 5px;
}
.contact-area .card .card-text P:last-child {
  margin-bottom: 0;
}
.contact-area iframe {
  width: 100%;
}
.contact-area .checkbox label {
  position: relative;
  cursor: pointer;
  line-height: 1;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 0;
  color: var(--text-medium);
}
.contact-area .checkbox label a {
  color: var(--color-primary);
}
.contact-area .checkbox input[type=checkbox] {
  display: none;
  pointer-events: none;
}
.contact-area .checkbox input[type=checkbox] + label {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.contact-area .checkbox input[type=checkbox] + label svg {
  width: 25px;
  stroke: var(--color-primary);
  stroke-width: 5;
}
.contact-area .checkbox input[type=checkbox] + label svg .box {
  stroke-dasharray: 320;
  stroke-dashoffset: 0;
  fill: var(--bg-light) !important;
}
.contact-area .checkbox input[type=checkbox] + label svg .check {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  fill: none;
}
.contact-area .checkbox input[type=checkbox] + label span {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.contact-area .checkbox input[type=checkbox]:checked + label .box {
  stroke-dashoffset: 320;
  transition: stroke-dashoffset 0.3s linear;
}
.contact-area .checkbox input[type=checkbox]:checked + label .check {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.3s linear;
}
.contact-area .checkbox .reverse .box {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.3s linear;
}
.contact-area .checkbox .reverse .check {
  stroke-dashoffset: 70;
  transition: stroke-dashoffset 0.3s linear;
}
.contact-area .color-1 .icon {
  background: rgba(13, 110, 253, 0.06);
  color: #0D6EFD;
}
.contact-area .color-2 .icon {
  background: rgba(228, 16, 16, 0.06);
  color: #E41010;
}
.contact-area .color-3 .icon {
  background: rgba(20, 198, 175, 0.06);
  color: #14C6AF;
}
.contact-area .color-4 .icon {
  background: rgba(44, 195, 243, 0.06);
  color: #2CC3F3;
}
.contact-area .color-5 .icon {
  background: rgba(245, 122, 9, 0.06);
  color: #F57A09;
}
.contact-area .color-6 .icon {
  background: rgba(107, 118, 255, 0.06);
  color: #6B76FF;
}
.contact-area .color-7 .icon {
  background: rgba(237, 121, 142, 0.06);
  color: #ED798E;
}
.contact-area .color-8 .icon {
  background: rgba(179, 205, 227, 0.06);
  color: #B3CDE3;
}

/* -----------------------------------------
    Terms & Conditions CSS
----------------------------------------- */
.terms-condition-area .item-single {
  padding: 30px;
  background-color: var(--bg-white);
  box-shadow: 0px 4px 80px rgba(17, 16, 33, 0.08);
}
.terms-condition-area .item-single h3 {
  margin-bottom: 20px;
}
.terms-condition-area .item-single p:last-child {
  margin-bottom: 0;
}
.terms-condition-area ul {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
}

/* -----------------------------------------
	Coming Soon CSS
----------------------------------------- */
.coming-soon-area .wrapper {
  position: relative;
  overflow: hidden;
}
.coming-soon-area .main-form {
  padding: 20px 0;
  -webkit-padding-end: 40px;
          padding-inline-end: 40px;
  -webkit-padding-start: 30px;
          padding-inline-start: 30px;
}
@media (max-width: 991.98px) {
  .coming-soon-area .main-form {
    padding: 20px 30px;
  }
}
.coming-soon-area .main-form .icon-link {
  position: absolute;
  top: 30px;
  right: 0;
  width: 50px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 30px 0 0 30px;
}
.coming-soon-area .main-form .icon-link i {
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
.coming-soon-area .timer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.coming-soon-area .timer .count {
  flex: 0 0 auto;
  width: calc(25% - 15px);
  height: 105px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .coming-soon-area .timer .count {
    width: calc(50% - 10px);
  }
}
.coming-soon-area .newsletter-form input {
  height: 50px;
}
.coming-soon-area .newsletter-form .btn {
  top: 5px;
  right: 0;
  left: 0;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: calc(100% - 10px);
  line-height: calc(100% - 10px);
  position: absolute;
}

/* -----------------------------------------
	Error CSS
----------------------------------------- */
.error-area {
  display: flex;
  align-items: center;
  height: 100vh;
}
.error-area .error-content {
  text-align: center;
}
.error-area .error-content img {
  max-width: 70%;
}
.error-area .error-content h3 {
  margin-bottom: 20px;
  font-size: 40px;
}
.error-area .error-content p {
  max-width: 550px;
  margin: auto;
  margin-bottom: 20px;
}/*# sourceMappingURL=style.css.map */

/* footer css */
/* Main Footer Container */
.tihs_footer {
  background-color: #003300;
  color: #FAFAFA;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Footer Background Pattern */
.tihs_footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
      radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 15%),
      radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 15%),
      linear-gradient(135deg, rgba(0, 51, 0, 0) 0%, rgba(0, 100, 0, 0.3) 100%);
  z-index: -1;
}

/* Top Wave Decoration */
.tihs_footer_wave {
  width: 100%;
  height: 60px;
  margin-bottom: -5px;
  fill: #003300;
  filter: drop-shadow(0 -4px 3px rgba(0, 0, 0, 0.1));
}

/* Footer Bottom Content */
.tihs_footer_bottom {
  padding: 20px 0;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Copyright Text */
.tihs_footer_copyright {
  font-size: 14px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

/* Credit Section */
.tihs_footer_credit {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

/* Creator Name with Animation */
.tihs_creator_name {
  color: #FFD700;
  font-weight: 700;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0 5px;
  text-decoration: none;
}

/* Glowing effect */
.tihs_creator_name::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFD700;
  opacity: 0.15;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: -1;
  border-radius: 3px;
}

.tihs_creator_name:hover {
  color: #FFD700;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.tihs_creator_name:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Sparkling Animation */
.tihs_creator_name::after {
  content: "✨";
  position: absolute;
  top: -15px;
  right: -5px;
  font-size: 12px;
  opacity: 0;
  transition: all 0.3s ease;
  animation: sparkle 2s infinite;
}

.tihs_creator_name:hover::after {
  opacity: 1;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
  50% { transform: scale(1.2) rotate(15deg); opacity: 1; }
}

/* Footer Main Content */
.tihs_footer_main {
  padding: 60px 0;
  position: relative;
}

.tihs_footer_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* Footer Logo Section */
.tihs_footer_logo_section {
  flex: 1;
  min-width: 250px;
}

.tihs_footer_logo {
  font-size: 32px;
  font-weight: 800;
  color: #FAFAFA;
  margin-bottom: 20px;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
}

.tihs_footer_logo span {
  color: #FFD700;
  position: relative;
}

.tihs_footer_logo span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #FFD700;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.tihs_footer_logo:hover span::after {
  transform: scaleX(1);
  transform-origin: left;
}

.tihs_footer_desc {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* Footer Social Icons */
.tihs_footer_social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.tihs_footer_social_link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #FAFAFA;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.tihs_footer_social_link:hover {
  color: #252525;
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.tihs_footer_social_link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFD700;
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: -1;
}

.tihs_footer_social_link:hover::before {
  transform: scale(1);
}

/* Footer Quick Links */
.tihs_footer_links_section {
  flex: 1;
  min-width: 200px;
}

.tihs_footer_heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: #FAFAFA;
}

.tihs_footer_heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #FFD700;
  transition: all 0.3s ease;
}

.tihs_footer_links_section:hover .tihs_footer_heading::after {
  width: 60px;
}

.tihs_footer_links {
  list-style: none;
}

.tihs_footer_link_item {
  margin-bottom: 12px;
}

.tihs_footer_link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
  display: inline-block;
}

.tihs_footer_link::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #FFD700;
  transition: all 0.3s ease;
}

.tihs_footer_link:hover {
  color: #FFD700;
  transform: translateX(5px);
}

.tihs_footer_link:hover::before {
  transform: translateX(3px);
}

/* Footer Contact Section */
.tihs_footer_contact_section {
  flex: 1;
  min-width: 250px;
}

.tihs_footer_contact_info {
  list-style: none;
}

.tihs_footer_contact_item {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.tihs_footer_contact_icon {
  color: #FFD700;
  font-size: 16px;
  width: 20px;
  text-align: center;
  margin-top: 3px;
}

.tihs_footer_contact_text {
  flex: 1;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer Map Section */
.tihs_footer_map_section {
  flex: 1;
  min-width: 250px;
}

.tihs_footer_map {
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  position: relative;
}

.tihs_footer_map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 100, 0, 0.1);
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.tihs_footer_map:hover::before {
  background: rgba(0, 100, 0, 0);
}

.tihs_branch_heading {
  font-size: 16px;
  font-weight: 600;
  color: #FFD700;
  margin: 15px 0 10px;
}

.tihs_branch_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tihs_branch_item {
  display: inline-block;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
}

.tihs_branch_item:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
  border-left: 2px solid #FFD700;
  cursor: pointer;
}

/* Go to top button */
.tihs_go_top {
  position: absolute;
  right: 30px;
  bottom: 100px;
  width: 45px;
  height: 45px;
  background: #FFD700;
  color: #252525;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.tihs_go_top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tihs_go_top:hover {
  background: #FAFAFA;
  color: #252525;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Floating Shapes */
.tihs_footer_shape {
  position: absolute;
  opacity: 0.15;
  z-index: -1;
}

.tihs_footer_shape_1 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #FFD700;
  top: 10%;
  left: 10%;
  animation: float1 15s ease-in-out infinite;
}

.tihs_footer_shape_2 {
  width: 60px;
  height: 60px;
  background: #8B0000;
  top: 30%;
  right: 10%;
  transform: rotate(45deg);
  animation: float2 20s ease-in-out infinite;
}

.tihs_footer_shape_3 {
  width: 80px;
  height: 80px;
  background: #006400;
  bottom: 20%;
  left: 15%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: float3 18s ease-in-out infinite;
} {
  position: absolute;
  opacity: 0.15;
  z-index: -1;
}

.tihs_footer_shape_1 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--secondary);
  top: 10%;
  left: 10%;
  animation: float1 15s ease-in-out infinite;
}

.tihs_footer_shape_2 {
  width: 60px;
  height: 60px;
  background: var(--accent);
  top: 30%;
  right: 10%;
  transform: rotate(45deg);
  animation: float2 20s ease-in-out infinite;
}

.tihs_footer_shape_3 {
  width: 80px;
  height: 80px;
  background: var(--primary);
  bottom: 20%;
  left: 15%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -15px) rotate(90deg); }
  50% { transform: translate(0, 30px) rotate(180deg); }
  75% { transform: translate(-15px, 15px) rotate(270deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(45deg); }
  33% { transform: translate(20px, 20px) rotate(90deg); }
  66% { transform: translate(-20px, 10px) rotate(0deg); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(25px, -25px) rotate(180deg); }
}

/* Responsive styles */
@media (max-width: 1024px) {
  .tihs_footer_container {
      justify-content: flex-start;
  }

  .tihs_footer_logo_section,
  .tihs_footer_links_section,
  .tihs_footer_contact_section,
  .tihs_footer_map_section {
      flex: 1 0 calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .tihs_footer_logo_section,
  .tihs_footer_links_section,
  .tihs_footer_contact_section,
  .tihs_footer_map_section {
      flex: 1 0 100%;
  }

  .tihs_footer_logo_section {
      text-align: center;
  }

  .tihs_footer_social {
      justify-content: center;
  }

  .tihs_footer_heading::after {
      left: 50%;
      transform: translateX(-50%);
  }

  .tihs_footer_heading {
      text-align: center;
  }

  .tihs_footer_links_section:hover .tihs_footer_heading::after {
      width: 80px;
  }

  .tihs_footer_links {
      text-align: center;
  }

  .tihs_footer_contact_info {
      max-width: 300px;
      margin: 0 auto;
  }

  .tihs_go_top {
      right: 20px;
      bottom: 80px;
      width: 40px;
      height: 40px;
  }
}

@media (max-width: 480px) {
  .tihs_footer_main {
      padding: 40px 0;
  }

  .tihs_footer_wave {
      height: 40px;
  }

  .tihs_footer_logo {
      font-size: 28px;
  }

  .tihs_footer_social_link {
      width: 35px;
      height: 35px;
  }

  .tihs_footer_contact_item {
      gap: 10px;
  }

  .tihs_go_top {
      right: 15px;
      bottom: 70px;
      width: 35px;
      height: 35px;
  }

  .tihs_footer_shape_1 {
      width: 60px;
      height: 60px;
  }

  .tihs_footer_shape_2 {
      width: 40px;
      height: 40px;
  }

  .tihs_footer_shape_3 {
      width: 50px;
      height: 50px;
  }

  .tihs_footer_bottom {
      padding: 15px 0;
  }
  
  .tihs_footer_map iframe {
      height: 150px;
  }
  
  .tihs_branch_item {
      font-size: 11px;
      padding: 4px 8px;
  }
}

/* banner area css */
.tihs_banner {
  background-color: #FAFAFA;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* Banner Background Shapes */
.tihs_banner::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(0, 100, 0, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 50%;
  top: -300px;
  left: -200px;
  z-index: 0;
}

.tihs_banner::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(139, 0, 0, 0.05) 100%);
  border-radius: 50%;
  bottom: -200px;
  right: -100px;
  z-index: 0;
}

/* Banner Container */
.tihs_banner_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Banner Content Left */
.tihs_banner_content {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.tihs_banner_pretitle {
  font-size: 18px;
  font-weight: 500;
  color: #8B0000;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-left: 30px;
}

.tihs_banner_pretitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #FFD700;
  transform: translateY(-50%);
}

.tihs_banner_title {
  font-size: 48px;
  font-weight: 800;
  color: #006400;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
}

.tihs_banner_title span {
  color: #FFD700;
  position: relative;
  display: inline-block;
}

.tihs_banner_title span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(255, 215, 0, 0.3);
  z-index: -1;
}

.tihs_banner_description {
  font-size: 16px;
  color: #4A4A4A;
  margin-bottom: 30px;
  max-width: 90%;
}

.tihs_banner_buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.tihs_banner_btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.tihs_banner_btn_primary {
  background: #006400;
  color: #FFFFFF;
  border: 2px solid #006400;
}

.tihs_banner_btn_secondary {
  background: transparent;
  color: #006400;
  border: 2px solid #006400;
}

.tihs_banner_btn::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: all 0.5s ease;
  z-index: -1;
}

.tihs_banner_btn:hover::before {
  left: 100%;
}

.tihs_banner_btn_primary:hover {
  background: #004D00;
  border-color: #004D00;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 100, 0, 0.2);
}

.tihs_banner_btn_secondary:hover {
  background: rgba(0, 100, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 100, 0, 0.1);
}

/* Banner Stats */
.tihs_banner_stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.tihs_banner_stat {
  text-align: center;
  flex: 1;
  min-width: 100px;
  position: relative;
  transition: all 0.3s ease;
}

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

.tihs_banner_stat::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #FFD700;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.tihs_banner_stat:hover::before {
  width: 60%;
}

.tihs_banner_stat_number {
  font-size: 36px;
  font-weight: 700;
  color: #006400;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
}

.tihs_banner_stat_number::after {
  content: "+";
  position: absolute;
  top: 0;
  right: -15px;
  font-size: 24px;
  color: #FFD700;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.tihs_banner_stat_text {
  font-size: 14px;
  color: #4A4A4A;
}

/* Animation for stat numbers */
.tihs_banner_stat.animate .tihs_banner_stat_number {
  animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Banner Form Right */
.tihs_banner_form_container {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.tihs_banner_form_wrapper {
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 450px;
  margin-left: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 5px solid #FFD700;
}

.tihs_banner_form_wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tihs_banner_form_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 100, 0, 0.03) 0%, rgba(255, 215, 0, 0.03) 100%);
  z-index: -1;
}

.tihs_banner_form_wrapper::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  z-index: -1;
}

.tihs_banner_form_title {
  font-size: 24px;
  font-weight: 700;
  color: #006400;
  margin-bottom: 5px;
  text-align: center;
}

.tihs_banner_form_subtitle {
  font-size: 14px;
  color: #4A4A4A;
  margin-bottom: 25px;
  text-align: center;
}

.tihs_banner_form_session {
  background: #FFD700;
  color: #252525;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.tihs_banner_form_session i {
  margin-right: 5px;
}

.tihs_banner_form_group {
  margin-bottom: 20px;
  position: relative;
}

.tihs_banner_form_label {
  position: absolute;
  left: 15px;
  top: 12px;
  color: #4A4A4A;
  font-size: 14px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.tihs_banner_form_control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: transparent;
  color: #252525;
}

.tihs_banner_form_control:focus {
  border-color: #006400;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 100, 0, 0.1);
}

.tihs_banner_form_control:focus + .tihs_banner_form_label,
.tihs_banner_form_control:not(:placeholder-shown) + .tihs_banner_form_label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  background: #FFFFFF;
  padding: 0 5px;
  color: #006400;
}

/* Enhanced dropdown styling for animation */
.tihs_banner_form_select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23006400' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tihs_banner_form_select:focus {
  border-color: #006400;
  box-shadow: 0 0 0 3px rgba(0, 100, 0, 0.1);
}

.tihs_banner_form_select:hover {
  border-color: #006400;
}

.tihs_banner_form_select option {
  padding: 10px;
  background-color: #FFFFFF;
  color: #252525;
}

.tihs_banner_form_select option:checked {
  background-color: rgba(0, 100, 0, 0.1);
  color: #006400;
}

/* Animation for the dropdown arrow */
.tihs_banner_form_select:focus {
  background-position: right 10px center, 0 0;
  animation: arrowBounce 1s infinite;
}

@keyframes arrowBounce {
  0%, 100% { background-position: right 10px center; }
  50% { background-position: right 10px calc(center + 2px); }
}

/* Special styling for select label */
.tihs_banner_form_select + .tihs_banner_form_label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  background: #FFFFFF;
  padding: 0 5px;
  color: #006400;
}

.tihs_banner_form_submit {
  width: 100%;
  padding: 14px;
  background: #006400;
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  text-transform: uppercase;
}

.tihs_banner_form_submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.5s ease;
}

.tihs_banner_form_submit:hover {
  background: #004D00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 100, 0, 0.2);
}

.tihs_banner_form_submit:hover::before {
  left: 100%;
}

.tihs_banner_form_privacy {
  text-align: center;
  font-size: 12px;
  color: #4A4A4A;
  margin-top: 15px;
}

/* Banner Floating Elements */
.tihs_banner_shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.tihs_banner_shape {
  position: absolute;
  opacity: 0.5;
}

.tihs_banner_shape_1 {
  top: 20%;
  left: 10%;
  width: 20px;
  height: 20px;
  background: #FFD700;
  border-radius: 50%;
  animation: floating 8s infinite ease-in-out;
}

.tihs_banner_shape_2 {
  top: 60%;
  left: 15%;
  width: 15px;
  height: 15px;
  background: #006400;
  transform: rotate(45deg);
  animation: floating 6s infinite ease-in-out;
  animation-delay: 1s;
}

.tihs_banner_shape_3 {
  top: 30%;
  right: 20%;
  width: 25px;
  height: 25px;
  background: #8B0000;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: floating 7s infinite ease-in-out;
  animation-delay: 2s;
}

.tihs_banner_shape_4 {
  bottom: 20%;
  right: 10%;
  width: 18px;
  height: 18px;
  background: #FFD700;
  border-radius: 3px;
  animation: floating 9s infinite ease-in-out;
  animation-delay: 3s;
}

@keyframes floating {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-10px, 10px) rotate(5deg); }
  50% { transform: translate(0, 15px) rotate(0deg); }
  75% { transform: translate(10px, 5px) rotate(-5deg); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .tihs_banner_title {
      font-size: 42px;
  }

  .tihs_banner_form_wrapper {
      max-width: 400px;
  }
}

@media (max-width: 991px) {
  .tihs_banner {
      padding: 60px 0;
  }

  .tihs_banner_container {
      flex-direction: column;
      gap: 40px;
  }

  .tihs_banner_content {
      padding-right: 0;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .tihs_banner_description {
      max-width: 100%;
  }

  .tihs_banner_pretitle {
      padding-left: 0;
  }

  .tihs_banner_pretitle::before {
      display: none;
  }

  .tihs_banner_form_container {
      width: 100%;
  }

  .tihs_banner_form_wrapper {
      margin: 0 auto;
      max-width: 500px;
  }

  .tihs_banner_buttons {
      justify-content: center;
  }

  .tihs_banner_stats {
      justify-content: center;
  }
}

@media (max-width: 768px) {
  .tihs_banner {
      padding: 50px 0;
      min-height: auto;
  }

  .tihs_banner_title {
      font-size: 36px;
  }

  .tihs_banner_stat_number {
      font-size: 30px;
  }

  .tihs_banner_stat_text {
      font-size: 12px;
  }

  .tihs_banner_form_radio_group {
      justify-content: center;
  }
}

@media (max-width: 576px) {
  .tihs_banner {
      padding: 40px 0;
  }

  .tihs_banner_title {
      font-size: 30px;
  }

  .tihs_banner_description {
      font-size: 14px;
  }

  .tihs_banner_btn {
      width: 100%;
  }

  .tihs_banner_stats {
      gap: 15px;
  }

  .tihs_banner_stat {
      min-width: 80px;
  }

  .tihs_banner_form_title {
      font-size: 20px;
  }

  .tihs_banner_form_subtitle {
      font-size: 13px;
  }

  .tihs_banner_form_radio_label {
      font-size: 11px;
      padding: 6px 10px;
  }
}
/* about area css */
 /* Main About Section */
 .tihs_about {
  padding: 80px 0;
  background-color: #FAFAFA;
  position: relative;
  overflow: hidden;
}

/* Background Elements */
.tihs_about::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(0, 100, 0, 0.03) 0%, rgba(255, 215, 0, 0.03) 100%);
  border-radius: 50%;
  top: -200px;
  left: -200px;
  z-index: 0;
}

.tihs_about::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(139, 0, 0, 0.03) 100%);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
  z-index: 0;
}

/* Container */
.tihs_about_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Left Image Section */
.tihs_about_images {
  flex: 1;
  min-width: 300px;
  position: relative;
  padding-right: 30px;
}

.tihs_about_image_grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 15px;
  height: 100%;
  min-height: 450px;
}

.tihs_about_image_item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.5s ease;
}

.tihs_about_image_item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tihs_about_image_item_1 {
  grid-column: 1 / 5;
  grid-row: 1 / 5;
}

.tihs_about_image_item_2 {
  grid-column: 5 / 7;
  grid-row: 2 / 5;
}

.tihs_about_image_item_3 {
  grid-column: 2 / 5;
  grid-row: 5 / 7;
}

.tihs_about_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.tihs_about_image_item:hover .tihs_about_image {
  transform: scale(1.1);
}

/* Image overlay */
.tihs_about_image_item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 100, 0, 0.3), transparent);
  opacity: 0;
  transition: all 0.3s ease;
}

.tihs_about_image_item:hover::after {
  opacity: 1;
}

/* Experience badge */
.tihs_about_experience {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #006400;
  color: #FFFFFF;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
  animation: pulse 3s infinite;
}

.tihs_about_experience_number {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: #FFD700;
}

.tihs_about_experience_text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}

/* Right Content Section */
.tihs_about_content {
  flex: 1;
  min-width: 300px;
  padding-left: 30px;
}

.tihs_about_subtitle {
  font-size: 16px;
  color: #8B0000;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-left: 40px;
}

.tihs_about_subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #FFD700;
  transform: translateY(-50%);
}

.tihs_about_title {
  font-size: 36px;
  font-weight: 700;
  color: #006400;
  margin-bottom: 25px;
  line-height: 1.2;
}

.tihs_about_title span {
  position: relative;
  display: inline-block;
}

.tihs_about_title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 8px;
  background: rgba(255, 215, 0, 0.3);
  z-index: -1;
}

.tihs_about_description {
  margin-bottom: 25px;
  color: #4A4A4A;
}

.tihs_about_text_highlight {
  font-weight: 700;
  color: #006400;
}

.tihs_about_features {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0;
  gap: 20px;
}

.tihs_about_feature {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 3px solid #FFD700;
}

.tihs_about_feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-left: 3px solid #006400;
}

.tihs_about_feature_icon {
  color: #006400;
  font-size: 28px;
  margin-bottom: 15px;
}

.tihs_about_feature_title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #252525;
}

.tihs_about_feature_text {
  font-size: 14px;
  color: #4A4A4A;
}

.tihs_about_cta {
  margin-top: 30px;
}

.tihs_about_cta_text {
  font-size: 18px;
  font-weight: 600;
  color: #252525;
  margin-bottom: 15px;
}

.tihs_about_btn {
  display: inline-block;
  padding: 12px 30px;
  background: #006400;
  color: #FFFFFF;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid #006400;
}

.tihs_about_btn::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: all 0.5s ease;
  z-index: -1;
}

.tihs_about_btn:hover {
  background: #004D00;
  border-color: #004D00;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 100, 0, 0.2);
}

.tihs_about_btn:hover::before {
  left: 100%;
}

/* Floating shapes */
.tihs_about_shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.tihs_about_shape {
  position: absolute;
  opacity: 0.6;
}

.tihs_about_shape_1 {
  top: 20%;
  right: 10%;
  width: 15px;
  height: 15px;
  background: #FFD700;
  border-radius: 50%;
  animation: floating 6s infinite ease-in-out;
}

.tihs_about_shape_2 {
  bottom: 30%;
  left: 10%;
  width: 20px;
  height: 20px;
  background: #006400;
  transform: rotate(45deg);
  animation: floating 7s infinite ease-in-out;
  animation-delay: 1s;
}

.tihs_about_shape_3 {
  top: 70%;
  right: 20%;
  width: 25px;
  height: 25px;
  background: #8B0000;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: floating 8s infinite ease-in-out;
  animation-delay: 2s;
}

@keyframes floating {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-10px, 10px) rotate(5deg); }
  50% { transform: translate(0, 15px) rotate(0deg); }
  75% { transform: translate(10px, 5px) rotate(-5deg); }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .tihs_about_container {
      flex-direction: column;
  }

  .tihs_about_images {
      padding-right: 0;
      margin-bottom: 50px;
  }

  .tihs_about_content {
      padding-left: 0;
  }

  .tihs_about_image_grid {
      min-height: 400px;
  }
}

@media (max-width: 768px) {
  .tihs_about {
      padding: 60px 0;
  }

  .tihs_about_subtitle {
      font-size: 14px;
  }

  .tihs_about_title {
      font-size: 30px;
  }

  .tihs_about_features {
      gap: 15px;
  }

  .tihs_about_feature {
      min-width: 100%;
  }

  .tihs_about_image_grid {
      min-height: 350px;
  }

  .tihs_about_experience {
      width: 110px;
      height: 110px;
  }

  .tihs_about_experience_number {
      font-size: 36px;
  }

  .tihs_about_experience_text {
      font-size: 11px;
  }
}

@media (max-width: 576px) {
  .tihs_about {
      padding: 50px 0;
  }

  .tihs_about_title {
      font-size: 26px;
  }

  .tihs_about_description {
      font-size: 14px;
  }

  .tihs_about_feature {
      padding: 15px;
  }

  .tihs_about_feature_icon {
      font-size: 24px;
  }

  .tihs_about_feature_title {
      font-size: 16px;
  }

  .tihs_about_feature_text {
      font-size: 13px;
  }

  .tihs_about_cta_text {
      font-size: 16px;
  }

  .tihs_about_btn {
      width: 100%;
      text-align: center;
  }
  
  .tihs_about_image_grid {
      min-height: 300px;
      gap: 10px;
  }
  
  .tihs_about_experience {
      width: 90px;
      height: 90px;
  }
  
  .tihs_about_experience_number {
      font-size: 28px;
  }
  
  .tihs_about_experience_text {
      font-size: 10px;
  }
}

        /* services area css */
        .tihs_services {
          padding: 80px 0;
          background-color: #FAFAFA;
          position: relative;
          overflow: hidden;
      }

      /* Background Elements */
      .tihs_services::before {
          content: "";
          position: absolute;
          width: 400px;
          height: 400px;
          background: linear-gradient(135deg, rgba(0, 100, 0, 0.03) 0%, rgba(255, 215, 0, 0.03) 100%);
          border-radius: 50%;
          top: -200px;
          right: -200px;
          z-index: 0;
      }

      .tihs_services::after {
          content: "";
          position: absolute;
          width: 300px;
          height: 300px;
          background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(139, 0, 0, 0.03) 100%);
          border-radius: 50%;
          bottom: -150px;
          left: -150px;
          z-index: 0;
      }

      /* Container */
      .tihs_services_container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
          position: relative;
          z-index: 1;
      }

      /* Section Header */
      .tihs_services_header {
          text-align: center;
          margin-bottom: 60px;
          position: relative;
      }

      .tihs_services_subtitle {
          font-size: 16px;
          color: #8B0000;
          font-weight: 600;
          margin-bottom: 10px;
          display: inline-block;
          position: relative;
      }

      .tihs_services_subtitle::before,
      .tihs_services_subtitle::after {
          content: "";
          position: absolute;
          top: 50%;
          width: 30px;
          height: 2px;
          background: #FFD700;
          transform: translateY(-50%);
      }

      .tihs_services_subtitle::before {
          left: -40px;
      }

      .tihs_services_subtitle::after {
          right: -40px;
      }

      .tihs_services_title {
          font-size: 36px;
          font-weight: 700;
          color: #006400;
          margin-bottom: 20px;
          line-height: 1.2;
      }

      .tihs_services_title span {
          position: relative;
          display: inline-block;
      }

      .tihs_services_title span::after {
          content: "";
          position: absolute;
          left: 0;
          bottom: 5px;
          width: 100%;
          height: 8px;
          background: rgba(255, 215, 0, 0.3);
          z-index: -1;
      }

      .tihs_services_description {
          max-width: 700px;
          margin: 0 auto;
          color: #4A4A4A;
      }

      /* Services Grid */
      .tihs_services_grid {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
          gap: 30px;
          margin-bottom: 50px;
      }

      /* Service Card */
      .tihs_service_card {
          background: #FFFFFF;
          border-radius: 15px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          
          transition: all 0.4s ease;
          position: relative;
          z-index: 1;
          height: 100%;
          display: flex;
          flex-direction: column;
          padding-top: 40px; /* Space for the icon */
      }

      .tihs_service_card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      }

      .tihs_service_card::before {
          content: "";
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 3px;
          background: #FFD700;
          transition: all 0.3s ease;
          z-index: 0;
      }

      .tihs_service_card:hover::before {
          height: 6px;
      }

      .tihs_service_icon_wrap {
          width: 80px;
          height: 80px;
          background: #FFFFFF;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
          position: absolute;
          top: -40px;
          left: 50%;
          transform: translateX(-50%);
          z-index: 2;
          border: 4px solid rgba(0, 100, 0, 0.1);
          transition: all 0.3s ease;
      }

      .tihs_service_card:hover .tihs_service_icon_wrap {
          transform: translateX(-50%) rotateY(180deg);
          border-color: rgba(255, 215, 0, 0.3);
      }

      .tihs_service_icon {
          font-size: 32px;
          color: #006400;
          transition: all 0.3s ease;
      }

      .tihs_service_card:hover .tihs_service_icon {
          transform: rotateY(180deg);
          color: #8B0000;
      }

      .tihs_service_content {
          padding: 30px;
          text-align: center;
          flex-grow: 1;
          display: flex;
          flex-direction: column;
      }

      .tihs_service_title {
          font-size: 22px;
          font-weight: 700;
          color: #252525;
          margin-bottom: 15px;
          position: relative;
          padding-bottom: 12px;
          transition: all 0.3s ease;
      }

      .tihs_service_title::after {
          content: "";
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 40px;
          height: 2px;
          background: #006400;
          transition: all 0.3s ease;
      }

      .tihs_service_card:hover .tihs_service_title {
          color: #006400;
      }

      .tihs_service_card:hover .tihs_service_title::after {
          width: 60px;
          background: #FFD700;
      }

      .tihs_service_description {
          color: #4A4A4A;
          margin-bottom: 20px;
          font-size: 15px;
          flex-grow: 1;
      }

      .tihs_service_link {
          display: inline-block;
          color: #006400;
          font-weight: 600;
          text-decoration: none;
          position: relative;
          padding-right: 20px;
          transition: all 0.3s ease;
          align-self: center;
      }

      .tihs_service_link::after {
          content: "→";
          position: absolute;
          right: 0;
          top: 50%;
          transform: translateY(-50%);
          transition: all 0.3s ease;
      }

      .tihs_service_link:hover {
          color: #8B0000;
          padding-right: 25px;
      }

      .tihs_service_link:hover::after {
          right: -5px;
      }

      /* Featured Service */
      .tihs_service_featured {
          position: relative;
          background: linear-gradient(135deg, #006400, #004D00);
          color: #FFFFFF;
      }

      .tihs_service_featured .tihs_service_title {
          color: #FFFFFF;
      }

      .tihs_service_featured .tihs_service_title::after {
          background: #FFD700;
      }

      .tihs_service_featured .tihs_service_description {
          color: rgba(255, 255, 255, 0.8);
      }

      .tihs_service_featured .tihs_service_link {
          color: #FFD700;
      }

      .tihs_service_featured .tihs_service_link:hover {
          color: #FFFFFF;
      }

      .tihs_service_featured .tihs_service_icon_wrap {
          background: #004D00;
          border-color: #FFD700;
      }

      .tihs_service_featured .tihs_service_icon {
          color: #FFD700;
      }

      .tihs_service_featured:hover .tihs_service_icon {
          color: #FFFFFF;
      }

      .tihs_service_featured::before {
          background: #8B0000;
      }

      /* Banner Service Badge */
      .tihs_service_badge {
          position: absolute;
          top: 10px;
          right: 10px;
          background: #FFD700;
          color: #252525;
          font-size: 12px;
          font-weight: 700;
          padding: 5px 12px;
          border-radius: 30px;
          text-transform: uppercase;
          letter-spacing: 1px;
          z-index: 3;
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      }

      /* CTA Section */
      .tihs_services_cta {
          background: linear-gradient(135deg, rgba(0, 100, 0, 0.95), rgba(0, 77, 0, 0.95)), url('/api/placeholder/1200/400') center/cover;
          padding: 60px 40px;
          border-radius: 15px;
          text-align: center;
          position: relative;
          overflow: hidden;
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      }

      .tihs_services_cta::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
          z-index: 0;
      }

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

      .tihs_services_cta_title {
          font-size: 32px;
          font-weight: 700;
          color: #FFFFFF;
          margin-bottom: 20px;
      }

      .tihs_services_cta_description {
          color: rgba(255, 255, 255, 0.9);
          margin-bottom: 30px;
          max-width: 700px;
          margin-left: auto;
          margin-right: auto;
      }

      .tihs_services_cta_btn {
          display: inline-block;
          padding: 15px 40px;
          background: #FFD700;
          color: #252525;
          border-radius: 50px;
          font-size: 16px;
          font-weight: 700;
          text-decoration: none;
          transition: all 0.3s ease;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          position: relative;
          overflow: hidden;
          z-index: 1;
      }

      .tihs_services_cta_btn::before {
          content: "";
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
          transition: all 0.5s ease;
          z-index: -1;
      }

      .tihs_services_cta_btn:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
      }

      .tihs_services_cta_btn:hover::before {
          left: 100%;
      }

      /* Floating Elements */
      .tihs_services_shapes {
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          pointer-events: none;
          z-index: 0;
      }

      .tihs_services_shape {
          position: absolute;
          opacity: 0.6;
      }

      .tihs_services_shape_1 {
          top: 15%;
          left: 5%;
          width: 15px;
          height: 15px;
          background: #FFD700;
          border-radius: 50%;
          animation: floating 8s infinite ease-in-out;
      }

      .tihs_services_shape_2 {
          bottom: 20%;
          right: 10%;
          width: 20px;
          height: 20px;
          background: #006400;
          transform: rotate(45deg);
          animation: floating 9s infinite ease-in-out;
          animation-delay: 1s;
      }

      .tihs_services_shape_3 {
          top: 40%;
          right: 5%;
          width: 25px;
          height: 25px;
          background: #8B0000;
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          animation: floating 7s infinite ease-in-out;
          animation-delay: 2s;
      }

      @keyframes floating {
          0%, 100% { transform: translate(0, 0) rotate(0deg); }
          25% { transform: translate(-10px, 10px) rotate(5deg); }
          50% { transform: translate(0, 15px) rotate(0deg); }
          75% { transform: translate(10px, 5px) rotate(-5deg); }
      }

      /* Responsive Styles */
      @media (max-width: 1024px) {
          .tihs_services_grid {
              grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
              gap: 25px;
          }

          .tihs_services_title {
              font-size: 32px;
          }

          .tihs_services_cta_title {
              font-size: 28px;
          }
      }

      @media (max-width: 768px) {
          .tihs_services {
              padding: 60px 0;
          }

          .tihs_services_header {
              margin-bottom: 40px;
          }

          .tihs_services_subtitle {
              font-size: 14px;
          }

          .tihs_services_subtitle::before,
          .tihs_services_subtitle::after {
              width: 20px;
          }

          .tihs_services_subtitle::before {
              left: -30px;
          }

          .tihs_services_subtitle::after {
              right: -30px;
          }

          .tihs_services_title {
              font-size: 28px;
          }

          .tihs_services_grid {
              grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
              gap: 20px;
          }

          .tihs_services_cta {
              padding: 40px 30px;
          }

          .tihs_services_cta_title {
              font-size: 24px;
          }

          .tihs_services_cta_description {
              font-size: 14px;
          }

          .tihs_services_cta_btn {
              padding: 12px 30px;
          }
      }

      @media (max-width: 576px) {
          .tihs_services {
              padding: 50px 0;
          }

          .tihs_services_title {
              font-size: 24px;
          }

          .tihs_services_description {
              font-size: 14px;
          }

          .tihs_services_grid {
              grid-template-columns: 1fr;
              gap: 40px;
          }

          .tihs_service_content {
              padding: 20px;
          }

          .tihs_service_title {
              font-size: 20px;
          }

          .tihs_service_description {
              font-size: 14px;
          }

          .tihs_services_cta {
              padding: 30px 20px;
          }

          .tihs_services_cta_title {
              font-size: 22px;
          }

          .tihs_services_cta_btn {
              width: 100%;
              padding: 12px 20px;
          }
          
          .tihs_service_card {
              padding-top: 35px;
          }
          
          .tihs_service_icon_wrap {
              width: 70px;
              height: 70px;
              top: -35px;
          }
          
          .tihs_service_icon {
              font-size: 28px;
          }
      }
      /* feature services area */
      .tihs_feature_services {
        padding: 100px 0;
        background-color: #f9f9ff;
        position: relative;
        overflow: hidden;
        min-height: 600px;
    }

    /* Background Elements */
    .tihs_feature_services::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(0, 100, 0, 0.03) 0%, transparent 400px),
            radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 400px);
        z-index: 0;
    }

    /* Container */
    .tihs_feature_services_container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }

    /* Hexagon Background */
    .tihs_feature_services_hex_bg {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0.05;
        z-index: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill='%23006400' fill-opacity='1'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/svg%3E");
    }

    /* 3D Card Design */
    .tihs_feature_package {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        position: relative;
        z-index: 2;
        perspective: 1000px;
    }

    .tihs_feature_package_title {
        width: 100%;
        font-size: 42px;
        font-weight: 800;
        color: #006400;
        margin-bottom: 20px;
        position: relative;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .tihs_feature_package_title span {
        position: relative;
        display: inline-block;
    }

    .tihs_feature_package_title span::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 8px;
        background: rgba(255, 215, 0, 0.4);
        transform: skewX(-20deg);
        z-index: -1;
    }

    /* Left Card */
    .tihs_feature_package_card {
        flex: 0 0 calc(60% - 15px);
        background: linear-gradient(135deg, #ffffff, #f5f5f5);
        border-radius: 20px;
        box-shadow: 
            0 20px 60px rgba(0,0,0,0.08),
            0 0 0 1px rgba(0,0,0,0.02);
        overflow: hidden;
        position: relative;
        transform-style: preserve-3d;
        transform: rotateY(0deg);
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .tihs_feature_package_card:hover {
        transform: rotateY(5deg);
        box-shadow: 
            -10px 20px 60px rgba(0,0,0,0.12),
            0 0 0 1px rgba(0,0,0,0.02);
    }

    .tihs_feature_package_card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0,100,0,0.03), rgba(255,215,0,0.05));
        z-index: 0;
    }

    .tihs_feature_package_inner {
        padding: 40px;
        position: relative;
        z-index: 1;
    }

    .tihs_feature_package_heading {
        font-size: 28px;
        color: #006400;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        padding-left: 20px;
        border-left: 5px solid #FFD700;
    }

    .tihs_feature_package_text {
        color: #4A4A4A;
        margin-bottom: 30px;
        font-size: 16px;
        line-height: 1.7;
    }

    /* Feature List */
    .tihs_feature_package_list {
        list-style: none;
        margin-bottom: 30px;
    }

    .tihs_feature_package_item {
        margin-bottom: 18px;
        padding-left: 35px;
        position: relative;
        color: #252525;
        font-weight: 500;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }

    .tihs_feature_package_item::before {
        content: "\f058";
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        color: #006400;
        font-size: 20px;
        transition: all 0.3s ease;
    }

    .tihs_feature_package_item:hover {
        color: #006400;
        transform: translateX(5px);
    }

    .tihs_feature_package_item:hover::before {
        color: #FFD700;
        transform: scale(1.2);
    }

    /* Card Border Animation */
    .tihs_feature_package_card::after {
        content: "";
        position: absolute;
        inset: 0;
        border: 3px solid transparent;
        border-radius: 20px;
        background: linear-gradient(45deg, #FFD700, #006400, #FFD700) border-box;
        -webkit-mask: 
            linear-gradient(#fff 0 0) padding-box, 
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.6s ease;
    }

    .tihs_feature_package_card:hover::after {
        opacity: 1;
    }

    /* CTA Button */
    .tihs_feature_package_cta {
        display: inline-block;
        padding: 12px 30px;
        background: #006400;
        color: #FFFFFF;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        z-index: 1;
        border: 2px solid transparent;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: 0 5px 15px rgba(0, 100, 0, 0.2);
    }

    .tihs_feature_package_cta::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: all 0.5s ease;
        z-index: -1;
    }

    .tihs_feature_package_cta:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 100, 0, 0.3);
        background: #FFFFFF;
        color: #006400;
        border-color: #006400;
    }

    .tihs_feature_package_cta:hover::before {
        left: 100%;
    }

    /* Right Side Student Images */
    .tihs_feature_package_images {
        flex: 0 0 calc(40% - 15px);
        position: relative;
        min-height: 500px;
    }

    .tihs_feature_student {
      
        position: absolute;
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        transform-origin: center bottom;
    }

    .tihs_feature_student_1 {
        top: 0;
        left: 0;
        z-index: 3;
        transform: rotate(-5deg);
    }

    .tihs_feature_student_2 {
        top: 100px;
        right: 0;
        z-index: 2;
        transform: rotate(5deg);
    }

    .tihs_feature_student_3 {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .tihs_feature_student:hover {
        transform: translateY(-10px) rotate(0);
        filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2));
        z-index: 4;
    }

    .tihs_feature_student_1:hover {
        transform: translateY(-10px) rotate(-2deg);
    }

    .tihs_feature_student_2:hover {
        transform: translateY(-10px) rotate(2deg);
    }

    .tihs_feature_student_3:hover {
        transform: translateY(-10px) translateX(-50%);
    }

    /* Student Badge */
    .tihs_feature_student_badge {
        position: absolute;
        background: #FFD700;
        color: #252525;
        font-size: 12px;
        font-weight: 700;
        padding: 5px 12px;
        border-radius: 30px;
        z-index: 5;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        white-space: nowrap;
    }

    .tihs_feature_student_badge_1 {
        top: 20px;
        left: 20px;
        animation: badgePulse 3s infinite;
    }

    .tihs_feature_student_badge_2 {
        top: 120px;
        right: 20px;
        animation: badgePulse 3s infinite;
        animation-delay: 1s;
    }

    .tihs_feature_student_badge_3 {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        animation: badgePulse 3s infinite;
        animation-delay: 2s;
    }

    @keyframes badgePulse {
        0%, 100% { transform: translateX(-50%) scale(1); }
        50% { transform: translateX(-50%) scale(1.05); }
    }

    .tihs_feature_student_badge_1,
    .tihs_feature_student_badge_2 {
        animation-name: badgePulseNoTranslate;
    }

    @keyframes badgePulseNoTranslate {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }

    /* Floating Elements */
    .tihs_feature_services_shapes {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 0;
    }

    .tihs_feature_services_shape {
        position: absolute;
        opacity: 0.3;
    }

    .tihs_feature_services_shape_1 {
        top: 10%;
        left: 5%;
        width: 15px;
        height: 15px;
        background: #FFD700;
        border-radius: 50%;
        animation: floating 8s infinite ease-in-out;
    }

    .tihs_feature_services_shape_2 {
        bottom: 10%;
        right: 5%;
        width: 20px;
        height: 20px;
        background: #006400;
        transform: rotate(45deg);
        animation: floating 9s infinite ease-in-out;
        animation-delay: 1s;
    }

    .tihs_feature_services_shape_3 {
        top: 40%;
        right: 10%;
        width: 25px;
        height: 25px;
        background: #8B0000;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        animation: floating 7s infinite ease-in-out;
        animation-delay: 2s;
    }

    @keyframes floating {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        25% { transform: translate(-15px, 15px) rotate(5deg); }
        50% { transform: translate(0, 25px) rotate(0deg); }
        75% { transform: translate(15px, 10px) rotate(-5deg); }
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {
        .tihs_feature_package_title {
            font-size: 36px;
        }

        .tihs_feature_package_heading {
            font-size: 24px;
        }

        .tihs_feature_student {
            width: 180px;
        }
    }

    @media (max-width: 991px) {
        .tihs_feature_package_card,
        .tihs_feature_package_images {
            flex: 0 0 100%;
        }

        .tihs_feature_package_images {
            min-height: 400px;
            margin-top: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .tihs_feature_student {
            position: relative;
            width: 150px;
            margin: 0 -30px;
            top: auto;
            left: auto;
            right: auto;
            bottom: auto;
        }

        .tihs_feature_student_1 {
            transform: translateY(30px) rotate(-15deg);
        }

        .tihs_feature_student_2 {
            z-index: 3;
        }

        .tihs_feature_student_3 {
            transform: translateY(30px) rotate(15deg);
        }

        .tihs_feature_student_badge {
            font-size: 10px;
            padding: 4px 10px;
        }

        .tihs_feature_student_badge_1 {
            top: 10px;
            left: 10px;
        }

        .tihs_feature_student_badge_2 {
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            right: auto;
        }

        .tihs_feature_student_badge_3 {
            top: 10px;
            right: 10px;
            left: auto;
            transform: none;
        }
    }

    @media (max-width: 768px) {
        .tihs_feature_services {
            padding: 60px 0;
        }

        .tihs_feature_package_title {
            font-size: 30px;
        }

        .tihs_feature_package_inner {
            padding: 30px;
        }

        .tihs_feature_package_heading {
            font-size: 22px;
        }

        .tihs_feature_package_text {
            font-size: 15px;
        }

        .tihs_feature_package_item {
            font-size: 14px;
        }

        .tihs_feature_package_cta {
            padding: 10px 25px;
            font-size: 14px;
        }
    }

    @media (max-width: 576px) {
        .tihs_feature_services {
            padding: 50px 0;
        }

        .tihs_feature_package_title {
            font-size: 26px;
        }

        .tihs_feature_package_inner {
            padding: 25px;
        }

        .tihs_feature_student {
            width: 120px;
            margin: 0 -20px;
        }

        .tihs_feature_package_cta {
            width: 100%;
            text-align: center;
        }

        .tihs_feature_package_images {
            min-height: 300px;
        }
    }

    /* courses css */
    .tihs_our_courses {
      padding: 80px 0;
      background-color: #FAFAFA;
      position: relative;
      overflow: hidden;
  }

  /* Background Elements */
  .tihs_our_courses::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-image: 
          radial-gradient(circle at 20% 30%, rgba(0, 100, 0, 0.03) 0%, transparent 400px),
          radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 400px);
      z-index: 0;
  }

  /* Container */
  .tihs_our_courses_container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 1;
  }

  /* Section Header */
  .tihs_our_courses_header {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
  }

  .tihs_our_courses_title {
      font-size: 42px;
      font-weight: 800;
      color: #006400;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
  }

  .tihs_our_courses_title::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 8px;
      background: rgba(255, 215, 0, 0.4);
      transform: skewX(-15deg);
      z-index: -1;
  }

  .tihs_our_courses_subtitle {
      font-size: 16px;
      color: #4A4A4A;
      max-width: 700px;
      margin: 0 auto;
  }

  /* Courses Slider */
  .tihs_our_courses_slider_container {
      position: relative;
      margin: 0 -20px;
      padding: 20px;
      overflow: hidden;
  }

  .tihs_our_courses_slider {
      display: flex;
      gap: 25px;
      transition: transform 0.5s ease;
      will-change: transform;
  }

  /* Course Card */
  .tihs_our_course_card {
      flex: 0 0 300px;
      background: #FFFFFF;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      transform: translateY(0);
      position: relative;
  }

  .tihs_our_course_card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }

  .tihs_our_course_image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      transition: all 0.5s ease;
  }

  .tihs_our_course_card:hover .tihs_our_course_image {
      transform: scale(1.1);
  }

  .tihs_our_course_image_container {
      position: relative;
      overflow: hidden;
  }

  .tihs_our_course_badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: #006400;
      color: #FFFFFF;
      font-size: 12px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 30px;
      z-index: 1;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }

  .tihs_our_course_discount {
      position: absolute;
      top: 15px;
      right: 15px;
      background: #FFD700;
      color: #252525;
      font-size: 12px;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 30px;
      z-index: 1;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }

  .tihs_our_course_content {
      padding: 20px;
  }

  .tihs_our_course_title {
      font-size: 18px;
      font-weight: 700;
      color: #252525;
      margin-bottom: 10px;
      transition: all 0.3s ease;
  }

  .tihs_our_course_card:hover .tihs_our_course_title {
      color: #006400;
  }

  .tihs_our_course_info {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
      font-size: 14px;
      color: #4A4A4A;
  }

  .tihs_our_course_duration,
  .tihs_our_course_level {
      display: flex;
      align-items: center;
      gap: 5px;
  }

  .tihs_our_course_duration i,
  .tihs_our_course_level i {
      color: #006400;
      font-size: 16px;
  }

  .tihs_our_course_description {
      font-size: 14px;
      color: #666666;
      margin-bottom: 15px;
      line-height: 1.5;
  }

  .tihs_our_course_footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 15px;
      border-top: 1px solid #EEEEEE;
  }

  .tihs_our_course_price {
      font-size: 18px;
      font-weight: 700;
      color: #006400;
  }

  .tihs_our_course_price small {
      font-size: 14px;
      color: #999999;
      text-decoration: line-through;
      margin-right: 5px;
  }

  .tihs_our_course_button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(0, 100, 0, 0.1);
      color: #006400;
      border-radius: 50%;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .tihs_our_course_button:hover {
      background: #006400;
      color: #FFFFFF;
  }

  /* Slider Controls */
  .tihs_our_courses_controls {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
  }

  .tihs_our_courses_control {
      width: 50px;
      height: 50px;
      background: #FFFFFF;
      color: #006400;
      border: 2px solid #006400;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .tihs_our_courses_control:hover {
      background: #006400;
      color: #FFFFFF;
  }

  .tihs_our_courses_control.disabled {
      opacity: 0.5;
      cursor: not-allowed;
  }

  /* Progress Bar */
  .tihs_our_courses_progress {
      height: 4px;
      background: rgba(0, 100, 0, 0.1);
      border-radius: 2px;
      margin: 30px auto;
      max-width: 300px;
      position: relative;
  }

  .tihs_our_courses_progress_bar {
      height: 100%;
      background: #006400;
      border-radius: 2px;
      width: 0;
      transition: width 0.5s ease;
  }

  /* View All Button */
  .tihs_our_courses_view_all {
      text-align: center;
      margin-top: 40px;
  }

  .tihs_our_courses_view_btn {
      display: inline-block;
      padding: 12px 30px;
      background: #006400;
      color: #FFFFFF;
      font-weight: 600;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      z-index: 1;
      box-shadow: 0 5px 15px rgba(0, 100, 0, 0.2);
  }

  .tihs_our_courses_view_btn::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: all 0.5s ease;
      z-index: -1;
  }

  .tihs_our_courses_view_btn:hover {
      background: #004D00;
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 100, 0, 0.3);
  }

  .tihs_our_courses_view_btn:hover::before {
      left: 100%;
  }

  /* Floating Elements */
  .tihs_our_courses_shapes {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 0;
  }

  .tihs_our_courses_shape {
      position: absolute;
      opacity: 0.3;
  }

  .tihs_our_courses_shape_1 {
      top: 20%;
      left: 5%;
      width: 15px;
      height: 15px;
      background: #FFD700;
      border-radius: 50%;
      animation: floating 8s infinite ease-in-out;
  }

  .tihs_our_courses_shape_2 {
      bottom: 10%;
      right: 5%;
      width: 20px;
      height: 20px;
      background: #006400;
      transform: rotate(45deg);
      animation: floating 9s infinite ease-in-out;
      animation-delay: 1s;
  }

  .tihs_our_courses_shape_3 {
      top: 40%;
      right: 10%;
      width: 25px;
      height: 25px;
      background: #8B0000;
      clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
      animation: floating 7s infinite ease-in-out;
      animation-delay: 2s;
  }

  @keyframes floating {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      25% { transform: translate(-10px, 10px) rotate(5deg); }
      50% { transform: translate(0, 15px) rotate(0deg); }
      75% { transform: translate(10px, 5px) rotate(-5deg); }
  }

  /* Responsive Styles */
  @media (max-width: 1024px) {
      .tihs_our_courses_title {
          font-size: 36px;
      }

      .tihs_our_course_card {
          flex: 0 0 280px;
      }
  }

  @media (max-width: 768px) {
      .tihs_our_courses {
          padding: 60px 0;
      }

      .tihs_our_courses_title {
          font-size: 32px;
      }

      .tihs_our_courses_subtitle {
          font-size: 14px;
      }

      .tihs_our_course_card {
          flex: 0 0 250px;
      }

      .tihs_our_course_image {
          height: 160px;
      }

      .tihs_our_course_title {
          font-size: 16px;
      }

      .tihs_our_course_description {
          font-size: 13px;
      }
  }

  @media (max-width: 576px) {
      .tihs_our_courses {
          padding: 50px 0;
      }

      .tihs_our_courses_title {
          font-size: 28px;
      }

      .tihs_our_course_card {
          flex: 0 0 220px;
      }

      .tihs_our_course_image {
          height: 140px;
      }

      .tihs_our_course_content {
          padding: 15px;
      }

      .tihs_our_course_info {
          flex-direction: column;
          gap: 5px;
          align-items: flex-start;
      }

      .tihs_our_courses_view_btn {
          width: 100%;
      }
  }

  /* open university area css */
  .tihs_openeducation {
    padding: 80px 0;
    background-color: #F9FAFC;
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.tihs_openeducation::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 5% 20%, rgba(0, 100, 0, 0.03) 0%, transparent 400px),
        radial-gradient(circle at 95% 85%, rgba(255, 215, 0, 0.03) 0%, transparent 400px);
    z-index: 0;
}

/* Container */
.tihs_openeducation_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.tihs_openeducation_header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.tihs_openeducation_subtitle {
    font-size: 16px;
    color: #8B0000;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tihs_openeducation_title {
    font-size: 42px;
    font-weight: 800;
    color: #006400;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.tihs_openeducation_title::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 8px;
    background: rgba(255, 215, 0, 0.3);
    z-index: -1;
}

.tihs_openeducation_description {
    max-width: 700px;
    margin: 0 auto;
    color: #4A4A4A;
}

/* Main Content Area */
.tihs_openeducation_content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

/* Left Form Section */
.tihs_openeducation_form_section {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.tihs_openeducation_form_wrapper {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    padding: 40px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.tihs_openeducation_form_wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.tihs_openeducation_form_title {
    font-size: 24px;
    font-weight: 700;
    color: #006400;
    margin-bottom: 20px;
    text-align: center;
}

.tihs_openeducation_form_group {
    margin-bottom: 20px;
    position: relative;
}

.tihs_openeducation_label {
    font-size: 14px;
    color: #4A4A4A;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.tihs_openeducation_input,
.tihs_openeducation_select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    font-size: 14px;
    color: #252525;
    transition: all 0.3s ease;
    background-color: #F9FAFC;
}

.tihs_openeducation_input:focus,
.tihs_openeducation_select:focus {
    border-color: #006400;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 100, 0, 0.1);
    background-color: #FFFFFF;
}

.tihs_openeducation_select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23006400' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

.tihs_openeducation_submit {
    width: 100%;
    padding: 14px;
    background: #006400;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tihs_openeducation_submit:hover {
    background: #004D00;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 100, 0, 0.2);
}

.tihs_openeducation_submit:active {
    transform: translateY(0);
}

.tihs_openeducation_privacy {
    font-size: 12px;
    color: #666666;
    text-align: center;
    margin-top: 15px;
}

/* Student Images */
.tihs_openeducation_students {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.tihs_openeducation_student {
    position: absolute;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: all 0.4s ease;
    max-width: 150px;
}

.tihs_openeducation_student_1 {
    top: -60px;
    left: -60px;
    transform: rotate(-5deg);
    z-index: 1;
}

.tihs_openeducation_student_2 {
    bottom: -60px;
    right: -60px;
    transform: rotate(5deg);
    z-index: 1;
}

.tihs_openeducation_form_wrapper:hover ~ .tihs_openeducation_students .tihs_openeducation_student_1 {
    transform: translateY(-10px) rotate(-10deg);
}

.tihs_openeducation_form_wrapper:hover ~ .tihs_openeducation_students .tihs_openeducation_student_2 {
    transform: translateY(-10px) rotate(10deg);
}

/* Right Boards Section */
.tihs_openeducation_boards {
    flex: 1;
    min-width: 300px;
}

.tihs_openeducation_board_tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.tihs_openeducation_tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    background: #FFFFFF;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tihs_openeducation_tab.active {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
}

.tihs_openeducation_tab:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tihs_openeducation_tab_logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.tihs_openeducation_tab_logo img {
    max-height: 100%;
    max-width: 100%;
    transition: all 0.3s ease;
}

.tihs_openeducation_tab.active .tihs_openeducation_tab_logo img,
.tihs_openeducation_tab:hover .tihs_openeducation_tab_logo img {
    transform: scale(1.1);
}

.tihs_openeducation_tab_title {
    font-size: 18px;
    font-weight: 700;
    color: #252525;
}

.tihs_openeducation_tab_content {
    display: none;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.5s ease forwards;
}

.tihs_openeducation_tab_content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tihs_openeducation_board_logo {
    text-align: center;
    margin-bottom: 20px;
}

.tihs_openeducation_board_logo img {
    max-height: 80px;
}

.tihs_openeducation_board_title {
    font-size: 24px;
    font-weight: 700;
    color: #006400;
    margin-bottom: 15px;
    text-align: center;
}

.tihs_openeducation_board_text {
    color: #4A4A4A;
    margin-bottom: 20px;
}

.tihs_openeducation_features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.tihs_openeducation_feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tihs_openeducation_feature_icon {
    width: 30px;
    height: 30px;
    background: rgba(0, 100, 0, 0.1);
    color: #006400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tihs_openeducation_feature_text {
    font-size: 14px;
    color: #4A4A4A;
}

.tihs_openeducation_note {
    font-size: 14px;
    color: #8B0000;
    padding: 15px;
    background: rgba(139, 0, 0, 0.05);
    border-radius: 8px;
    margin-bottom: 20px;
}

.tihs_openeducation_board_cta {
    text-align: center;
}

.tihs_openeducation_board_button {
    display: inline-block;
    padding: 12px 30px;
    background: #006400;
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tihs_openeducation_board_button:hover {
    background: #004D00;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 100, 0, 0.2);
}

.tihs_openeducation_board_button:active {
    transform: translateY(0);
}

/* Floating Elements */
.tihs_openeducation_shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.tihs_openeducation_shape {
    position: absolute;
    opacity: 0.3;
}

.tihs_openeducation_shape_1 {
    top: 20%;
    left: 5%;
    width: 15px;
    height: 15px;
    background: #FFD700;
    border-radius: 50%;
    animation: floating 8s infinite ease-in-out;
}

.tihs_openeducation_shape_2 {
    bottom: 20%;
    right: 5%;
    width: 20px;
    height: 20px;
    background: #006400;
    transform: rotate(45deg);
    animation: floating 9s infinite ease-in-out;
    animation-delay: 1s;
}

.tihs_openeducation_shape_3 {
    top: 50%;
    right: 10%;
    width: 25px;
    height: 25px;
    background: #8B0000;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: floating 7s infinite ease-in-out;
    animation-delay: 2s;
}

@keyframes floating {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, 10px) rotate(5deg); }
    50% { transform: translate(0, 15px) rotate(0deg); }
    75% { transform: translate(10px, 5px) rotate(-5deg); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .tihs_openeducation_title {
        font-size: 36px;
    }

    .tihs_openeducation_form_wrapper {
        padding: 30px;
    }

    .tihs_openeducation_student {
        max-width: 120px;
    }
}

@media (max-width: 991px) {
    .tihs_openeducation_content {
        flex-direction: column-reverse;
    }

    .tihs_openeducation_form_section,
    .tihs_openeducation_boards {
        width: 100%;
    }

    .tihs_openeducation_student_1 {
        top: -40px;
        left: -40px;
    }

    .tihs_openeducation_student_2 {
        bottom: -40px;
        right: -40px;
    }
}

@media (max-width: 768px) {
    .tihs_openeducation {
        padding: 60px 0;
    }

    .tihs_openeducation_title {
        font-size: 32px;
    }

    .tihs_openeducation_form_title {
        font-size: 22px;
    }

    .tihs_openeducation_board_title {
        font-size: 22px;
    }

    .tihs_openeducation_features {
        grid-template-columns: 1fr;
    }

    .tihs_openeducation_board_logo img {
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    .tihs_openeducation {
        padding: 50px 0;
    }

    .tihs_openeducation_title {
        font-size: 28px;
    }

    .tihs_openeducation_form_wrapper {
        padding: 25px;
    }

    .tihs_openeducation_tab_content {
        padding: 20px;
    }

    .tihs_openeducation_tab_title {
        font-size: 16px;
    }

    .tihs_openeducation_board_button,
    .tihs_openeducation_submit {
        width: 100%;
    }

    .tihs_openeducation_student {
        max-width: 100px;
    }

    .tihs_openeducation_student_1 {
        top: -30px;
        left: -30px;
    }

    .tihs_openeducation_student_2 {
        bottom: -30px;
        right: -30px;
    }
}

/* why choose area css */
.tihs_whychoseus {
  padding: 100px 0;
  background: #f9f9ff;
  position: relative;
  overflow: hidden;
}

/* Background Gradient Wave */
.tihs_whychoseus_wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
      rgba(0, 100, 0, 0.03) 0%, 
      rgba(0, 100, 0, 0) 30%,
      rgba(255, 215, 0, 0) 70%, 
      rgba(255, 215, 0, 0.03) 100%);
  transform: skewY(-6deg);
  transform-origin: top left;
  z-index: 0;
}

/* Container */
.tihs_whychoseus_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.tihs_whychoseus_header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.tihs_whychoseus_title_container {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.tihs_whychoseus_title {
  font-size: 48px;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(135deg, #006400 0%, #004D00 100%);
  -webkit-background-clip: text;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.tihs_whychoseus_title_bg {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: rgba(255, 215, 0, 0.15);
  transform: rotate(-2deg);
  z-index: 0;
  border-radius: 10px;
}

.tihs_whychoseus_subtitle {
  font-size: 18px;
  color: #8B0000;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  display: block;
}

.tihs_whychoseus_description {
  max-width: 700px;
  margin: 0 auto;
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.8;
}

/* 3D Cards Grid */
.tihs_whychoseus_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
  perspective: 1000px;
}

.tihs_whychoseus_card {
  position: relative;
  height: 350px;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tihs_whychoseus_card:hover {
  transform: rotateY(180deg);
}

.tihs_whychoseus_card_face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tihs_whychoseus_card_front {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  text-align: center;
}

.tihs_whychoseus_card_back {
  background: linear-gradient(135deg, #006400, #004D00);
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  text-align: center;
}

.tihs_whychoseus_card_icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  background: rgba(0, 100, 0, 0.1);
  color: #006400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: all 0.3s ease;
  position: relative;
}

.tihs_whychoseus_card_icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed rgba(0, 100, 0, 0.3);
  animation: spin 15s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.tihs_whychoseus_card_title {
  font-size: 22px;
  font-weight: 700;
  color: #006400;
  margin-bottom: 15px;
}

.tihs_whychoseus_card_text {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
}

.tihs_whychoseus_card_btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
  color: #006400;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.tihs_whychoseus_card_btn i {
  transition: transform 0.3s ease;
}

.tihs_whychoseus_card:hover .tihs_whychoseus_card_btn i {
  transform: translateX(3px);
}

.tihs_whychoseus_card_back_title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.tihs_whychoseus_card_back_list {
  list-style: none;
  text-align: left;
  width: 100%;
  margin-bottom: 30px;
}

.tihs_whychoseus_card_back_item {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.tihs_whychoseus_card_back_item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: bold;
}

.tihs_whychoseus_card_back_btn {
  background: #FFD700;
  color: #252525;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 14px;
}

.tihs_whychoseus_card_back_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Stats Counter Section */
/* Stats Counter Section and related styles removed as requested */

/* Testimonials Carousel */
/* Testimonials section and related styles removed as requested */

/* Call to Action Box */
/* Call to Action section and related styles removed as requested */

/* Floating Elements */
.tihs_whychoseus_floats {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.tihs_whychoseus_float {
  position: absolute;
  opacity: 0.5;
}

.tihs_whychoseus_float_1 {
  top: 10%;
  left: 5%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FFD700;
  animation: float1 20s infinite ease-in-out;
}

.tihs_whychoseus_float_2 {
  bottom: 15%;
  right: 5%;
  width: 40px;
  height: 40px;
  background: #006400;
  transform: rotate(45deg);
  animation: float2 25s infinite ease-in-out;
}

.tihs_whychoseus_float_3 {
  top: 50%;
  right: 10%;
  width: 20px;
  height: 20px;
  background: #8B0000;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: float3 18s infinite ease-in-out;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -15px) rotate(90deg); }
  50% { transform: translate(30px, 30px) rotate(180deg); }
  75% { transform: translate(-15px, 15px) rotate(270deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(45deg); }
  33% { transform: translate(-20px, -20px) rotate(90deg); }
  66% { transform: translate(20px, -20px) rotate(0deg); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-25px, 25px) rotate(180deg); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .tihs_whychoseus_cards {
      grid-template-columns: repeat(2, 1fr);
  }

  .tihs_whychoseus_title {
      font-size: 42px;
  }
}

@media (max-width: 768px) {
  .tihs_whychoseus {
      padding: 80px 0;
  }

  .tihs_whychoseus_card {
      height: 380px;
  }
}

@media (max-width: 576px) {
  .tihs_whychoseus {
      padding: 60px 0;
  }

  .tihs_whychoseus_title {
      font-size: 36px;
  }

  .tihs_whychoseus_cards {
      grid-template-columns: 1fr;
  }

  .tihs_whychoseus_card {
      height: 350px;
  }
}

/* download brochure download  */
.tihs_downloadbrochure {
  padding: 100px 0;
  background: linear-gradient(135deg, #f6f9ff 0%, #f9f9ff 100%);
  position: relative;
  overflow: hidden;
}

/* Background Elements */
.tihs_downloadbrochure_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

.tihs_downloadbrochure_dot {
  position: absolute;
  background-color: #006400;
  border-radius: 50%;
  opacity: 0.05;
}

.tihs_downloadbrochure_dot:nth-child(1) {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
}

.tihs_downloadbrochure_dot:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 50px;
  right: 10%;
}

.tihs_downloadbrochure_line {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 3px dashed rgba(0, 100, 0, 0.03);
  border-radius: 50%;
  top: 20%;
  right: -150px;
}

/* Container */
.tihs_downloadbrochure_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Left Content */
.tihs_downloadbrochure_content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  margin-right: 50px;
  margin-bottom: 30px;
}

.tihs_downloadbrochure_subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #8B0000;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}

.tihs_downloadbrochure_subtitle::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: #FFD700;
  bottom: -5px;
  left: 0;
}

.tihs_downloadbrochure_title {
  font-size: 40px;
  font-weight: 800;
  color: #006400;
  margin-bottom: 20px;
  line-height: 1.2;
}

.tihs_downloadbrochure_description {
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.tihs_downloadbrochure_features {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.tihs_downloadbrochure_feature {
  width: 50%;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-right: 10px;
}

.tihs_downloadbrochure_feature_icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 100, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: #006400;
  flex-shrink: 0;
}

.tihs_downloadbrochure_feature_text {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.tihs_downloadbrochure_button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #006400 0%, #004D00 100%);
  color: white;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 100, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.tihs_downloadbrochure_button::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: all 0.6s ease;
}

.tihs_downloadbrochure_button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 100, 0, 0.3);
}

.tihs_downloadbrochure_button:hover::before {
  left: 100%;
}

.tihs_downloadbrochure_button i {
  margin-right: 8px;
}

/* Right Image */
.tihs_downloadbrochure_image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  position: relative;
}

.tihs_downloadbrochure_image_main {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.tihs_downloadbrochure_image_decoration {
  position: absolute;
  width: 80%;
  height: 80%;
  border: 3px solid rgba(0, 100, 0, 0.1);
  border-radius: 20px;
  top: -20px;
  right: -20px;
  z-index: 0;
}

.tihs_downloadbrochure_badge {
  position: absolute;
  bottom: -25px;
  left: 30px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.tihs_downloadbrochure_badge_icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 100, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #006400;
  margin-right: 15px;
  flex-shrink: 0;
}

.tihs_downloadbrochure_badge_text {
  font-size: 14px;
  color: #252525;
  font-weight: 600;
}

.tihs_downloadbrochure_badge_number {
  display: block;
  color: #006400;
  font-size: 20px;
  font-weight: 700;
}

/* Popup Form */
.tihs_downloadbrochure_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.tihs_downloadbrochure_overlay.active {
  opacity: 1;
  visibility: visible;
}

.tihs_downloadbrochure_popup {
  background: white;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  padding: 40px;
  position: relative;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.tihs_downloadbrochure_overlay.active .tihs_downloadbrochure_popup {
  transform: scale(1);
  opacity: 1;
}

.tihs_downloadbrochure_popup_close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 16px;
}

.tihs_downloadbrochure_popup_close:hover {
  background: #ff6b6b;
  color: white;
}

.tihs_downloadbrochure_popup_title {
  font-size: 24px;
  font-weight: 700;
  color: #006400;
  margin-bottom: 10px;
  text-align: center;
}

.tihs_downloadbrochure_popup_subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
  text-align: center;
}

.tihs_downloadbrochure_form_group {
  margin-bottom: 20px;
}

.tihs_downloadbrochure_form_label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
}

.tihs_downloadbrochure_form_input,
.tihs_downloadbrochure_form_select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #eeeeee;
  border-radius: 10px;
  font-size: 14px;
  color: #444;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.tihs_downloadbrochure_form_input:focus,
.tihs_downloadbrochure_form_select:focus {
  border-color: #006400;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 100, 0, 0.1);
}

.tihs_downloadbrochure_form_submit {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #006400 0%, #004D00 100%);
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.tihs_downloadbrochure_form_submit::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: all 0.6s ease;
}

.tihs_downloadbrochure_form_submit:hover {
  box-shadow: 0 10px 20px rgba(0, 100, 0, 0.2);
}

.tihs_downloadbrochure_form_submit:hover::before {
  left: 100%;
}

.tihs_downloadbrochure_form_footer {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-top: 20px;
}

/* Thank You Message */
.tihs_downloadbrochure_thankyou {
  text-align: center;
  display: none;
}

.tihs_downloadbrochure_thankyou_icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 100, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #006400;
  font-size: 30px;
}

.tihs_downloadbrochure_thankyou_title {
  font-size: 24px;
  font-weight: 700;
  color: #006400;
  margin-bottom: 15px;
}

.tihs_downloadbrochure_thankyou_text {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.tihs_downloadbrochure_thankyou_button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #006400 0%, #004D00 100%);
  color: white;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.tihs_downloadbrochure_thankyou_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 100, 0, 0.2);
}

/* Loading Spinner */
.tihs_downloadbrochure_spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form Error */
.tihs_downloadbrochure_form_error {
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .tihs_downloadbrochure_container {
      flex-direction: column;
  }

  .tihs_downloadbrochure_content {
      margin-right: 0;
      margin-bottom: 50px;
      text-align: center;
      max-width: 100%;
  }

  .tihs_downloadbrochure_subtitle::after {
      left: 50%;
      transform: translateX(-50%);
  }

  .tihs_downloadbrochure_features {
      justify-content: center;
  }

  .tihs_downloadbrochure_feature {
      width: auto;
      margin-right: 30px;
  }

  .tihs_downloadbrochure_image {
      max-width: 400px;
      width: 100%;
  }
}

@media (max-width: 768px) {
  .tihs_downloadbrochure {
      padding: 80px 0;
  }

  .tihs_downloadbrochure_title {
      font-size: 32px;
  }

  .tihs_downloadbrochure_feature {
      width: 100%;
      margin-right: 0;
  }

  .tihs_downloadbrochure_popup {
      padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .tihs_downloadbrochure {
      padding: 60px 0;
  }

  .tihs_downloadbrochure_title {
      font-size: 28px;
  }

  .tihs_downloadbrochure_badge {
      left: 50%;
      transform: translateX(-50%);
  }
}

/*  college css*/
/* === TIHS FEATURED COLLEGES CSS === */


/* Main Featured Colleges Section */
.tihs_colleges {
  padding: 120px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Geometric Background */
.tihs_colleges_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  z-index: 0;
  overflow: hidden;
}

.tihs_colleges_shape {
  position: absolute;
  opacity: 0.1;
}

.tihs_colleges_shape1 {
  width: 500px;
  height: 500px;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  background: linear-gradient(45deg, #006400, #4CAF50);
  top: -250px;
  left: -100px;
  animation: morph 15s linear infinite alternate;
}

.tihs_colleges_shape2 {
  width: 400px;
  height: 400px;
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  background: linear-gradient(45deg, #FFD700, #FFC107);
  bottom: -200px;
  right: -100px;
  animation: morph 12s linear infinite alternate-reverse;
}

.tihs_colleges_dots {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#006400 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.1;
}

@keyframes morph {
  0% {
      border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  25% {
      border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
  }
  50% {
      border-radius: 54% 46% 38% 62% / 43% 54% 46% 57%;
  }
  75% {
      border-radius: 60% 40% 50% 50% / 30% 60% 40% 70%;
  }
  100% {
      border-radius: 35% 65% 70% 30% / 40% 50% 50% 60%;
  }
}

/* Container */
.tihs_colleges_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.tihs_colleges_header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.tihs_colleges_title_container {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.tihs_colleges_subtitle {
  font-size: 18px;
  color: #006400;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.6s forwards 0.2s;
}

.tihs_colleges_title {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #006400 0%, #4CAF50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.6s forwards 0.4s;
}

.tihs_colleges_title span {
  position: relative;
  display: inline-block;
}

.tihs_colleges_title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background: rgba(255, 215, 0, 0.3);
  bottom: 5px;
  left: 0;
  z-index: -1;
}

.tihs_colleges_description {
  max-width: 700px;
  margin: 0 auto;
  color: #777;
  font-size: 18px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 0.6s forwards 0.6s;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Filter Tabs */
.tihs_colleges_filters {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 5px;
  opacity: 0;
  animation: fadeInUp 0.6s forwards 0.8s;
}

.tihs_colleges_filter {
  padding: 12px 25px;
  background: #f5f5f5;
  color: #333;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tihs_colleges_filter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(45deg, #006400, #4CAF50);
  transition: all 0.3s ease;
  z-index: -1;
}

.tihs_colleges_filter.active {
  color: white;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(0, 100, 0, 0.2);
}

.tihs_colleges_filter.active::before,
.tihs_colleges_filter:hover::before {
  width: 100%;
}

.tihs_colleges_filter:hover:not(.active) {
  color: white;
  transform: translateY(-3px);
}

/* Colleges Carousel Container */
.tihs_colleges_carousel_container {
  position: relative;
  padding: 20px 0 40px;
}

/* Navigation Controls */
.tihs_colleges_controls {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 30px;
  opacity: 0;
  animation: fadeInUp 0.6s forwards 1s;
}

.tihs_colleges_button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  color: #006400;
  font-size: 18px;
}

.tihs_colleges_button:hover {
  background: #006400;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 100, 0, 0.2);
}

.tihs_colleges_button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Carousel Track */
.tihs_colleges_track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  gap: 30px;
  padding: 20px 10px;
}

/* College Card */
.tihs_colleges_card {
  min-width: 350px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.4s ease;
  opacity: 0;
  transform: scale(0.9);
  animation: fadeIn 0.8s forwards;
  animation-delay: calc(0.2s * var(--card-index, 0));
}

@keyframes fadeIn {
  to {
      opacity: 1;
      transform: scale(1);
  }
}

.tihs_colleges_card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.tihs_colleges_card_top {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.tihs_colleges_card_ribbon {
  position: absolute;
  top: 25px;
  right: -30px;
  background: linear-gradient(45deg, #FFD700, #FFC107);
  color: #333;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 30px;
  transform: rotate(45deg);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tihs_colleges_card_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  filter: brightness(0.9);
}

.tihs_colleges_card:hover .tihs_colleges_card_img {
  transform: scale(1.1);
  filter: brightness(1);
}

.tihs_colleges_card_gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.tihs_colleges_card_logo {
  position: absolute;
  bottom: -30px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 4px solid white;
  z-index: 2;
  transition: all 0.3s ease;
}

.tihs_colleges_card:hover .tihs_colleges_card_logo {
  transform: scale(1.1);
}

.tihs_colleges_card_logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tihs_colleges_card_content {
  padding: 40px 30px 30px;
  position: relative;
}

.tihs_colleges_card_location {
  display: flex;
  align-items: center;
  color: #777;
  font-size: 14px;
  margin-bottom: 8px;
}

.tihs_colleges_card_location i {
  color: #FFD700;
  margin-right: 8px;
  font-size: 16px;
}

.tihs_colleges_card_title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  line-height: 1.3;
}

.tihs_colleges_card:hover .tihs_colleges_card_title {
  background: linear-gradient(135deg, #006400, #4CAF50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tihs_colleges_card_divider {
  width: 40px;
  height: 3px;
  background: #FFD700;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.tihs_colleges_card:hover .tihs_colleges_card_divider {
  width: 80px;
  background: linear-gradient(90deg, #006400, #4CAF50);
}

.tihs_colleges_card_buttons {
  display: flex;
  gap: 15px;
}

.tihs_colleges_card_button {
  flex: 1;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.tihs_colleges_card_button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: all 0.3s ease;
  z-index: -1;
}

.tihs_colleges_card_button:hover::before {
  width: 100%;
}

.tihs_colleges_card_button_whatsapp {
  background: #E9F7EC;
  color: #25D366;
  border: 1px solid #C5E8D1;
}

.tihs_colleges_card_button_whatsapp::before {
  background: #25D366;
}

.tihs_colleges_card_button_whatsapp:hover {
  color: white;
  border-color: #25D366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transform: translateY(-3px);
}

.tihs_colleges_card_button_apply {
  background: #E7F0E7;
  color: #006400;
  border: 1px solid #C8DCC8;
}

.tihs_colleges_card_button_apply::before {
  background: #006400;
}

.tihs_colleges_card_button_apply:hover {
  color: white;
  border-color: #006400;
  box-shadow: 0 8px 25px rgba(0, 100, 0, 0.3);
  transform: translateY(-3px);
}

/* Progress Bar */
.tihs_colleges_progress_container {
  width: 100%;
  height: 4px;
  background: #eee;
  border-radius: 2px;
  margin-top: 40px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.6s forwards 1.2s;
}

.tihs_colleges_progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #006400, #4CAF50);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* View All Link */
.tihs_colleges_view_all {
  text-align: center;
  margin-top: 60px;
  opacity: 0;
  animation: fadeInUp 0.6s forwards 1.4s;
}

.tihs_colleges_view_all_link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #006400;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  position: relative;
  padding: 0 5px;
  transition: all 0.3s ease;
}

.tihs_colleges_view_all_link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FFD700;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.tihs_colleges_view_all_link:hover {
  gap: 15px;
}

.tihs_colleges_view_all_link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .tihs_colleges_card {
      min-width: 320px;
  }
  
  .tihs_colleges_title {
      font-size: 48px;
  }
}

@media (max-width: 992px) {
  .tihs_colleges {
      padding: 100px 0;
  }
  
  .tihs_colleges_card {
      min-width: 300px;
  }
  
  .tihs_colleges_title {
      font-size: 42px;
  }
  
  .tihs_colleges_subtitle {
      font-size: 16px;
  }
}

@media (max-width: 768px) {
  .tihs_colleges {
      padding: 80px 0;
  }
  
  .tihs_colleges_card {
      min-width: 100%;
  }
  
  .tihs_colleges_title {
      font-size: 36px;
  }
  
  .tihs_colleges_description {
      font-size: 16px;
  }
  
  .tihs_colleges_card_buttons {
      flex-direction: column;
  }
  
  .tihs_colleges_filter {
      padding: 10px 20px;
      font-size: 14px;
  }
}

@media (max-width: 576px) {
  .tihs_colleges {
      padding: 60px 0;
  }
  
  .tihs_colleges_title {
      font-size: 32px;
  }
  
  .tihs_colleges_subtitle {
      font-size: 14px;
      letter-spacing: 2px;
  }
  
  .tihs_colleges_header {
      margin-bottom: 40px;
  }
  
  .tihs_colleges_card_content {
      padding: 30px 20px 20px;
  }
  
  .tihs_colleges_button {
      width: 50px;
      height: 50px;
      font-size: 16px;
  }
}

/* contact css */

.tihs_getintouch {
  padding: 100px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

/* Wave Shapes */
.tihs_getintouch_waves {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

.tihs_getintouch_wave {
  position: absolute;
  opacity: 0.1;
}

.tihs_getintouch_wave1 {
  bottom: -100px;
  left: -200px;
  width: 800px;
  height: 800px;
  background: linear-gradient(45deg, #006400, #4CAF50);
  border-radius: 45% 55% 60% 40% / 45% 45% 55% 55%;
  animation: waveMorph 15s linear infinite alternate;
}

.tihs_getintouch_wave2 {
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: linear-gradient(45deg, #FFD700, #FFC107);
  border-radius: 60% 40% 45% 55% / 40% 50% 50% 60%;
  animation: waveMorph 18s linear infinite alternate-reverse;
}

.tihs_getintouch_wave3 {
  bottom: 30%;
  right: 20%;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #006400, #4CAF50);
  border-radius: 42% 58% 55% 45% / 35% 65% 35% 65%;
  animation: waveMorph 12s linear infinite alternate;
}

@keyframes waveMorph {
  0% {
      border-radius: 45% 55% 60% 40% / 45% 45% 55% 55%;
      transform: rotate(0deg);
  }
  50% {
      border-radius: 60% 40% 45% 55% / 40% 50% 50% 60%;
      transform: rotate(180deg);
  }
  100% {
      border-radius: 42% 58% 55% 45% / 35% 65% 35% 65%;
      transform: rotate(360deg);
  }
}

/* Container */
.tihs_getintouch_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

/* Wrapper */
.tihs_getintouch_wrapper {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

/* Form Container */
.tihs_getintouch_form_container {
  flex: 1;
  padding: 20px 0;
}

.tihs_getintouch_subtitle {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  color: #006400;
  margin-bottom: 15px;
  display: block;
}

.tihs_getintouch_title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #333;
}

.tihs_getintouch_title span {
  background-image: linear-gradient(135deg, #006400, #4CAF50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.tihs_getintouch_title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: rgba(255, 215, 0, 0.3);
  bottom: 5px;
  left: 0;
  z-index: -1;
}

.tihs_getintouch_description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
  max-width: 550px;
}

/* Contact Cards */
.tihs_getintouch_contact_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.tihs_getintouch_contact_card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.tihs_getintouch_contact_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.tihs_getintouch_contact_icon {
  width: 48px;
  height: 48px;
  background-image: linear-gradient(135deg, #006400, #4CAF50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.tihs_getintouch_contact_details h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.tihs_getintouch_contact_details p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.tihs_getintouch_contact_details a {
  color: #006400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tihs_getintouch_contact_details a:hover {
  color: #4CAF50;
}

/* Form Styling */
.tihs_getintouch_form {
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.tihs_getintouch_form_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.tihs_getintouch_input_group {
  position: relative;
  margin-bottom: 20px;
}

.tihs_getintouch_input {
  width: 100%;
  padding: 15px 5px 10px;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
}

.tihs_getintouch_textarea {
  min-height: 120px;
  resize: vertical;
}

.tihs_getintouch_input:focus {
  outline: none;
}

.tihs_getintouch_bar {
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to right, #006400, #4CAF50);
  width: 0;
  height: 2px;
  transition: all 0.3s ease;
}

.tihs_getintouch_input:focus ~ .tihs_getintouch_bar {
  width: 100%;
}

.tihs_getintouch_input_group label {
  position: absolute;
  top: 15px;
  left: 5px;
  font-size: 16px;
  color: #999;
  transition: all 0.3s ease;
  pointer-events: none;
}

.tihs_getintouch_input:focus ~ label,
.tihs_getintouch_input:valid ~ label {
  top: -5px;
  font-size: 12px;
  color: #006400;
}

/* Submit Button */
.tihs_getintouch_submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-image: linear-gradient(135deg, #006400, #4CAF50);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.tihs_getintouch_submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-image: linear-gradient(135deg, #4CAF50, #006400);
  transition: all 0.5s ease;
  z-index: -1;
}

.tihs_getintouch_submit:hover::before {
  width: 100%;
}

.tihs_getintouch_submit:hover {
  box-shadow: 0 8px 25px rgba(0, 100, 0, 0.25);
  transform: translateY(-3px);
}

.tihs_getintouch_button_icon {
  font-size: 14px;
}

/* Image Container */
.tihs_getintouch_image_container {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 0;
}

.tihs_getintouch_image_content {
  position: relative;
}

.tihs_getintouch_students_img {
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

/* Blob Shape */
.tihs_getintouch_blob {
  position: absolute;
  width: 110%;
  height: 110%;
  background: linear-gradient(45deg, rgba(0, 100, 0, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
  border-radius: 30% 70% 70% 30% / 30% 40% 60% 70%;
  top: -5%;
  left: -5%;
  z-index: 0;
  animation: blobAnimation 20s linear infinite alternate;
}

@keyframes blobAnimation {
  0% {
      border-radius: 30% 70% 70% 30% / 30% 40% 60% 70%;
  }
  25% {
      border-radius: 50% 50% 40% 60% / 40% 60% 40% 60%;
  }
  50% {
      border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  }
  75% {
      border-radius: 60% 40% 50% 50% / 30% 60% 40% 70%;
  }
  100% {
      border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  }
}

/* Floating Info Cards */
.tihs_getintouch_floating_card {
  position: absolute;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 15px;
  gap: 15px;
  z-index: 2;
  animation: floatAnimation 4s ease-in-out infinite;
}

.tihs_getintouch_card1 {
  top: 20%;
  left: -80px;
}

.tihs_getintouch_card2 {
  bottom: 20%;
  right: -80px;
  animation-delay: 2s;
}

@keyframes floatAnimation {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-15px);
  }
}

.tihs_getintouch_card_icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background-image: linear-gradient(135deg, #006400, #4CAF50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.tihs_getintouch_card_text h4 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 2px;
}

.tihs_getintouch_card_text p {
  font-size: 12px;
  color: #666;
}

/* Locations Section */
.tihs_getintouch_locations {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.tihs_getintouch_locations_title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tihs_getintouch_locations_title i {
  color: #006400;
}

.tihs_getintouch_headquarters {
  margin-bottom: 20px;
}

.tihs_getintouch_headquarters h4,
.tihs_getintouch_branches h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.tihs_getintouch_headquarters p {
  color: #666;
  line-height: 1.5;
}

.tihs_getintouch_branches_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

.tihs_getintouch_branch {
  background: rgba(0, 100, 0, 0.05);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #006400;
  text-align: center;
  transition: all 0.3s ease;
}

.tihs_getintouch_branch:hover {
  background: #006400;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 100, 0, 0.15);
}

/* Social Links */
.tihs_getintouch_social_links {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.tihs_getintouch_social_link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #006400;
  font-size: 16px;
  transition: all 0.3s ease;
}

.tihs_getintouch_social_link:hover {
  background: #006400;
  color: white;
  transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .tihs_getintouch_floating_card {
      transform: scale(0.9);
  }
  
  .tihs_getintouch_card1 {
      left: -60px;
  }
  
  .tihs_getintouch_card2 {
      right: -60px;
  }
}

@media (max-width: 992px) {
  .tihs_getintouch_wrapper {
      flex-direction: column-reverse;
  }
  
  .tihs_getintouch_form_container,
  .tihs_getintouch_image_container {
      width: 100%;
  }
  
  .tihs_getintouch_floating_card {
      position: relative;
      margin: 20px;
      top: auto;
      left: auto;
      right: auto;
      bottom: auto;
      animation: none;
  }
  
  .tihs_getintouch_card1,
  .tihs_getintouch_card2 {
      display: inline-flex;
  }
  
  .tihs_getintouch_image_content {
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  
  .tihs_getintouch_social_links {
      justify-content: center;
  }
  
  .tihs_getintouch_title {
      font-size: 36px;
  }
}

@media (max-width: 768px) {
  .tihs_getintouch {
      padding: 80px 0;
  }
  
  .tihs_getintouch_form_row {
      grid-template-columns: 1fr;
      gap: 0;
  }
  
  .tihs_getintouch_contact_cards {
      grid-template-columns: 1fr;
  }
  
  .tihs_getintouch_title {
      font-size: 32px;
  }
  
  .tihs_getintouch_branches_grid {
      grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}

@media (max-width: 576px) {
  .tihs_getintouch {
      padding: 60px 0;
  }
  
  .tihs_getintouch_title {
      font-size: 28px;
  }
  
  .tihs_getintouch_form,
  .tihs_getintouch_locations {
      padding: 20px;
  }
  
  .tihs_getintouch_students_img {
      max-height: 350px;
      object-fit: contain;
  }
  
  .tihs_getintouch_branches_grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

/* breadcrumb area css */
.tihs_breadcrumb {
  position: relative;
  padding: 60px 0 40px;
  background-color: #f8f9fa;
  background-image: repeating-linear-gradient(
      45deg,
      #f8f9fa,
      #f8f9fa 10px,
      #f5f5f5 10px,
      #f5f5f5 20px
  );
  overflow: hidden;
}

/* Container */
.tihs_breadcrumb_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 5;
}

/* Decorative Elements */
.tihs_breadcrumb_decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.tihs_breadcrumb_leaf {
  position: absolute;
  background-color: #4CAF50;
  opacity: 0.1;
  border-radius: 0 50% 50% 50%;
  transform: rotate(45deg);
  z-index: 1;
}

.tihs_breadcrumb_leaf1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -100px;
  animation: leafFloat 15s ease-in-out infinite alternate;
}

.tihs_breadcrumb_leaf2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: 10%;
  animation: leafFloat 12s ease-in-out infinite alternate-reverse;
  transform: rotate(75deg);
}

.tihs_breadcrumb_leaf3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: -50px;
  animation: leafFloat 10s ease-in-out infinite alternate;
  transform: rotate(15deg);
}

@keyframes leafFloat {
  0% {
      transform: rotate(45deg) translate(0, 0);
  }
  50% {
      transform: rotate(50deg) translate(-10px, 10px);
  }
  100% {
      transform: rotate(40deg) translate(10px, -10px);
  }
}

.tihs_breadcrumb_circle {
  position: absolute;
  border-radius: 50%;
  background: #FFD700;
  opacity: 0.05;
  z-index: 1;
}

.tihs_breadcrumb_circle1 {
  width: 120px;
  height: 120px;
  left: 25%;
  bottom: -50px;
}

.tihs_breadcrumb_circle2 {
  width: 80px;
  height: 80px;
  right: 30%;
  top: 20px;
}

/* Title styling */
.tihs_breadcrumb_title {
  font-size: 44px;
  font-weight: 800;
  margin: 0 0 30px;
  position: relative;
  text-align: center;
}

.tihs_breadcrumb_title_inner {
  position: relative;
  display: inline-block;
  padding: 0 15px;
  color: #333;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transform: skewX(-5deg);
  z-index: 2;
}

.tihs_breadcrumb_title_inner::before,
.tihs_breadcrumb_title_inner::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 10px;
  top: 0;
  background: linear-gradient(to bottom, #006400, #4CAF50);
  z-index: 1;
}

.tihs_breadcrumb_title_inner::before {
  left: -5px;
}

.tihs_breadcrumb_title_inner::after {
  right: -5px;
}

/* Navigation */
.tihs_breadcrumb_navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  padding: 5px;
  position: relative;
}

/* Breadcrumb Path */
.tihs_breadcrumb_path {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px 20px;
}

.tihs_breadcrumb_step {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #555;
  transition: all 0.3s ease;
  padding: 8px 5px;
}

.tihs_breadcrumb_step:hover {
  color: #006400;
}

.tihs_breadcrumb_step_current {
  color: #006400;
  font-weight: 600;
}

.tihs_breadcrumb_step_bullet {
  width: 28px;
  height: 28px;
  background: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-right: 8px;
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
}

.tihs_breadcrumb_step:hover .tihs_breadcrumb_step_bullet {
  background: #e1f5e1;
  border-color: #4CAF50;
}

.tihs_breadcrumb_step_current .tihs_breadcrumb_step_bullet {
  background: #006400;
  color: white;
  border-color: #006400;
}

.tihs_breadcrumb_step_text {
  font-size: 14px;
}

.tihs_breadcrumb_connector {
  width: 30px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}

.tihs_breadcrumb_connector svg {
  width: 100%;
  height: 100%;
}

/* Back Button */
.tihs_breadcrumb_back {
  padding-right: 10px;
}

.tihs_breadcrumb_back_link {
  display: flex;
  align-items: center;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 15px;
  background: #f8f8f8;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.tihs_breadcrumb_back_link:hover {
  background: #006400;
  color: white;
  transform: translateX(-5px);
}

.tihs_breadcrumb_back_link svg {
  margin-right: 5px;
  fill: currentColor;
  width: 18px;
  height: 18px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .tihs_breadcrumb {
      padding: 50px 0 35px;
  }
  
  .tihs_breadcrumb_title {
      font-size: 38px;
      margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .tihs_breadcrumb {
      padding: 40px 0 30px;
  }
  
  .tihs_breadcrumb_title {
      font-size: 32px;
      margin-bottom: 20px;
  }
  
  .tihs_breadcrumb_navigation {
      flex-direction: column;
      border-radius: 20px;
      padding: 15px;
      gap: 15px;
  }
  
  .tihs_breadcrumb_path {
      justify-content: center;
      padding: 0;
      width: 100%;
  }
  
  .tihs_breadcrumb_back {
      padding-right: 0;
      width: 100%;
  }
  
  .tihs_breadcrumb_back_link {
      width: 100%;
      justify-content: center;
  }
}

@media (max-width: 576px) {
  .tihs_breadcrumb {
      padding: 30px 0 25px;
  }
  
  .tihs_breadcrumb_title {
      font-size: 26px;
      margin-bottom: 15px;
  }
  
  .tihs_breadcrumb_step_bullet {
      width: 24px;
      height: 24px;
      font-size: 10px;
      margin-right: 5px;
  }
  
  .tihs_breadcrumb_step_text {
      font-size: 12px;
  }
  
  .tihs_breadcrumb_connector {
      width: 20px;
  }
}

/* mvv css */
.tihs_mvv {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

/* Background */
.tihs_mvv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/api/placeholder/1920/1080') center/cover no-repeat;
  z-index: -1;
}

.tihs_mvv_bg_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 0;
}

/* Container */
.tihs_mvv_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header */
.tihs_mvv_header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.tihs_mvv_header_line {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #006400, #4CAF50);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.tihs_mvv_title {
  font-size: 42px;
  font-weight: 800;
  color: #333;
  margin-bottom: 15px;
}

.tihs_mvv_subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Tabs */
.tihs_mvv_tabs {
  position: relative;
}

.tihs_mvv_tab_buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
}

.tihs_mvv_tab_btn {
  padding: 12px 25px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 18px;
  font-weight: 600;
  color: #777;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tihs_mvv_tab_btn.active {
  color: #006400;
  border-color: #006400;
}

.tihs_mvv_tab_btn:hover:not(.active) {
  color: #4CAF50;
}

.tihs_mvv_tab_btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 100, 0, 0.1);
}

/* Tab Content */
.tihs_mvv_tab_content {
  position: relative;
  min-height: 400px;
}

.tihs_mvv_tab_panel {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateY(20px);
}

.tihs_mvv_tab_panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.tihs_mvv_panel_inner {
  display: flex;
  gap: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Panel Image */
.tihs_mvv_panel_image {
  flex: 1;
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.tihs_mvv_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.tihs_mvv_panel_inner:hover .tihs_mvv_img {
  transform: scale(1.05);
}

.tihs_mvv_img_badge {
  position: absolute;
  top: 20px;
  left: 0;
  background: #006400;
  color: white;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Panel Text */
.tihs_mvv_panel_text {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.tihs_mvv_panel_title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.tihs_mvv_panel_divider {
  width: 60px;
  height: 3px;
  background: #006400;
  margin-bottom: 20px;
}

.tihs_mvv_panel_desc {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
}

/* Highlights */
.tihs_mvv_panel_highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.tihs_mvv_highlight {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tihs_mvv_highlight_icon {
  width: 24px;
  height: 24px;
  color: #006400;
}

.tihs_mvv_highlight span {
  font-size: 15px;
  color: #555;
  font-weight: 500;
}

/* Values Grid */
.tihs_mvv_values_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.tihs_mvv_value_item {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.tihs_mvv_value_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  background: #f5f5f5;
}

.tihs_mvv_value_icon {
  width: 40px;
  height: 40px;
  color: #006400;
  margin-bottom: 15px;
}

.tihs_mvv_value_item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.tihs_mvv_value_item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .tihs_mvv {
      padding: 80px 0;
  }
  
  .tihs_mvv_title {
      font-size: 36px;
  }
  
  .tihs_mvv_subtitle {
      font-size: 16px;
  }
  
  .tihs_mvv_panel_inner {
      flex-direction: column;
  }
  
  .tihs_mvv_panel_image {
      min-height: 250px;
  }
  
  .tihs_mvv_panel_text {
      padding: 30px;
  }
  
  .tihs_mvv_panel_title {
      font-size: 24px;
  }
  
  .tihs_mvv_values_grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tihs_mvv {
      padding: 60px 0;
  }
  
  .tihs_mvv_title {
      font-size: 32px;
  }
  
  .tihs_mvv_tab_btn {
      padding: 10px 15px;
      font-size: 16px;
  }
}

@media (max-width: 576px) {
  .tihs_mvv {
      padding: 50px 0;
  }
  
  .tihs_mvv_title {
      font-size: 28px;
  }
  
  .tihs_mvv_header {
      margin-bottom: 40px;
  }
  
  .tihs_mvv_tab_buttons {
      flex-direction: column;
      gap: 10px;
  }
  
  .tihs_mvv_tab_btn {
      border: 1px solid #eee;
      border-radius: 5px;
      text-align: center;
  }
  
  .tihs_mvv_tab_btn.active {
      background: #006400;
      color: white;
      border-color: #006400;
  }
  
  .tihs_mvv_panel_text {
      padding: 25px 20px;
  }
  
  .tihs_mvv_values_grid {
      grid-template-columns: 1fr;
  }
}

/* our history */
.tihs_ourhistory {
  padding: 80px 0;
  background-color: #FAFAFA;
  position: relative;
  overflow: hidden;
  --primary: #006400;
  --secondary: #FFD700;
  --accent: #8B0000;
  --text-dark: #252525;
  --text-medium: #4A4A4A;
  --text-light: #777777;
  --white: #FFFFFF;
}

/* Background Elements */
.tihs_ourhistory_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.tihs_ourhistory_bg::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 100, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 70%, transparent 100%);
  border-radius: 47% 53% 70% 30% / 30% 43% 57% 70%;
  top: -250px;
  left: -200px;
  z-index: 0;
  animation: morphShape 25s linear infinite alternate;
}

.tihs_ourhistory_bg::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, rgba(139, 0, 0, 0.03) 70%, transparent 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: -200px;
  right: -150px;
  z-index: 0;
  animation: morphShape 20s linear infinite alternate-reverse;
}

@keyframes morphShape {
  0% {
      border-radius: 47% 53% 70% 30% / 30% 43% 57% 70%;
  }
  25% {
      border-radius: 55% 45% 60% 40% / 45% 45% 55% 55%;
  }
  50% {
      border-radius: 65% 35% 50% 50% / 35% 65% 35% 65%;
  }
  75% {
      border-radius: 40% 60% 70% 30% / 55% 30% 70% 45%;
  }
  100% {
      border-radius: 30% 70% 55% 45% / 60% 40% 60% 40%;
  }
}

/* Container */
.tihs_ourhistory_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header */
.tihs_ourhistory_header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.tihs_ourhistory_subtitle {
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding: 0 15px;
}

.tihs_ourhistory_subtitle::before, 
.tihs_ourhistory_subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--secondary);
  transform: translateY(-50%);
}

.tihs_ourhistory_subtitle::before {
  left: -20px;
}

.tihs_ourhistory_subtitle::after {
  right: -20px;
}

.tihs_ourhistory_title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.2;
}

.tihs_ourhistory_title span {
  position: relative;
  display: inline-block;
  color: var(--primary);
}

.tihs_ourhistory_title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 8px;
  background: rgba(255, 215, 0, 0.3);
  z-index: -1;
}

.tihs_ourhistory_description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.7;
}

/* Timeline */
.tihs_ourhistory_timeline {
  position: relative;
  padding: 40px 0;
}

.tihs_ourhistory_line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 120px;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--primary), var(--primary), transparent);
  z-index: 1;
}

/* Timeline Items */
.tihs_ourhistory_item {
  position: relative;
  margin-bottom: 70px;
  display: flex;
  z-index: 2;
}

.tihs_ourhistory_item:last-child {
  margin-bottom: 0;
}

.tihs_ourhistory_item::before {
  content: "";
  position: absolute;
  left: 118px;
  top: 20px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  border: 4px solid var(--white);
  z-index: 3;
  box-shadow: 0 0 0 4px rgba(0, 100, 0, 0.1);
}

.tihs_ourhistory_year {
  flex: 0 0 100px;
  text-align: right;
  position: relative;
  padding-top: 15px;
}

.tihs_ourhistory_year span {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  position: relative;
}

.tihs_ourhistory_content {
  flex: 1;
  padding-left: 60px;
  position: relative;
}

/* Card */
.tihs_ourhistory_card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tihs_ourhistory_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

.tihs_ourhistory_card_inner {
  display: flex;
  flex-direction: column;
}

.tihs_ourhistory_img_container {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.tihs_ourhistory_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
  filter: brightness(0.97);
}

.tihs_ourhistory_card:hover .tihs_ourhistory_img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.tihs_ourhistory_text {
  padding: 25px 30px;
}

.tihs_ourhistory_milestone {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.tihs_ourhistory_milestone::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background: var(--secondary);
}

.tihs_ourhistory_text p {
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .tihs_ourhistory {
      padding: 70px 0;
  }

  .tihs_ourhistory_title {
      font-size: 32px;
  }

  .tihs_ourhistory_description {
      font-size: 15px;
  }
}

@media (max-width: 768px) {
  .tihs_ourhistory {
      padding: 60px 0;
  }

  .tihs_ourhistory_header {
      margin-bottom: 40px;
  }

  .tihs_ourhistory_line {
      left: 80px;
  }

  .tihs_ourhistory_item::before {
      left: 78px;
  }

  .tihs_ourhistory_year {
      flex: 0 0 60px;
  }

  .tihs_ourhistory_year span {
      font-size: 18px;
  }

  .tihs_ourhistory_content {
      padding-left: 50px;
  }

  .tihs_ourhistory_milestone {
      font-size: 20px;
  }

  .tihs_ourhistory_img_container {
      height: 200px;
  }

  .tihs_ourhistory_text {
      padding: 20px 25px;
  }
}

@media (max-width: 576px) {
  .tihs_ourhistory {
      padding: 50px 0;
  }

  .tihs_ourhistory_title {
      font-size: 28px;
  }

  .tihs_ourhistory_subtitle {
      font-size: 14px;
  }

  .tihs_ourhistory_description {
      font-size: 14px;
  }

  .tihs_ourhistory_line {
      left: 20px;
  }

  .tihs_ourhistory_item {
      margin-bottom: 50px;
  }

  .tihs_ourhistory_item::before {
      left: 18px;
      top: 18px;
  }

  .tihs_ourhistory_year {
      flex: 0 0 auto;
      position: absolute;
      top: -30px;
      left: 40px;
  }

  .tihs_ourhistory_year span {
      font-size: 16px;
      background: var(--primary);
      color: var(--white);
      padding: 5px 12px;
      border-radius: 20px;
  }

  .tihs_ourhistory_content {
      padding-left: 40px;
      width: 100%;
  }

  .tihs_ourhistory_milestone {
      font-size: 18px;
  }

  .tihs_ourhistory_img_container {
      height: 180px;
  }

  .tihs_ourhistory_text {
      padding: 18px 20px;
  }

  .tihs_ourhistory_text p {
      font-size: 14px;
  }
}
/* founder desk css */
/* === TIHS FOUNDER'S DESK CSS === */
    .tihs_founderdesk {
        padding: 100px 0;
        position: relative;
        background: linear-gradient(135deg, #f5f9f5 0%, #f9f6e9 100%);
        overflow: hidden;
    }

    /* Colorful Background Elements */
    .tihs_founderdesk_bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .tihs_founderdesk_shape {
        position: absolute;
        border-radius: 50%;
        opacity: 0.15;
    }

    .tihs_founderdesk_shape1 {
        width: 500px;
        height: 500px;
        background: linear-gradient(135deg, #006400, #4CAF50);
        top: -200px;
        right: -100px;
        animation: float 15s ease-in-out infinite alternate;
    }

    .tihs_founderdesk_shape2 {
        width: 400px;
        height: 400px;
        background: linear-gradient(135deg, #FFD700, #FFE44D);
        bottom: -150px;
        left: -150px;
        animation: float 20s ease-in-out infinite alternate-reverse;
    }

    .tihs_founderdesk_shape3 {
        width: 200px;
        height: 200px;
        background: linear-gradient(135deg, #C62828, #8B0000);
        top: 60%;
        right: 15%;
        opacity: 0.1;
        animation: float 18s ease-in-out infinite alternate;
    }

    @keyframes float {
        0% {
            transform: translate(0, 0);
        }
        50% {
            transform: translate(-20px, 20px);
        }
        100% {
            transform: translate(20px, -20px);
        }
    }

    .tihs_founderdesk_pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.05;
        background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23006400' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    }

    /* Container */
    .tihs_founderdesk_container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }

    /* Header */
    .tihs_founderdesk_header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
    }

    .tihs_founderdesk_subtitle_wrapper {
        display: inline-block;
        margin-bottom: 15px;
        background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.1), transparent);
        padding: 5px 30px;
        border-radius: 30px;
    }

    .tihs_founderdesk_subtitle {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #8B0000;
        font-weight: 600;
        position: relative;
        padding: 0 20px;
    }

    .tihs_founderdesk_subtitle::before,
    .tihs_founderdesk_subtitle::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 30px;
        height: 2px;
        background: linear-gradient(90deg, #E6C200, #FFD700);
        transform: translateY(-50%);
    }

    .tihs_founderdesk_subtitle::before {
        left: -20px;
    }

    .tihs_founderdesk_subtitle::after {
        right: -20px;
    }

    .tihs_founderdesk_title {
        font-size: 42px;
        font-weight: 800;
        background: linear-gradient(135deg, #004d00, #252525);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1.2;
    }

    .tihs_founderdesk_title span {
        position: relative;
        background: linear-gradient(135deg, #006400, #4CAF50);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .tihs_founderdesk_title span::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 5px;
        width: 100%;
        height: 8px;
        background: linear-gradient(90deg, #FFD700, #FFE44D, #FFD700);
        z-index: -1;
        opacity: 0.5;
    }

    /* Content Wrapper */
    .tihs_founderdesk_wrapper {
        display: flex;
        gap: 60px;
        align-items: flex-start;
    }

    /* Left Column - Founder Image & Info */
    .tihs_founderdesk_founder_col {
        flex: 0 0 40%;
        position: relative;
    }

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

    .tihs_founderdesk_image_frame {
        position: relative;
        padding: 15px;
        background: linear-gradient(135deg, #ffffff, #f5f5f5);
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .tihs_founderdesk_image {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 10px;
        transition: all 0.5s ease;
        filter: contrast(1.05) saturate(1.05);
    }

    .tihs_founderdesk_image_frame:hover .tihs_founderdesk_image {
        transform: scale(1.03);
        filter: contrast(1.1) saturate(1.1);
    }

    .tihs_founderdesk_image_border {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 2px solid;
        border-image: linear-gradient(135deg, #FFD700, #FFE44D, #E6C200, #FFD700) 1;
        border-radius: 15px;
        opacity: 0.7;
        pointer-events: none;
        z-index: 2;
    }

    .tihs_founderdesk_quote_badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #006400, #4CAF50);
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        z-index: 3;
        box-shadow: 0 10px 25px rgba(0, 100, 0, 0.3);
    }

    .tihs_founderdesk_info {
        text-align: center;
        padding: 20px;
        background: linear-gradient(135deg, #ffffff, #f8f8f8);
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        position: relative;
        border-top: 4px solid;
        border-image: linear-gradient(90deg, #006400, #4CAF50) 1;
    }

    .tihs_founderdesk_name {
        font-size: 22px;
        font-weight: 700;
        background: linear-gradient(135deg, #004d00, #006400);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 5px;
    }

    .tihs_founderdesk_position {
        font-size: 15px;
        color: #8B0000;
        font-style: italic;
        margin-bottom: 15px;
    }

    .tihs_founderdesk_credentials {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .tihs_founderdesk_credential {
        font-size: 13px;
        color: #555555;
        padding: 6px 12px;
        background: linear-gradient(90deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .tihs_founderdesk_credential:hover {
        background: linear-gradient(90deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
        transform: translateY(-3px);
    }

    /* Right Column - Message Content */
    .tihs_founderdesk_content_col {
        flex: 1;
    }

    .tihs_founderdesk_message {
        position: relative;
        background: linear-gradient(135deg, #ffffff, #f9f9f9);
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        border-left: 5px solid;
        border-image: linear-gradient(to bottom, #006400, #4CAF50, #FFD700) 1;
    }

    .tihs_founderdesk_quote_mark {
        position: absolute;
        top: 30px;
        left: 30px;
        color: #006400;
        opacity: 0.1;
    }

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

    .tihs_founderdesk_paragraph {
        margin-bottom: 20px;
        color: #555555;
        line-height: 1.8;
    }

    .tihs_founderdesk_paragraph:last-child {
        margin-bottom: 0;
    }

    .tihs_founderdesk_highlight {
        font-weight: 500;
        color: #006400;
        padding: 20px;
        background: linear-gradient(135deg, rgba(0, 100, 0, 0.08), rgba(0, 100, 0, 0.04));
        border-left: 3px solid;
        border-image: linear-gradient(to bottom, #006400, #4CAF50) 1;
        border-radius: 0 10px 10px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .tihs_founderdesk_highlight:hover {
        border-left-width: 5px;
        transform: translateX(5px) scale(1.02);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        background: linear-gradient(135deg, rgba(0, 100, 0, 0.1), rgba(0, 100, 0, 0.05));
    }

    .tihs_founderdesk_footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid;
        border-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent) 1;
    }

    .tihs_founderdesk_signature {
        flex: 0 0 auto;
        filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
    }

    .tihs_founderdesk_signature_img {
        max-width: 120px;
        height: auto;
    }

    .tihs_founderdesk_button {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        background: linear-gradient(135deg, #006400, #4CAF50);
        color: #ffffff;
        text-decoration: none;
        border-radius: 30px;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(0, 100, 0, 0.25);
    }

    .tihs_founderdesk_button:hover {
        background: linear-gradient(135deg, #004d00, #006400);
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(0, 100, 0, 0.35);
    }

    .tihs_founderdesk_btn_icon {
        transition: all 0.3s ease;
    }

    .tihs_founderdesk_button:hover .tihs_founderdesk_btn_icon {
        transform: translateX(4px);
    }

    /* Responsive Styles */
    @media (max-width: 991px) {
        .tihs_founderdesk {
            padding: 80px 0;
        }

        .tihs_founderdesk_title {
            font-size: 36px;
        }

        .tihs_founderdesk_wrapper {
            flex-direction: column;
            gap: 40px;
        }

        .tihs_founderdesk_founder_col {
            flex: 0 0 100%;
            max-width: 500px;
            margin: 0 auto;
        }
    }

    @media (max-width: 768px) {
        .tihs_founderdesk {
            padding: 60px 0;
        }

        .tihs_founderdesk_title {
            font-size: 32px;
        }

        .tihs_founderdesk_message {
            padding: 30px;
        }

        .tihs_founderdesk_quote_mark {
            top: 20px;
            left: 20px;
            transform: scale(0.8);
        }

        .tihs_founderdesk_footer {
            flex-direction: column;
            gap: 20px;
            align-items: flex-start;
        }
    }

    @media (max-width: 576px) {
        .tihs_founderdesk {
            padding: 50px 0;
        }

        .tihs_founderdesk_header {
            margin-bottom: 40px;
        }

        .tihs_founderdesk_title {
            font-size: 28px;
        }

        .tihs_founderdesk_message {
            padding: 25px 20px;
        }

        .tihs_founderdesk_quote_badge {
            width: 60px;
            height: 60px;
            right: -10px;
            bottom: -15px;
            font-size: 20px;
        }

        .tihs_founderdesk_highlight {
            padding: 15px;
        }

        .tihs_founderdesk_name {
            font-size: 20px;
        }

        .tihs_founderdesk_position {
            font-size: 14px;
        }

        .tihs_founderdesk_paragraph {
            font-size: 15px;
            line-height: 1.7;
        }

        .tihs_founderdesk_button {
            width: 100%;
            justify-content: center;
        }
    }

    /* team members area */
    .tihs_ourteam {
      padding: 120px 0;
      position: relative;
      background: linear-gradient(135deg, #f6f9f6 0%, #f9f7ea 100%);
      overflow: hidden;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }

  /* Background Elements */
  .tihs_ourteam_bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
  }

  .tihs_ourteam_shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.15;
      filter: blur(30px);
  }

  .tihs_ourteam_shape1 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, #4CAF50 0%, #006400 70%);
      top: -250px;
      right: -150px;
      animation: float-rotate 25s ease-in-out infinite alternate;
  }

  .tihs_ourteam_shape2 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, #FFE44D 0%, #FFD700 70%);
      bottom: -200px;
      left: -150px;
      animation: float-rotate 30s ease-in-out infinite alternate-reverse;
  }

  .tihs_ourteam_shape3 {
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, #D32F2F 0%, #8B0000 70%);
      top: 60%;
      right: 15%;
      opacity: 0.08;
      animation: float-rotate 20s ease-in-out infinite alternate;
  }

  @keyframes float-rotate {
      0% {
          transform: translate(0, 0) rotate(0deg);
      }
      50% {
          transform: translate(-20px, 20px) rotate(180deg);
      }
      100% {
          transform: translate(20px, -20px) rotate(360deg);
      }
  }

  .tihs_ourteam_pattern {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.03;
      background-image: 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='%23006400' fill-opacity='1' fill-rule='evenodd'%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/svg%3E");
  }

  .tihs_ourteam_lines {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }

  .tihs_ourteam_line {
      position: absolute;
      width: 1px;
      height: 100%;
      background: linear-gradient(to bottom, 
          rgba(0, 100, 0, 0), 
          rgba(0, 100, 0, 0.05) 10%, 
          rgba(0, 100, 0, 0.05) 90%, 
          rgba(0, 100, 0, 0));
  }

  .tihs_ourteam_line:nth-child(1) {
      left: 25%;
  }

  .tihs_ourteam_line:nth-child(2) {
      left: 50%;
  }

  .tihs_ourteam_line:nth-child(3) {
      left: 75%;
  }

  /* Container */
  .tihs_ourteam_container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 1;
  }

  /* Header */
  .tihs_ourteam_header {
      text-align: center;
      margin-bottom: 80px;
      position: relative;
  }

  .tihs_ourteam_subtitle_container {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
  }

  .tihs_ourteam_subtitle_dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #8B0000;
      margin: 0 12px;
  }

  .tihs_ourteam_subtitle {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: #8B0000;
      font-weight: 600;
      position: relative;
      padding: 5px 0;
  }

  .tihs_ourteam_subtitle::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, #8B0000, transparent);
  }

  .tihs_ourteam_title {
      font-size: 48px;
      font-weight: 800;
      background: linear-gradient(135deg, #004d00, #252525);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.2;
      margin-bottom: 20px;
      position: relative;
  }

  .tihs_ourteam_title span {
      position: relative;
      display: inline-block;
      background: linear-gradient(135deg, #006400, #4CAF50);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .tihs_ourteam_title span::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 5px;
      width: 100%;
      height: 8px;
      background: linear-gradient(90deg, #FFD700, #FFE44D, #FFD700);
      z-index: -1;
      opacity: 0.5;
  }

  .tihs_ourteam_description {
      max-width: 700px;
      margin: 0 auto;
      font-size: 18px;
      line-height: 1.7;
      color: #555555;
  }

  /* Team Members Showcase */
  .tihs_ourteam_showcase {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      margin-bottom: 60px;
  }

  /* Team Member Card */
  .tihs_ourteam_member {
      position: relative;
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .tihs_ourteam_member:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  }

  .tihs_ourteam_member_profile {
      position: relative;
      padding: 30px 20px;
      background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 2px dashed rgba(0, 100, 0, 0.1);
  }

  .tihs_ourteam_profile_photo {
      width: 120px;
      height: 120px;
      position: relative;
      margin-bottom: 20px;
  }

  .tihs_ourteam_profile_photo::before {
      content: "";
      position: absolute;
      top: -10px;
      left: -10px;
      right: -10px;
      bottom: -10px;
      border: 2px solid;
      border-radius: 50%;
      border-image: linear-gradient(135deg, #FFD700, #FFE44D, #E6C200, #FFD700) 1;
      animation: rotate 15s linear infinite;
  }

  @keyframes rotate {
      from {
          transform: rotate(0deg);
      }
      to {
          transform: rotate(360deg);
      }
  }

  .tihs_ourteam_profile_img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid white;
      transition: all 0.5s ease;
  }

  .tihs_ourteam_member:hover .tihs_ourteam_profile_img {
      transform: scale(1.05);
  }

  .tihs_ourteam_profile_info {
      text-align: center;
      margin-bottom: 15px;
  }

  .tihs_ourteam_profile_name {
      font-size: 22px;
      font-weight: 700;
      background: linear-gradient(135deg, #004d00, #006400);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 5px;
  }

  .tihs_ourteam_profile_role {
      font-size: 14px;
      color: #8B0000;
      font-style: italic;
  }

  .tihs_ourteam_profile_social {
      display: flex;
      gap: 10px;
  }

  .tihs_ourteam_social_link {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #006400;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      font-size: 14px;
  }

  .tihs_ourteam_social_link:hover {
      background: linear-gradient(135deg, #006400, #4CAF50);
      color: white;
      transform: translateY(-3px);
  }

  .tihs_ourteam_member_content {
      padding: 25px;
  }

  .tihs_ourteam_content_bio {
      margin-bottom: 20px;
      position: relative;
  }

  .tihs_ourteam_content_bio p {
      font-size: 15px;
      line-height: 1.7;
      color: #555555;
      position: relative;
      padding-left: 15px;
  }

  .tihs_ourteam_content_bio p::before {
      content: "";
      position: absolute;
      left: 0;
      top: 5px;
      bottom: 5px;
      width: 3px;
      background: linear-gradient(to bottom, #006400, #4CAF50);
      border-radius: 3px;
  }

  .tihs_ourteam_content_expertise {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
  }

  .tihs_ourteam_content_expertise span {
      font-size: 12px;
      font-weight: 500;
      padding: 5px 12px;
      background: linear-gradient(90deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
      border-radius: 30px;
      color: #555555;
      transition: all 0.3s ease;
  }

  .tihs_ourteam_content_expertise span:hover {
      background: linear-gradient(90deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
      transform: translateY(-3px);
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  }

  /* Team CTA */
  .tihs_ourteam_cta {
      text-align: center;
      background: linear-gradient(135deg, #ffffff, #f9f9f9);
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
      border-left: 5px solid;
      border-image: linear-gradient(to bottom, #006400, #4CAF50, #FFD700) 1;
      max-width: 700px;
      margin: 0 auto;
  }

  .tihs_ourteam_cta_text {
      font-size: 18px;
      font-weight: 600;
      color: #222222;
      margin-bottom: 20px;
  }

  .tihs_ourteam_button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(135deg, #006400, #4CAF50);
      color: white;
      text-decoration: none;
      padding: 0;
      border-radius: 40px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 100, 0, 0.2);
      transition: all 0.3s ease;
  }

  .tihs_ourteam_button_text {
      padding: 14px 25px 14px 30px;
      font-weight: 600;
  }

  .tihs_ourteam_button_icon {
      background: rgba(0, 0, 0, 0.1);
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
  }

  .tihs_ourteam_button:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 100, 0, 0.3);
      background: linear-gradient(135deg, #004d00, #006400);
  }

  .tihs_ourteam_button:hover .tihs_ourteam_button_icon {
      background: rgba(255, 215, 0, 0.2);
  }

  /* Responsive Styles */
  @media (max-width: 991px) {
      .tihs_ourteam {
          padding: 100px 0;
      }

      .tihs_ourteam_title {
          font-size: 40px;
      }

      .tihs_ourteam_showcase {
          grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
          gap: 30px;
      }
  }

  @media (max-width: 768px) {
      .tihs_ourteam {
          padding: 80px 0;
      }

      .tihs_ourteam_title {
          font-size: 36px;
      }

      .tihs_ourteam_description {
          font-size: 16px;
      }

      .tihs_ourteam_showcase {
          grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
          gap: 25px;
      }
  }

  @media (max-width: 576px) {
      .tihs_ourteam {
          padding: 60px 0;
      }

      .tihs_ourteam_header {
          margin-bottom: 50px;
      }

      .tihs_ourteam_title {
          font-size: 30px;
      }

      .tihs_ourteam_showcase {
          grid-template-columns: 1fr;
          max-width: 320px;
          margin-left: auto;
          margin-right: auto;
      }

      .tihs_ourteam_description {
          font-size: 15px;
      }

      .tihs_ourteam_cta {
          padding: 25px 20px;
      }

      .tihs_ourteam_cta_text {
          font-size: 16px;
      }

      .tihs_ourteam_button {
          width: 100%;
      }
  }

  /* our student  */
  .tihs_ourstudent {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f5f9f5 0%, #f9f6e9 100%);
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Background Elements */
.tihs_ourstudent_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.tihs_ourstudent_shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(20px);
}

.tihs_ourstudent_shape1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #4CAF50 0%, #006400 70%);
    top: -200px;
    right: -100px;
    animation: rotate-float 25s ease-in-out infinite alternate;
}

.tihs_ourstudent_shape2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #FFE44D 0%, #FFD700 70%);
    bottom: -150px;
    left: -150px;
    animation: rotate-float 30s ease-in-out infinite alternate-reverse;
}

.tihs_ourstudent_shape3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #C62828 0%, #8B0000 70%);
    top: 60%;
    right: 15%;
    opacity: 0.1;
    animation: rotate-float 20s ease-in-out infinite alternate;
}

@keyframes rotate-float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    100% {
        transform: translate(20px, -20px) rotate(360deg);
    }
}

.tihs_ourstudent_pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 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='%23006400' fill-opacity='1' fill-rule='evenodd'%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/svg%3E");
}

.tihs_ourstudent_lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.04;
    background-image: repeating-linear-gradient(
        0deg,
        #006400,
        #006400 1px,
        transparent 1px,
        transparent 30px
    );
}

/* Container */
.tihs_ourstudent_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.tihs_ourstudent_header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.tihs_ourstudent_subtitle_bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.tihs_ourstudent_subtitle_line {
    height: 1px;
    width: 40px;
    background: linear-gradient(90deg, transparent, #8B0000, transparent);
}

.tihs_ourstudent_subtitle {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #8B0000;
    font-weight: 600;
    margin: 0 15px;
    position: relative;
}

.tihs_ourstudent_title {
    font-size: 44px;
    font-weight: 800;
    color: #1A202C;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
}

.tihs_ourstudent_title span {
    position: relative;
    color: #006400;
}

.tihs_ourstudent_title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 10px;
    background: rgba(255, 215, 0, 0.3);
    z-index: -1;
    border-radius: 5px;
}

.tihs_ourstudent_description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: #555555;
}

/* Student Showcase */
.tihs_ourstudent_showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Student Card */
.tihs_ourstudent_card {
    position: relative;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    padding-top: 60px;
    z-index: 1;
}

.tihs_ourstudent_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #006400, #4CAF50);
    z-index: 2;
}

.tihs_ourstudent_card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.tihs_ourstudent_card_hexagon {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 24px;
    padding: 5px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.4s ease;
}

.tihs_ourstudent_hexagon_inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.tihs_ourstudent_hexagon_inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, #FFD700, #FFE44D, #E6C200, #FFD700) 1;
    z-index: 2;
    border-radius: 20px;
}

.tihs_ourstudent_photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.tihs_ourstudent_card:hover .tihs_ourstudent_photo {
    transform: scale(1.1);
}

.tihs_ourstudent_card:hover .tihs_ourstudent_card_hexagon {
    transform: translateX(-50%) scale(1.1);
}

.tihs_ourstudent_card_content {
    padding: 30px 25px;
    text-align: center;
}

.tihs_ourstudent_year {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(0, 100, 0, 0.1), rgba(0, 100, 0, 0.05));
    color: #006400;
    font-weight: 700;
    font-size: 14px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.tihs_ourstudent_name {
    font-size: 20px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 8px;
}

.tihs_ourstudent_college {
    font-size: 16px;
    font-weight: 600;
    color: #8B0000;
    margin-bottom: 5px;
}

.tihs_ourstudent_course {
    font-size: 14px;
    color: #555555;
}

.tihs_ourstudent_card_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 100, 0, 0.95), rgba(0, 100, 0, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 3;
}

.tihs_ourstudent_card:hover .tihs_ourstudent_card_overlay {
    opacity: 1;
}

.tihs_ourstudent_overlay_icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
    transform: translateY(-20px) scale(0.8);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.tihs_ourstudent_overlay_text {
    color: white;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.tihs_ourstudent_card:hover .tihs_ourstudent_overlay_icon,
.tihs_ourstudent_card:hover .tihs_ourstudent_overlay_text {
    transform: translateY(0);
    opacity: 1;
}

/* CTA Section */
.tihs_ourstudent_cta {
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tihs_ourstudent_cta_leaf {
    position: absolute;
    width: 60px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Cpath d='M60,30c0-16.6-13.4-30-30-30S0,13.4,0,30H60z' fill='%23006400' opacity='0.1'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.tihs_ourstudent_cta_leaf_left {
    right: calc(50% + 120px);
    transform: rotate(180deg);
}

.tihs_ourstudent_cta_leaf_right {
    left: calc(50% + 120px);
    transform: rotate(180deg) scaleX(-1);
}

.tihs_ourstudent_button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: white;
    color: #1A202C;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.tihs_ourstudent_button_text {
    padding: 15px 25px 15px 30px;
}

.tihs_ourstudent_button_icon {
    background: linear-gradient(135deg, #006400, #4CAF50);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.tihs_ourstudent_button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.tihs_ourstudent_button:hover .tihs_ourstudent_button_icon {
    background: linear-gradient(135deg, #FFD700, #FFE44D);
    color: #1A202C;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .tihs_ourstudent {
        padding: 80px 0;
    }

    .tihs_ourstudent_title {
        font-size: 38px;
    }

    .tihs_ourstudent_showcase {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 30px;
    }

    .tihs_ourstudent_cta_leaf {
        display: none;
    }
}

@media (max-width: 768px) {
    .tihs_ourstudent {
        padding: 60px 0;
    }

    .tihs_ourstudent_title {
        font-size: 32px;
    }

    .tihs_ourstudent_description {
        font-size: 16px;
    }

    .tihs_ourstudent_showcase {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 40px 20px;
    }
}

@media (max-width: 576px) {
    .tihs_ourstudent {
        padding: 50px 0;
    }

    .tihs_ourstudent_header {
        margin-bottom: 60px;
    }

    .tihs_ourstudent_title {
        font-size: 28px;
    }

    .tihs_ourstudent_showcase {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .tihs_ourstudent_description {
        font-size: 15px;
    }

    .tihs_ourstudent_button {
        width: 100%;
    }
}
/* faq area css */
.tihs_faqs {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(135deg, #f5f9f5 0%, #f9f6e9 100%);
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Background Elements */
.tihs_faqs_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.tihs_faqs_shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.tihs_faqs_shape1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #006400, #4CAF50);
  top: -200px;
  right: -100px;
  animation: float 15s ease-in-out infinite alternate;
}

.tihs_faqs_shape2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #FFD700, #FFE44D);
  bottom: -150px;
  left: -150px;
  animation: float 20s ease-in-out infinite alternate-reverse;
}

.tihs_faqs_shape3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #C62828, #8B0000);
  top: 60%;
  right: 15%;
  opacity: 0.1;
  animation: float 18s ease-in-out infinite alternate;
}

@keyframes float {
  0% {
      transform: translate(0, 0);
  }
  50% {
      transform: translate(-20px, 20px);
  }
  100% {
      transform: translate(20px, -20px);
  }
}

.tihs_faqs_pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23006400' fill-opacity='1' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='10'/%3E%3Cpath d='M0 40 L40 0 M40 40 L0 0' stroke='%23006400' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");

}

/* Container */
.tihs_faqs_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header */
.tihs_faqs_header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.tihs_faqs_header_icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #006400, #4CAF50);
  color: white;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 100, 0, 0.2);
  position: relative;
}

.tihs_faqs_header_icon::before,
.tihs_faqs_header_icon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(0, 100, 0, 0.3);
  animation: spin 30s linear infinite;
}

.tihs_faqs_header_icon::before {
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  animation-direction: normal;
}

.tihs_faqs_header_icon::after {
  top: -16px;
  left: -16px;
  right: -16px;
  bottom: -16px;
  animation-direction: reverse;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

.tihs_faqs_title {
  font-size: 42px;
  font-weight: 800;
  color: #252525;
  line-height: 1.2;
  margin-bottom: 20px;
}

.tihs_faqs_title span {
  position: relative;
  color: #006400;
}

.tihs_faqs_title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 8px;
  background: rgba(255, 215, 0, 0.3);
  z-index: -1;
}

.tihs_faqs_description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
}

/* About Section */
.tihs_faqs_about {
  margin-bottom: 60px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

.tihs_faqs_about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #006400, #4CAF50, #FFD700);
}

.tihs_faqs_about_content {
  padding: 40px;
}

.tihs_faqs_about_info {
  position: relative;
}

.tihs_faqs_about_title {
  font-size: 28px;
  font-weight: 700;
  color: #252525;
  margin-bottom: 20px;
}

.tihs_faqs_about_divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #006400, #4CAF50);
  margin-bottom: 20px;
  border-radius: 3px;
}

.tihs_faqs_about_text {
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 20px;
}

.tihs_faqs_about_text:last-child {
  margin-bottom: 0;
}

/* Tabs Navigation */
.tihs_faqs_tabs_container {
  margin-bottom: 60px;
}

.tihs_faqs_tabs_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tihs_faqs_tab_btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border: none;
  border-radius: 30px;
  color: #555555;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.tihs_faqs_tab_icon {
  width: 30px;
  height: 30px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  transition: all 0.3s ease;
}

.tihs_faqs_tab_btn:hover,
.tihs_faqs_tab_active {
  background: linear-gradient(135deg, #006400, #4CAF50);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 100, 0, 0.2);
}

.tihs_faqs_tab_btn:hover .tihs_faqs_tab_icon,
.tihs_faqs_tab_active .tihs_faqs_tab_icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Tab Content */
.tihs_faqs_tab_panel {
  display: none;
}

.tihs_faqs_tab_active {
  display: block;
}

/* FAQ Items */
.tihs_faqs_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tihs_faqs_item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tihs_faqs_item.active {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tihs_faqs_q {
  display: flex;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.tihs_faqs_item.active .tihs_faqs_q {
  background: rgba(0, 100, 0, 0.03);
}

.tihs_faqs_q_marker {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #006400, #4CAF50);
  color: white;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.tihs_faqs_q_text {
  font-size: 17px;
  font-weight: 600;
  color: #252525;
  flex: 1;
  padding-right: 40px;
}

.tihs_faqs_toggle {
  position: absolute;
  right: 20px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #006400;
  transition: all 0.3s ease;
}

.tihs_faqs_item.active .tihs_faqs_toggle {
  transform: rotate(180deg);
}

.tihs_faqs_a {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.tihs_faqs_item.active .tihs_faqs_a {
  max-height: 500px;
}

.tihs_faqs_a_marker {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #FFD700, #FFE44D);
  color: #252525;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.tihs_faqs_a {
  display: flex;
  padding: 5px 20px 20px;
}

.tihs_faqs_a_content {
  padding-top: 8px;
}

.tihs_faqs_a_content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
}

/* Contact CTA */
.tihs_faqs_contact {
  padding: 40px;
  background: linear-gradient(135deg, #006400, #4CAF50);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 100, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.tihs_faqs_contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 0C44.8 0 0 44.8 0 100s44.8 100 100 100 100-44.8 100-100S155.2 0 100 0zm0 180c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
  background-size: contain;
  opacity: 0.4;
}

.tihs_faqs_contact_content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.tihs_faqs_contact_text {
  flex: 1;
  min-width: 250px;
}

.tihs_faqs_contact_title {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.tihs_faqs_contact_desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.tihs_faqs_contact_actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.tihs_faqs_contact_phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tihs_faqs_contact_phone:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.tihs_faqs_contact_button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: white;
  border-radius: 30px;
  color: #006400;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.tihs_faqs_contact_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.tihs_faqs_contact_button i {
  transition: all 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 991px) {
  .tihs_faqs {
      padding: 80px 0;
  }

  .tihs_faqs_title {
      font-size: 36px;
  }

  .tihs_faqs_tabs_nav {
      justify-content: center;
  }
}

@media (max-width: 768px) {
  .tihs_faqs {
      padding: 60px 0;
  }

  .tihs_faqs_title {
      font-size: 32px;
  }

  .tihs_faqs_about_content,
  .tihs_faqs_contact {
      padding: 30px;
  }

  .tihs_faqs_about_title,
  .tihs_faqs_contact_title {
      font-size: 24px;
  }

  .tihs_faqs_q_text {
      font-size: 16px;
  }

  .tihs_faqs_contact_content {
      flex-direction: column;
      align-items: flex-start;
  }

  .tihs_faqs_contact_text {
      margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .tihs_faqs {
      padding: 50px 0;
  }

  .tihs_faqs_header {
      margin-bottom: 40px;
  }

  .tihs_faqs_title {
      font-size: 28px;
  }

  .tihs_faqs_description {
      font-size: 15px;
  }

  .tihs_faqs_about_content,
  .tihs_faqs_contact {
      padding: 25px 20px;
  }

  .tihs_faqs_about_title {
      font-size: 22px;
  }

  .tihs_faqs_about_text {
      font-size: 15px;
  }

  .tihs_faqs_q {
      padding: 15px;
  }

  .tihs_faqs_q_marker,
  .tihs_faqs_a_marker {
      width: 30px;
      height: 30px;
      font-size: 16px;
      margin-right: 10px;
  }

  .tihs_faqs_q_text {
      font-size: 15px;
      padding-right: 30px;
  }

  .tihs_faqs_a_content p {
      font-size: 15px;
  }

  .tihs_faqs_contact_title {
      font-size: 22px;
  }

  .tihs_faqs_contact_phone,
  .tihs_faqs_contact_button {
      width: 100%;
      justify-content: center;
  }
}

/* gallery area css */
.tihs_gallery {
  padding: 120px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

/* Creative Background */
.tihs_gallery_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.tihs_gallery_wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 128, 0, 0.03) 0%, rgba(255, 215, 0, 0.03) 100%);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 0 250 Q 250 150 500 250 T 1000 250 L 1000 1000 L 0 1000 Z' fill='%23fff'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 0 250 Q 250 150 500 250 T 1000 250 L 1000 1000 L 0 1000 Z' fill='%23fff'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
}

.tihs_gallery_particle {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  animation: float 15s infinite alternate;
}

.tihs_gallery_particle1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 128, 0, 0.1) 0%, rgba(0, 128, 0, 0) 70%);
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.tihs_gallery_particle2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 70%);
  bottom: 20%;
  right: 10%;
  animation-delay: 3s;
}

.tihs_gallery_particle3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 128, 0, 0.07) 0%, rgba(0, 128, 0, 0) 70%);
  top: 50%;
  right: 30%;
  animation-delay: 6s;
}

.tihs_gallery_particle4 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.07) 0%, rgba(255, 215, 0, 0) 70%);
  bottom: 40%;
  left: 20%;
  animation-delay: 9s;
}

.tihs_gallery_particle5 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(70, 130, 180, 0.07) 0%, rgba(70, 130, 180, 0) 70%);
  top: 30%;
  right: 15%;
  animation-delay: 12s;
}

@keyframes float {
  0% {
      transform: translate(0, 0) scale(1);
  }
  50% {
      transform: translate(30px, 20px) scale(1.05);
  }
  100% {
      transform: translate(-20px, 10px) scale(0.95);
  }
}

/* Container */
.tihs_gallery_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.tihs_gallery_header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.tihs_gallery_header_inner {
  display: inline-block;
  position: relative;
}

.tihs_gallery_subtitle {
  font-size: 16px;
  color: #006400;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 15px;
  display: block;
  position: relative;
  opacity: 0;
  animation: fadeIn 0.6s forwards 0.2s;
}

.tihs_gallery_title {
  font-size: 52px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.2;
  position: relative;
  opacity: 0;
  animation: fadeIn 0.6s forwards 0.4s;
}

.tihs_gallery_title span {
  position: relative;
  display: inline-block;
  color: #006400;
}

.tihs_gallery_title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: rgba(255, 215, 0, 0.3);
  bottom: 5px;
  left: 0;
  z-index: -1;
}

.tihs_gallery_header_line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #006400, transparent);
  margin: 15px auto 0;
  opacity: 0;
  animation: widthAnim 0.8s forwards 0.6s;
}

.tihs_gallery_description {
  max-width: 700px;
  margin: 30px auto 0;
  color: #666;
  font-size: 18px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeIn 0.6s forwards 0.8s;
}

@keyframes widthAnim {
  from {
      width: 0;
      opacity: 1;
  }
  to {
      width: 80px;
      opacity: 1;
  }
}

/* Gallery Navigation */
.tihs_gallery_navigation {
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 0.6s forwards 1s;
}

.tihs_gallery_nav_slider {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tihs_gallery_nav_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 20px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tihs_gallery_nav_item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #006400;
  transition: all 0.3s ease;
}

.tihs_gallery_nav_item:hover::before,
.tihs_gallery_nav_item.active::before {
  width: 80%;
}

.tihs_gallery_nav_item:hover,
.tihs_gallery_nav_item.active {
  background: rgba(0, 100, 0, 0.05);
  transform: translateY(-3px);
}

.tihs_gallery_nav_icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  color: #006400;
  font-size: 20px;
  transition: all 0.3s ease;
}

.tihs_gallery_nav_item:hover .tihs_gallery_nav_icon,
.tihs_gallery_nav_item.active .tihs_gallery_nav_icon {
  background: #006400;
  color: white;
}

.tihs_gallery_nav_item span {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  transition: all 0.3s ease;
}

.tihs_gallery_nav_item:hover span,
.tihs_gallery_nav_item.active span {
  color: #006400;
}

/* Gallery Masonry */
/* Gallery Main Container */
.tihs_gallery_masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(250px, auto);
  gap: 15px;
  opacity: 0;
  animation: fadeIn 0.8s forwards 1.2s;
}

.tihs_gallery_masonry_item {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  min-height: 250px;
  cursor: pointer;
}

.tihs_gallery_masonry_tall {
  grid-row: span 2;
}

.tihs_gallery_masonry_wide {
  grid-column: span 2;
}

.tihs_gallery_item_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.6s forwards;
  animation-delay: calc(0.1s * var(--order, 0));
  border-radius: inherit;
}

.tihs_gallery_masonry_item:nth-child(1) .tihs_gallery_item_wrapper { --order: 1; }
.tihs_gallery_masonry_item:nth-child(2) .tihs_gallery_item_wrapper { --order: 2; }
.tihs_gallery_masonry_item:nth-child(3) .tihs_gallery_item_wrapper { --order: 3; }
.tihs_gallery_masonry_item:nth-child(4) .tihs_gallery_item_wrapper { --order: 4; }
.tihs_gallery_masonry_item:nth-child(5) .tihs_gallery_item_wrapper { --order: 5; }
.tihs_gallery_masonry_item:nth-child(6) .tihs_gallery_item_wrapper { --order: 6; }
.tihs_gallery_masonry_item:nth-child(7) .tihs_gallery_item_wrapper { --order: 7; }
.tihs_gallery_masonry_item:nth-child(8) .tihs_gallery_item_wrapper { --order: 8; }

@keyframes slideUp {
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

/* Enhanced Image Display */
.tihs_gallery_item_media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tihs_gallery_item_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  border-radius: inherit;
  /* Ensure image fills container completely */
  min-width: 100%;
  min-height: 100%;
}

/* Image Display - No Loading States */

/* Overlay Styles */
.tihs_gallery_item_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: inherit;
}

.tihs_gallery_item_media:hover .tihs_gallery_item_overlay {
  opacity: 1;
}

.tihs_gallery_item_media:hover img {
  transform: scale(1.05);
}

.tihs_gallery_item_overlay_content {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.tihs_gallery_item_media:hover .tihs_gallery_item_overlay_content {
  transform: translateY(0);
  opacity: 1;
}

.tihs_gallery_item_category {
  display: inline-block;
  margin-bottom: 8px;
}

.tihs_gallery_item_category span {
  background: rgba(255, 215, 0, 0.9);
  color: #333;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tihs_gallery_item_title {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.tihs_gallery_item_desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tihs_gallery_item_action {
  margin-top: 8px;
}

.tihs_gallery_item_link {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tihs_gallery_item_link:hover {
  background: #FFD700;
  color: #006400;
  transform: rotate(90deg) scale(1.1);
}

/* Enhanced Lightbox */
.tihs_gallery_lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  backdrop-filter: blur(10px);
}

.tihs_gallery_lightbox_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
}

.tihs_gallery_lightbox_container {
  position: relative;
  width: 95%;
  max-width: 1200px;
  height: 95%;
  margin: 2.5% auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.6);
}

.tihs_gallery_lightbox_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  border-bottom: 1px solid #eee;
  background: white;
  z-index: 2;
}

.tihs_gallery_lightbox_title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.tihs_gallery_lightbox_close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tihs_gallery_lightbox_close svg {
  width: 20px;
  height: 20px;
  stroke: #777;
  stroke-width: 2;
  fill: none;
}

.tihs_gallery_lightbox_close:hover {
  background: #ff4d4d;
  transform: rotate(90deg);
}

.tihs_gallery_lightbox_close:hover svg {
  stroke: white;
}

.tihs_gallery_lightbox_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.tihs_gallery_lightbox_image_container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fafafa;
  position: relative;
}

.tihs_gallery_lightbox_image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tihs_gallery_lightbox_details {
  padding: 20px 25px;
  background: white;
  border-top: 1px solid #eee;
}

.tihs_gallery_lightbox_category {
  display: inline-block;
  background: #f0f0f0;
  color: #006400;
  padding: 6px 15px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tihs_gallery_lightbox_description {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.tihs_gallery_lightbox_nav {
  position: absolute;
  bottom: 25px;
  right: 25px;
  display: flex;
  gap: 10px;
}

.tihs_gallery_lightbox_prev,
.tihs_gallery_lightbox_next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tihs_gallery_lightbox_prev svg,
.tihs_gallery_lightbox_next svg {
  width: 18px;
  height: 18px;
  stroke: #555;
  stroke-width: 2;
  fill: none;
}

.tihs_gallery_lightbox_prev:hover,
.tihs_gallery_lightbox_next:hover {
  background: #006400;
  transform: translateY(-2px) scale(1.05);
}

.tihs_gallery_lightbox_prev:hover svg,
.tihs_gallery_lightbox_next:hover svg {
  stroke: white;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Design for Perfect Image Display */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .tihs_gallery_masonry {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 20px;
  }
  
  .tihs_gallery_item_title {
    font-size: 20px;
  }
  
  .tihs_gallery_item_desc {
    font-size: 14px;
  }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .tihs_gallery_masonry {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(260px, auto);
    gap: 18px;
  }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .tihs_gallery_masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 15px;
  }
  
  .tihs_gallery_masonry_wide {
    grid-column: span 2;
  }
  
  .tihs_gallery_item_title {
    font-size: 18px;
  }
  
  .tihs_gallery_item_desc {
    font-size: 13px;
  }
  
  .tihs_gallery_lightbox_container {
    width: 90%;
    height: 90%;
  }
}

/* Tablet Portrait & Large Mobile (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .tihs_gallery_masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 12px;
  }
  
  .tihs_gallery_masonry_tall,
  .tihs_gallery_masonry_wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .tihs_gallery_item_overlay {
    padding: 15px;
  }
  
  .tihs_gallery_item_title {
    font-size: 16px;
  }
  
  .tihs_gallery_item_desc {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
  
  .tihs_gallery_lightbox_container {
    width: 95%;
    height: 95%;
  }
  
  .tihs_gallery_lightbox_image_container {
    padding: 15px;
  }
}

/* Mobile (max-width: 575px) */
@media (max-width: 575px) {
  .tihs_gallery_masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(300px, auto);
    gap: 15px;
  }
  
  .tihs_gallery_masonry_tall,
  .tihs_gallery_masonry_wide {
    grid-column: 1;
    grid-row: span 1;
  }
  
  .tihs_gallery_item_wrapper {
    min-height: 300px;
  }
  
  .tihs_gallery_item_overlay {
    padding: 20px;
  }
  
  .tihs_gallery_item_title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .tihs_gallery_item_desc {
    font-size: 13px;
    -webkit-line-clamp: 3;
  }
  
  .tihs_gallery_item_category span {
    font-size: 10px;
    padding: 3px 8px;
  }
  
  .tihs_gallery_lightbox_container {
    width: 98%;
    height: 98%;
    margin: 1% auto;
    border-radius: 15px;
  }
  
  .tihs_gallery_lightbox_header {
    padding: 12px 20px;
  }
  
  .tihs_gallery_lightbox_title {
    font-size: 16px;
  }
  
  .tihs_gallery_lightbox_close {
    width: 35px;
    height: 35px;
  }
  
  .tihs_gallery_lightbox_close svg {
    width: 16px;
    height: 16px;
  }
  
  .tihs_gallery_lightbox_image_container {
    padding: 15px;
  }
  
  .tihs_gallery_lightbox_details {
    padding: 15px 20px;
  }
  
  .tihs_gallery_lightbox_nav {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }
  
  .tihs_gallery_lightbox_prev,
  .tihs_gallery_lightbox_next {
    width: 40px;
    height: 40px;
  }
  
  .tihs_gallery_lightbox_prev svg,
  .tihs_gallery_lightbox_next svg {
    width: 16px;
    height: 16px;
  }
}

/* Small Mobile (max-width: 400px) */
@media (max-width: 400px) {
  .tihs_gallery_masonry {
    grid-auto-rows: minmax(280px, auto);
    gap: 12px;
  }
  
  .tihs_gallery_item_wrapper {
    min-height: 280px;
  }
  
  .tihs_gallery_item_overlay {
    padding: 15px;
  }
  
  .tihs_gallery_item_title {
    font-size: 16px;
  }
  
  .tihs_gallery_item_desc {
    font-size: 12px;
  }
  
  .tihs_gallery_lightbox_container {
    border-radius: 10px;
  }
  
  .tihs_gallery_lightbox_header {
    padding: 10px 15px;
  }
  
  .tihs_gallery_lightbox_details {
    padding: 12px 15px;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .tihs_gallery_item_media img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  
  .tihs_gallery_lightbox_image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .tihs_gallery_lightbox,
  .tihs_gallery_item_overlay,
  .tihs_gallery_item_action {
    display: none !important;
  }
  
  .tihs_gallery_masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  .tihs_gallery_masonry,
  .tihs_gallery_item_wrapper,
  .tihs_gallery_item_media img,
  .tihs_gallery_item_overlay,
  .tihs_gallery_item_overlay_content,
  .tihs_gallery_item_link {
    animation: none !important;
    transition: none !important;
  }
}

/* Focus Styles for Keyboard Navigation */
.tihs_gallery_item_wrapper:focus,
.tihs_gallery_lightbox_close:focus,
.tihs_gallery_lightbox_prev:focus,
.tihs_gallery_lightbox_next:focus {
  outline: 3px solid #006400;
  outline-offset: 2px;
}

/* Loading States */
.tihs_gallery_loading .tihs_gallery_masonry {
  opacity: 0.5;
  pointer-events: none;
}

.tihs_gallery_loading .tihs_gallery_item_media::after {
  content: 'Loading...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666;
  font-size: 14px;
  z-index: 2;
}
/* services area css */
.tihs_services {
  padding: 120px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Geometric Background */
.tihs_services_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  z-index: 0;
  overflow: hidden;
}

.tihs_services_shape {
  position: absolute;
  opacity: 0.1;
}

.tihs_services_shape1 {
  width: 500px;
  height: 500px;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  background: linear-gradient(45deg, #006400, #4CAF50);
  top: -250px;
  left: -100px;
  animation: tihsMorph 15s linear infinite alternate;
}

.tihs_services_shape2 {
  width: 400px;
  height: 400px;
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  background: linear-gradient(45deg, #FFD700, #FFC107);
  bottom: -200px;
  right: -100px;
  animation: tihsMorph 12s linear infinite alternate-reverse;
}

.tihs_services_dots {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#006400 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.1;
}

/* Container */
.tihs_services_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.tihs_services_header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.tihs_services_subtitle {
  font-size: 18px;
  color: #006400;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  opacity: 0;
  animation: tihsFadeInUp 0.6s forwards 0.2s;
}

.tihs_services_title {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #006400 0%, #4CAF50 100%);
  -webkit-background-clip: text;
 
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
  opacity: 0;
  animation: tihsFadeInUp 0.6s forwards 0.4s;
}

.tihs_services_title span {
  position: relative;
  display: inline-block;
}

.tihs_services_title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background: rgba(255, 215, 0, 0.3);
  bottom: 5px;
  left: 0;
  z-index: -1;
}

.tihs_services_description {
  max-width: 700px;
  margin: 0 auto;
  color: #777;
  font-size: 18px;
  line-height: 1.8;
  opacity: 0;
  animation: tihsFadeInUp 0.6s forwards 0.6s;
}

/* Services Grid */
.tihs_services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

/* Service Card */
.tihs_services_card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  opacity: 0;
  animation: tihsFadeIn 0.8s forwards;
  animation-delay: calc(0.1s * var(--animation-order, 0));
  transform: translateY(20px);
}

.tihs_services_card:nth-child(1) { --animation-order: 1; }
.tihs_services_card:nth-child(2) { --animation-order: 2; }
.tihs_services_card:nth-child(3) { --animation-order: 3; }
.tihs_services_card:nth-child(4) { --animation-order: 4; }
.tihs_services_card:nth-child(5) { --animation-order: 5; }
.tihs_services_card:nth-child(6) { --animation-order: 6; }

.tihs_services_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tihs_services_card_media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tihs_services_card_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.tihs_services_card:hover .tihs_services_card_media img {
  transform: scale(1.1);
}

.tihs_services_card_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 100, 0, 0.1) 0%, rgba(0, 100, 0, 0.4) 100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.tihs_services_card:hover .tihs_services_card_overlay {
  opacity: 0.9;
}

.tihs_services_card_category {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}

.tihs_services_card_category span {
  background: rgba(255, 255, 255, 0.9);
  color: #006400;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 30px;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tihs_services_card_content {
  position: relative;
  padding: 30px;
  z-index: 2;
}

.tihs_services_card_icon {
  position: absolute;
  top: -50px;
  left: 30px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #006400 0%, #4CAF50 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 10px 20px rgba(0, 100, 0, 0.2);
  z-index: 3;
  transition: all 0.3s ease;
}

.tihs_services_card:hover .tihs_services_card_icon {
  transform: rotateY(180deg);
}

.tihs_services_card_title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.tihs_services_card:hover .tihs_services_card_title {
  color: #006400;
}

.tihs_services_card_text {
  color: #777;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.tihs_services_card_link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #006400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tihs_services_arrow {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: all 0.3s ease;
}

.tihs_services_card_link:hover {
  color: #4CAF50;
}

.tihs_services_card_link:hover .tihs_services_arrow {
  transform: translateX(5px);
}

.tihs_services_card_wave {
  position: absolute;
  top: 200px;
  left: 0;
  width: 100%;
  height: 20px;
  z-index: 2;
}

.tihs_services_card_wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Featured Service */
.tihs_services_featured {
  display: flex;
  background: #f8f9fa;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 80px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  opacity: 0;
  animation: tihsFadeInUp 0.8s forwards 1s;
}

.tihs_services_featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 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='%23006400' fill-opacity='0.05'%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");
}

.tihs_services_featured_content {
  flex: 1;
  padding: 60px;
  position: relative;
  z-index: 1;
}

.tihs_services_featured_badge {
  display: inline-block;
  background: linear-gradient(135deg, #006400 0%, #4CAF50 100%);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 100, 0, 0.2);
}

.tihs_services_featured_title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.tihs_services_featured_text {
  color: #777;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 600px;
}

.tihs_services_featured_list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.tihs_services_featured_list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #555;
}

.tihs_services_featured_list li i {
  color: #006400;
  margin-right: 10px;
  margin-top: 3px;
  font-size: 18px;
}

.tihs_services_featured_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #006400, #4CAF50);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 100, 0, 0.2);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.tihs_services_featured_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 100, 0, 0.3);
}

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

.tihs_services_featured_btn i {
  transition: all 0.3s ease;
}

.tihs_services_featured_image {
  position: relative;
  min-width: 50%;
  background: #006400;
  overflow: hidden;
}

.tihs_services_featured_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: all 0.5s ease;
}

.tihs_services_featured:hover .tihs_services_featured_image img {
  transform: scale(1.05);
  opacity: 0.9;
}

.tihs_services_featured_shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 100, 0, 0.7) 0%, rgba(76, 175, 80, 0.4) 100%);
  mix-blend-mode: multiply;
}

/* Call to Action */
.tihs_services_cta {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 100, 0, 0.03) 0%, rgba(255, 215, 0, 0.03) 100%);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: tihsFadeInUp 0.8s forwards 1.2s;
}

.tihs_services_cta_inner {
  background: linear-gradient(135deg, #006400 0%, #4CAF50 100%);
  border-radius: 15px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: 0 15px 35px rgba(0, 100, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.tihs_services_cta_inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.tihs_services_cta_content {
  flex: 1;
  min-width: 300px;
}

.tihs_services_cta_title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.tihs_services_cta_text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
}

.tihs_services_cta_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFD700;
  color: #333;
  padding: 16px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.tihs_services_cta_btn:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.tihs_services_cta_btn i {
  transition: all 0.3s ease;
}

/* Animations */
@keyframes tihsFadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes tihsFadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes tihsMorph {
  0% {
      border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  25% {
      border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
  }
  50% {
      border-radius: 54% 46% 38% 62% / 43% 54% 46% 57%;
  }
  75% {
      border-radius: 60% 40% 50% 50% / 30% 60% 40% 70%;
  }
  100% {
      border-radius: 35% 65% 70% 30% / 40% 50% 50% 60%;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .tihs_services_title {
      font-size: 48px;
  }
  
  .tihs_services_grid {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .tihs_services_featured_content {
      padding: 40px;
  }
  
  .tihs_services_featured_title {
      font-size: 32px;
  }
  
  .tihs_services_cta_inner {
      padding: 50px;
  }
}

@media (max-width: 992px) {
  .tihs_services {
      padding: 100px 0;
  }
  
  .tihs_services_title {
      font-size: 42px;
  }
  
  .tihs_services_subtitle {
      font-size: 16px;
  }
  
  .tihs_services_grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 25px;
  }
  
  .tihs_services_featured {
      flex-direction: column;
  }
  
  .tihs_services_featured_image {
      min-height: 300px;
  }
  
  .tihs_services_cta_inner {
      padding: 40px;
      flex-direction: column;
      text-align: center;
  }
  
  .tihs_services_cta_action {
      width: 100%;
      display: flex;
      justify-content: center;
  }
}

@media (max-width: 768px) {
  .tihs_services {
      padding: 80px 0;
  }
  
  .tihs_services_title {
      font-size: 36px;
  }
  
  .tihs_services_description {
      font-size: 16px;
  }
  
  .tihs_services_grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .tihs_services_card_media {
      height: 200px;
  }
  
  .tihs_services_card_wave {
      top: 180px;
  }
  
  .tihs_services_card_content {
      padding: 25px;
  }
  
  .tihs_services_card_title {
      font-size: 22px;
  }
  
  .tihs_services_featured_content {
      padding: 30px;
  }
  
  .tihs_services_featured_title {
      font-size: 28px;
  }
  
  .tihs_services_cta_inner {
      padding: 30px;
  }
  
  .tihs_services_cta_title {
      font-size: 28px;
  }
}

@media (max-width: 576px) {
  .tihs_services {
      padding: 60px 0;
  }
  
  .tihs_services_title {
      font-size: 32px;
  }
  
  .tihs_services_subtitle {
      font-size: 14px;
      letter-spacing: 2px;
  }
  
  .tihs_services_grid {
      grid-template-columns: 1fr;
  }
  
  .tihs_services_featured_title {
      font-size: 24px;
  }
  
  .tihs_services_featured_text {
      font-size: 15px;
  }
  
  .tihs_services_cta_title {
      font-size: 24px;
  }
  
  .tihs_services_cta_text {
      font-size: 15px;
  }
  
  .tihs_services_cta_btn {
      width: 100%;
      justify-content: center;
  }
}

/* news area css */
.tihs_news {
  position: relative;
  padding: 100px 0;
  background-color: #fafbff;
  color: #333;
  overflow: hidden;
}

/* Decorative Elements */
.tihs_news_decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.tihs_news_circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(40px);
}

.tihs_news_circle1 {
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(0, 100, 0, 0.05);
  animation: tihs_news_float 20s infinite alternate ease-in-out;
}

.tihs_news_circle2 {
  bottom: -200px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: rgba(255, 215, 0, 0.04);
  animation: tihs_news_float 25s infinite alternate-reverse ease-in-out;
}

.tihs_news_circle3 {
  top: 40%;
  right: 20%;
  width: 300px;
  height: 300px;
  background: rgba(0, 100, 0, 0.03);
  animation: tihs_news_float 18s infinite alternate ease-in-out;
}

.tihs_news_pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: 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='%23006400' fill-opacity='1'%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;
}

@keyframes tihs_news_float {
  0% {
      transform: translate(0, 0);
  }
  100% {
      transform: translate(30px, 30px);
  }
}

/* Container */
.tihs_news_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.tihs_news_header {
  text-align: center;
  margin-bottom: 60px;
}

.tihs_news_overline {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #006400;
  margin-bottom: 15px;
  position: relative;
}

.tihs_news_overline::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #006400;
}

.tihs_news_heading {
  font-size: 42px;
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.tihs_news_heading span {
  color: #006400;
  position: relative;
}

.tihs_news_heading span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 10px;
  background-color: rgba(255, 215, 0, 0.3);
  z-index: -1;
}

.tihs_news_intro {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.6;
  color: #666;
}

/* Category Buttons */
.tihs_news_categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.tihs_news_category_btn {
  background: none;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tihs_news_category_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #006400;
  transition: all 0.3s ease;
  z-index: -1;
}

.tihs_news_category_btn:hover::before,
.tihs_news_category_btn.active::before {
  width: 100%;
}

.tihs_news_category_btn:hover,
.tihs_news_category_btn.active {
  color: white;
  border-color: #006400;
}

/* Featured News */
.tihs_news_featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
}

.tihs_news_featured_image {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.tihs_news_featured_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.tihs_news_featured:hover .tihs_news_featured_image img {
  transform: scale(1.05);
}

.tihs_news_featured_badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(45deg, #006400, #009900);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 100, 0, 0.2);
  z-index: 2;
}

.tihs_news_featured_content {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.tihs_news_featured_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.tihs_news_featured_date,
.tihs_news_featured_time,
.tihs_news_featured_location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}

.tihs_news_featured_date_icon,
.tihs_news_featured_time_icon,
.tihs_news_featured_location_icon {
  display: flex;
  color: #006400;
}

.tihs_news_featured_title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.tihs_news_featured:hover .tihs_news_featured_title {
  color: #006400;
}

.tihs_news_featured_text {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.tihs_news_featured_actions {
  display: flex;
  gap: 15px;
  margin-top: auto;
  flex-wrap: wrap;
}

.tihs_news_featured_btn_primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #006400;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tihs_news_featured_btn_primary:hover {
  background: #007800;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 100, 0, 0.15);
}

.tihs_news_featured_btn_primary svg {
  transition: all 0.3s ease;
}

.tihs_news_featured_btn_primary:hover svg {
  transform: translateX(5px);
}

.tihs_news_featured_btn_secondary {
  display: inline-flex;
  align-items: center;
  background: #f5f5f5;
  color: #333;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tihs_news_featured_btn_secondary:hover {
  background: #eaeaea;
  transform: translateY(-3px);
}

/* News Grid */
.tihs_news_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.tihs_news_card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tihs_news_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tihs_news_card_media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.tihs_news_card_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.tihs_news_card:hover .tihs_news_card_media img {
  transform: scale(1.1);
}

.tihs_news_card_category {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: white;
  color: #006400;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.tihs_news_card_content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tihs_news_card_date {
  color: #666;
  font-size: 14px;
  margin-bottom: 12px;
}

.tihs_news_card_title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.tihs_news_card:hover .tihs_news_card_title {
  color: #006400;
}

.tihs_news_card_text {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.tihs_news_card_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #006400;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.3s ease;
}

.tihs_news_card_link:hover {
  color: #007800;
}

.tihs_news_card_link svg {
  transition: all 0.3s ease;
}

.tihs_news_card_link:hover svg {
  transform: translateX(5px);
}

/* Events Schedule */
.tihs_news_events {
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.tihs_news_events_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.tihs_news_events_title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.tihs_news_events_calendar_link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #006400;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tihs_news_events_calendar_link:hover {
  color: #007800;
}

.tihs_news_events_calendar_link:hover svg {
  transform: translateX(5px);
}

.tihs_news_events_calendar_link svg {
  transition: all 0.3s ease;
}

.tihs_news_events_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.tihs_news_event {
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.tihs_news_event:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.tihs_news_event_date {
  background: #006400;
  color: white;
  padding: 15px;
  text-align: center;
}

.tihs_news_event_day {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.tihs_news_event_month {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

.tihs_news_event_content {
  padding: 20px;
  flex: 1;
}

.tihs_news_event_title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.tihs_news_event:hover .tihs_news_event_title {
  color: #006400;
}

.tihs_news_event_details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tihs_news_event_time,
.tihs_news_event_location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}

.tihs_news_event_time svg,
.tihs_news_event_location svg {
  color: #006400;
}

.tihs_news_event_button {
  display: inline-block;
  background: #f0f0f0;
  color: #333;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tihs_news_event_button:hover {
  background: #006400;
  color: white;
}

/* Newsletter */
.tihs_news_newsletter {
  background: linear-gradient(135deg, #006400, #007800);
  border-radius: 15px;
  padding: 50px;
  margin-bottom: 60px;
  color: white;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 100, 0, 0.15);
}

.tihs_news_newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

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

.tihs_news_newsletter_icon {
  margin-bottom: 20px;
}

.tihs_news_newsletter_title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.tihs_news_newsletter_text {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 500px;
}

.tihs_news_newsletter_form {
  flex: 1;
  min-width: 350px;
  position: relative;
  z-index: 1;
}

.tihs_news_newsletter_input_wrap {
  display: flex;
  margin-bottom: 15px;
}

.tihs_news_newsletter_input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 15px;
  color: #333;
  outline: none;
}

.tihs_news_newsletter_button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFD700;
  color: #333;
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 0 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tihs_news_newsletter_button:hover {
  background: #FFC107;
}

.tihs_news_newsletter_button:hover svg {
  transform: translateX(5px);
}

.tihs_news_newsletter_button svg {
  transition: all 0.3s ease;
}

.tihs_news_newsletter_terms {
  display: flex;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
}

.tihs_news_newsletter_terms input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.tihs_news_newsletter_checkbox {
  height: 18px;
  width: 18px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin-right: 10px;
  margin-top: 2px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.tihs_news_newsletter_terms:hover input ~ .tihs_news_newsletter_checkbox {
  background-color: rgba(255, 255, 255, 0.3);
}

.tihs_news_newsletter_terms input:checked ~ .tihs_news_newsletter_checkbox {
  background-color: #FFD700;
}

.tihs_news_newsletter_checkbox:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.tihs_news_newsletter_terms input:checked ~ .tihs_news_newsletter_checkbox:after {
  display: block;
}

.tihs_news_newsletter_terms_text {
  font-size: 14px;
  opacity: 0.9;
}

.tihs_news_newsletter_terms_text a {
  color: #FFD700;
  text-decoration: none;
}

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

/* View All Button */
.tihs_news_view_all {
  text-align: center;
  margin-top: 30px;
}

.tihs_news_view_all_link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #006400;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tihs_news_view_all_link:hover {
  background: #007800;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 100, 0, 0.15);
}

.tihs_news_view_all_link:hover svg {
  transform: translateX(5px);
}

.tihs_news_view_all_link svg {
  transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .tihs_news_heading {
      font-size: 38px;
  }
  
  .tihs_news_grid {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 992px) {
  .tihs_news {
      padding: 80px 0;
  }
  
  .tihs_news_heading {
      font-size: 34px;
  }
  
  .tihs_news_intro {
      font-size: 16px;
  }
  
  .tihs_news_featured {
      grid-template-columns: 1fr;
  }
  
  .tihs_news_featured_image {
      min-height: 300px;
  }
  
  .tihs_news_newsletter {
      flex-direction: column;
      align-items: flex-start;
      gap: 30px;
      padding: 40px;
  }
  
  .tihs_news_newsletter_form {
      width: 100%;
      min-width: auto;
  }
}

@media (max-width: 768px) {
  .tihs_news {
      padding: 60px 0;
  }
  
  .tihs_news_heading {
      font-size: 30px;
  }
  
  .tihs_news_featured_content {
      padding: 30px;
  }
  
  .tihs_news_featured_title {
      font-size: 24px;
  }
  
  .tihs_news_grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
  }
  
  .tihs_news_events {
      padding: 30px;
  }
  
  .tihs_news_events_grid {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .tihs_news {
      padding: 50px 0;
  }
  
  .tihs_news_heading {
      font-size: 28px;
  }
  
  .tihs_news_overline {
      font-size: 12px;
  }
  
  .tihs_news_intro {
      font-size: 15px;
  }
  
  .tihs_news_category_btn {
      padding: 8px 20px;
      font-size: 14px;
  }
  
  .tihs_news_featured_content {
      padding: 25px;
  }
  
  .tihs_news_featured_title {
      font-size: 22px;
  }
  
  .tihs_news_grid {
      grid-template-columns: 1fr;
  }
  
  .tihs_news_events,
  .tihs_news_newsletter {
      padding: 25px;
  }
  
  .tihs_news_newsletter_title {
      font-size: 24px;
  }
  
  .tihs_news_newsletter_input_wrap {
      flex-direction: column;
  }
  
  .tihs_news_newsletter_input,
  .tihs_news_newsletter_button {
      width: 100%;
      border-radius: 8px;
  }
  
  .tihs_news_newsletter_input {
      margin-bottom: 10px;
  }
}

/* courses all area css */
.tihs_coursesall {
  padding: 80px 20px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Background Shapes */
.tihs_coursesall_bg_shape {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(64, 128, 64, 0.08) 0%, rgba(64, 128, 64, 0.01) 100%);
  top: -250px;
  left: -250px;
  z-index: -1;
}

.tihs_coursesall_bg_shape2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, rgba(139, 0, 0, 0.01) 100%);
  bottom: -200px;
  right: -200px;
  z-index: -1;
}

/* Header Styles */
.tihs_coursesall_header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.tihs_coursesall_title {
  font-size: 2.8rem;
  color: #006400;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
 
}

.tihs_coursesall_title::after {
  content: '';
  position: absolute;
  height: 6px;
  width: 70px;
  background-color: #FFD700;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.tihs_coursesall_subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 25px;
}

/* Category Filters */
.tihs_coursesall_categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.tihs_coursesall_category {
  padding: 10px 25px;
  background-color: white;
  border-radius: 30px;
  color: #333;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
}

.tihs_coursesall_category:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tihs_coursesall_category.active {
  background-color: #006400;
  color: white;
}

/* Courses Grid */
.tihs_coursesall_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 35px;
}

/* Course Card Styles */
.tihs_coursesall_course {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tihs_coursesall_course:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tihs_coursesall_course_ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  background-color: #8B0000;
  color: white;
  padding: 5px 30px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
  z-index: 1;
  box-shadow: 0 3px 10px rgba(139, 0, 0, 0.3);
}

.tihs_coursesall_image_container {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.tihs_coursesall_course_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.tihs_coursesall_course:hover .tihs_coursesall_course_image {
  transform: scale(1.1);
}

.tihs_coursesall_course_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: all 0.3s ease;
}

.tihs_coursesall_course:hover .tihs_coursesall_course_overlay {
  height: 65%;
}

.tihs_coursesall_course_rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
}

.tihs_coursesall_course_rating i {
  color: #FFD700;
}

.tihs_coursesall_course_content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tihs_coursesall_course_category {
  color: #006400;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.tihs_coursesall_course_title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #252525;
  font-weight: 700;
  line-height: 1.4;
}

.tihs_coursesall_course_desc {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.tihs_coursesall_course_meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #666;
}

.tihs_coursesall_course_meta_item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tihs_coursesall_course_meta_item i {
  color: #006400;
}

.tihs_coursesall_course_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}

.tihs_coursesall_course_price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #006400;
}

.tihs_coursesall_course_price_old {
  font-size: 1rem;
  text-decoration: line-through;
  color: #aaa;
  margin-left: 10px;
}

.tihs_coursesall_course_button {
  background-color: #006400;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tihs_coursesall_course_button:hover {
  background-color: #004d00;
  transform: translateY(-3px);
}

/* View More Button */
.tihs_coursesall_view_more {
  text-align: center;
  margin-top: 60px;
}

.tihs_coursesall_view_more_btn {
  background-color: transparent;
  color: #006400;
  border: 2px solid #006400;
  padding: 14px 35px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tihs_coursesall_view_more_btn:hover {
  background-color: #006400;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 100, 0, 0.3);
}

.tihs_coursesall_view_more_btn i {
  transition: transform 0.3s ease;
}

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

/* Course Details Modal */
.tihs_coursesall_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.tihs_coursesall_modal.active {
  opacity: 1;
  visibility: visible;
}

.tihs_coursesall_modal_content {
  background-color: white;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.tihs_coursesall_modal.active .tihs_coursesall_modal_content {
  transform: translateY(0);
}

.tihs_coursesall_modal_close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  z-index: 10;
}

.tihs_coursesall_modal_title {
  font-size: 2rem;
  color: #006400;
  margin-bottom: 20px;
}

.tihs_coursesall_modal_info {
  margin-bottom: 30px;
}

.tihs_coursesall_modal_image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.tihs_coursesall_modal_details {
  line-height: 1.8;
  color: #444;
}

.tihs_coursesall_modal_details p {
  margin-bottom: 15px;
}

.tihs_coursesall_modal_apply {
  background-color: #006400;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 30px auto 0;
}

.tihs_coursesall_modal_apply:hover {
  background-color: #004d00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 100, 0, 0.3);
}

/* More courses section (initially hidden) */
.tihs_coursesall_more_courses {
  display: none;
}

/* Animations */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.tihs_coursesall_course {
  animation: fadeIn 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .tihs_coursesall_grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 25px;
  }
}

@media (max-width: 992px) {
  .tihs_coursesall {
      padding: 60px 20px;
  }
  
  .tihs_coursesall_title {
      font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .tihs_coursesall_title {
      font-size: 2rem;
  }
  
  .tihs_coursesall_grid {
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 20px;
  }
  
  .tihs_coursesall_course_title {
      font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .tihs_coursesall_title {
      font-size: 1.8rem;
  }
  
  .tihs_coursesall_grid {
      grid-template-columns: 1fr;
      max-width: 350px;
      margin: 0 auto;
  }
  
  .tihs_coursesall_categories {
      gap: 10px;
  }
  
  .tihs_coursesall_category {
      padding: 8px 20px;
      font-size: 0.9rem;
  }
  
  .tihs_coursesall_modal_content {
      padding: 20px;
  }
  
  .tihs_coursesall_modal_title {
      font-size: 1.6rem;
  }
}
/* courses details  */
.tihs_coursesall {
  padding: 90px 0;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

/* Background Elements */
.tihs_coursesall_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#006400 0.5px, transparent 0.5px), radial-gradient(#006400 0.5px, #ffffff 0.5px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  opacity: 0.05;
  z-index: 1;
}

/* Section Content */
.tihs_coursesall_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.tihs_coursesall_header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.tihs_coursesall_subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-block;
  position: relative;
}

.tihs_coursesall_subtitle::before,
.tihs_coursesall_subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: #FFD700;
}

.tihs_coursesall_subtitle::before {
  left: -40px;
}

.tihs_coursesall_subtitle::after {
  right: -40px;
}

.tihs_coursesall_title {
  font-size: 42px;
  font-weight: 700;
  color: #006400;
  margin-bottom: 20px;
  position: relative;
}

.tihs_coursesall_description {
  max-width: 700px;
  margin: 0 auto;
  color: #555555;
  line-height: 1.8;
  font-size: 16px;
}

/* Course Card */
.tihs_coursesall_card {
  background: #FFFFFF;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 50px;
  transition: all 0.3s ease;
}

.tihs_coursesall_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Course Header */
.tihs_coursesall_card_header {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.tihs_coursesall_card_image {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
  height: 300px;
}

.tihs_coursesall_card_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tihs_coursesall_card:hover .tihs_coursesall_card_img {
  transform: scale(1.05);
}

.tihs_coursesall_card_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 100, 0, 0.7), rgba(0, 100, 0, 0.3));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  padding: 20px;
  text-align: center;
}

.tihs_coursesall_card_badge {
  background: #FFD700;
  color: #252525;
  padding: 6px 15px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tihs_coursesall_card_title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.tihs_coursesall_card_subtitle {
  font-size: 16px;
  opacity: 0.9;
}

/* Course Intro */
.tihs_coursesall_card_intro {
  flex: 0 0 60%;
  padding: 40px;
  background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
}

.tihs_coursesall_card_description {
  color: #555555;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 16px;
}

/* Stats Grid */
.tihs_coursesall_stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.tihs_coursesall_stat {
  text-align: center;
  padding: 15px 10px;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tihs_coursesall_stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tihs_coursesall_stat_icon {
  font-size: 24px;
  color: #006400;
  margin-bottom: 10px;
}

.tihs_coursesall_stat_number {
  font-size: 22px;
  font-weight: 700;
  color: #006400;
  margin-bottom: 5px;
}

.tihs_coursesall_stat_text {
  font-size: 13px;
  color: #666666;
}

/* Course Body */
.tihs_coursesall_card_body {
  padding: 40px;
}

/* Details Accordion */
.tihs_coursesall_accordion {
  margin-bottom: 40px;
}

.tihs_coursesall_accordion_item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background: #FFFFFF;
}

.tihs_coursesall_accordion_header {
  padding: 18px 25px;
  background: #f5f7fa;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.tihs_coursesall_accordion_header:hover {
  background: #e9f0fa;
}

.tihs_coursesall_accordion_title {
  font-size: 17px;
  font-weight: 600;
  color: #006400;
}

.tihs_coursesall_accordion_icon {
  font-size: 14px;
  color: #006400;
  transition: transform 0.3s ease;
}

.tihs_coursesall_accordion_item.active .tihs_coursesall_accordion_icon {
  transform: rotate(180deg);
}

.tihs_coursesall_accordion_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.tihs_coursesall_accordion_item.active .tihs_coursesall_accordion_content {
  max-height: 1000px;
}

.tihs_coursesall_accordion_body {
  padding: 20px 25px;
  color: #555555;
  line-height: 1.8;
}

.tihs_coursesall_accordion_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tihs_coursesall_accordion_list_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #e0e0e0;
}

.tihs_coursesall_accordion_list_item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.tihs_coursesall_accordion_list_icon {
  color: #006400;
  margin-right: 10px;
  font-size: 16px;
  margin-top: 3px;
}

.tihs_coursesall_accordion_list_text {
  flex: 1;
}

/* Affiliated Colleges Scrolling Section */
.tihs_coursesall_colleges {
  margin-bottom: 40px;
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.tihs_coursesall_section_title {
  font-size: 22px;
  font-weight: 700;
  color: #006400;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}

.tihs_coursesall_section_title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 60px;
  height: 2px;
  background: #006400;
}

.tihs_coursesall_colleges_scroll {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.tihs_coursesall_colleges_track {
  display: flex;
  animation: marquee 30s linear infinite;
  padding-left: 100%;
}

@keyframes marquee {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}

.tihs_coursesall_college {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  margin-right: 30px;
  padding: 20px 15px;
  background: #f5f7fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.tihs_coursesall_college:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  background: #FFFFFF;
}

.tihs_coursesall_college_logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 10px;
}

.tihs_coursesall_college_logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tihs_coursesall_college_name {
  font-size: 15px;
  font-weight: 600;
  color: #333333;
  text-align: center;
  margin-bottom: 5px;
  white-space: normal;
}

.tihs_coursesall_college_location {
  font-size: 12px;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Career Paths */
.tihs_coursesall_careers {
  margin-bottom: 40px;
}

.tihs_coursesall_careers_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tihs_coursesall_career {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-top: 3px solid #006400;
}

.tihs_coursesall_career:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tihs_coursesall_career_header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.tihs_coursesall_career_icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(0, 100, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #006400;
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}

.tihs_coursesall_career_title {
  font-size: 17px;
  font-weight: 600;
  color: #333333;
}

.tihs_coursesall_career_text {
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
}

/* Enrollment CTA */
.tihs_coursesall_cta {
  text-align: center;
  margin-top: 40px;
  padding: 40px;
  border-radius: 15px;
  background: linear-gradient(135deg, #006400 0%, #008000 100%);
  color: #FFFFFF;
}

.tihs_coursesall_cta_title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.tihs_coursesall_cta_text {
  max-width: 600px;
  margin: 0 auto 25px;
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.7;
  color: #ffffff;
}

.tihs_coursesall_cta_btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 35px;
  background: #FFD700;
  color: #252525;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
  gap: 10px;
}

.tihs_coursesall_cta_btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.tihs_coursesall_cta_btn_icon {
  transition: transform 0.3s ease;
}

.tihs_coursesall_cta_btn:hover .tihs_coursesall_cta_btn_icon {
  transform: translateX(5px);
}

/* Animation Classes */
.tihs_fade_up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.tihs_fade_up.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .tihs_coursesall {
      padding: 70px 0;
  }

  .tihs_coursesall_title {
      font-size: 36px;
  }

  .tihs_coursesall_card_header {
      flex-direction: column;
  }

  .tihs_coursesall_card_image, 
  .tihs_coursesall_card_intro {
      flex: 0 0 100%;
  }

  .tihs_coursesall_card_image {
      height: 250px;
  }

  .tihs_coursesall_stats {
      grid-template-columns: repeat(2, 1fr);
  }

  .tihs_coursesall_careers_grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tihs_coursesall {
      padding: 60px 0;
  }

  .tihs_coursesall_title {
      font-size: 30px;
  }

  .tihs_coursesall_accordion_title {
      font-size: 16px;
  }

  .tihs_coursesall_cta {
      padding: 30px 20px;
  }

  .tihs_coursesall_cta_title {
      font-size: 24px;
  }
}

@media (max-width: 576px) {
  .tihs_coursesall {
      padding: 50px 0;
  }

  .tihs_coursesall_title {
      font-size: 26px;
  }

  .tihs_coursesall_subtitle {
      font-size: 14px;
  }

  .tihs_coursesall_stats {
      grid-template-columns: 1fr;
  }

  .tihs_coursesall_careers_grid {
      grid-template-columns: 1fr;
  }

  .tihs_coursesall_card_intro,
  .tihs_coursesall_card_body {
      padding: 25px 20px;
  }
}

/* search program  */
.tihs_searchprogram {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
  overflow: hidden;
}

/* Decorative Elements */
.tihs_searchprogram_decoration {
  position: absolute;
  z-index: 1;
}

.tihs_searchprogram_decoration_1 {
  top: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(0, 100, 0, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 6s ease-in-out infinite;
}

.tihs_searchprogram_decoration_2 {
  bottom: 15%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-20px);
  }
  100% {
      transform: translateY(0);
  }
}

/* Section Content */
.tihs_searchprogram_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.tihs_searchprogram_header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.tihs_searchprogram_subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
}

.tihs_searchprogram_subtitle::before,
.tihs_searchprogram_subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: #FFD700;
}

.tihs_searchprogram_subtitle::before {
  left: -40px;
}

.tihs_searchprogram_subtitle::after {
  right: -40px;
}

.tihs_searchprogram_title {
  font-size: 38px;
  font-weight: 700;
  color: #006400;
  margin-bottom: 20px;
  position: relative;
}

.tihs_searchprogram_description {
  max-width: 700px;
  margin: 0 auto;
  color: #555555;
  line-height: 1.8;
  font-size: 16px;
}

/* Search Tabs */
.tihs_searchprogram_tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  border-radius: 10px;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tihs_searchprogram_tab {
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #555555;
  transition: all 0.3s ease;
  position: relative;
  outline: none;
  flex: 1;
  text-align: center;
}

.tihs_searchprogram_tab:hover {
  color: #006400;
}

.tihs_searchprogram_tab.active {
  background: #006400;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 100, 0, 0.2);
}

/* Search Bar */
.tihs_searchprogram_search {
  position: relative;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tihs_searchprogram_search_input {
  width: 100%;
  padding: 18px 24px;
  padding-left: 60px;
  background: #FFFFFF;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  outline: none;
}

.tihs_searchprogram_search_input::placeholder {
  color: #aaaaaa;
}

.tihs_searchprogram_search_input:focus {
  box-shadow: 0 4px 30px rgba(0, 100, 0, 0.1);
}

.tihs_searchprogram_search_icon {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #006400;
  font-size: 20px;
}

/* Filter Section */
.tihs_searchprogram_filters {
  margin-bottom: 30px;
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tihs_searchprogram_filters_toggle {
  background: #f5f7fa;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  color: #006400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  outline: none;
}

.tihs_searchprogram_filters_toggle:hover {
  background: #e9f0fa;
}

.tihs_searchprogram_filters_toggle_icon {
  transition: transform 0.3s ease;
}

.tihs_searchprogram_filters_toggle.active .tihs_searchprogram_filters_toggle_icon {
  transform: rotate(180deg);
}

.tihs_searchprogram_filters_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.tihs_searchprogram_filters_toggle.active + .tihs_searchprogram_filters_content {
  max-height: 1000px;
}

.tihs_searchprogram_filters_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tihs_searchprogram_filter_group {
  margin-bottom: 20px;
}

.tihs_searchprogram_filter_label {
  font-weight: 600;
  color: #333333;
  margin-bottom: 12px;
  display: block;
}

.tihs_searchprogram_filter_select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #FFFFFF;
  font-size: 14px;
  color: #555555;
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

.tihs_searchprogram_filter_select:focus {
  border-color: #006400;
  box-shadow: 0 0 0 3px rgba(0, 100, 0, 0.1);
}

.tihs_searchprogram_filter_range {
  margin-top: 10px;
}

.tihs_searchprogram_filter_range_values {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666666;
  margin-bottom: 8px;
}

.tihs_searchprogram_filter_range_input {
  width: 100%;
  position: relative;
  height: 6px;
  border-radius: 3px;
  background: #e0e0e0;
  outline: none;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}

.tihs_searchprogram_filter_range_input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #006400;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.tihs_searchprogram_filter_range_input::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  background: #006400;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.tihs_searchprogram_filter_checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.tihs_searchprogram_filter_checkbox_item {
  display: flex;
  align-items: center;
}

.tihs_searchprogram_filter_checkbox {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
  accent-color: #006400;
}

.tihs_searchprogram_filter_checkbox_label {
  font-size: 14px;
  color: #555555;
  cursor: pointer;
}

.tihs_searchprogram_filter_buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  gap: 15px;
}

.tihs_searchprogram_filter_reset {
  padding: 12px 20px;
  background: #f5f7fa;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  color: #555555;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.tihs_searchprogram_filter_reset:hover {
  background: #e9e9e9;
}

.tihs_searchprogram_filter_apply {
  padding: 12px 25px;
  background: #006400;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 100, 0, 0.2);
}

.tihs_searchprogram_filter_apply:hover {
  background: #004d00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 100, 0, 0.3);
}

/* Results */
.tihs_searchprogram_results {
  margin-bottom: 40px;
}

.tihs_searchprogram_results_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.tihs_searchprogram_results_count {
  font-weight: 600;
  color: #333333;
}

.tihs_searchprogram_results_count span {
  color: #006400;
}

.tihs_searchprogram_results_sort {
  display: flex;
  align-items: center;
}

.tihs_searchprogram_results_sort_label {
  margin-right: 10px;
  font-size: 14px;
  color: #666666;
}

.tihs_searchprogram_results_sort_select {
  padding: 8px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #FFFFFF;
  font-size: 14px;
  color: #555555;
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

.tihs_searchprogram_results_sort_select:focus {
  border-color: #006400;
  box-shadow: 0 0 0 3px rgba(0, 100, 0, 0.1);
}

/* Result Cards */
.tihs_searchprogram_results_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.tihs_searchprogram_result_card {
  background: #FFFFFF;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tihs_searchprogram_result_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tihs_searchprogram_result_image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.tihs_searchprogram_result_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tihs_searchprogram_result_card:hover .tihs_searchprogram_result_img {
  transform: scale(1.05);
}

.tihs_searchprogram_result_badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #FFD700;
  color: #252525;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.tihs_searchprogram_result_content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tihs_searchprogram_result_title {
  font-size: 18px;
  font-weight: 700;
  color: #006400;
  margin-bottom: 10px;
  line-height: 1.4;
}

.tihs_searchprogram_result_institute {
  font-size: 14px;
  color: #666666;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.tihs_searchprogram_result_institute_icon {
  color: #FFD700;
  font-size: 14px;
  margin-top: 3px;
}

.tihs_searchprogram_result_details {
  margin-bottom: 15px;
  flex: 1;
}

.tihs_searchprogram_result_detail {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #e0e0e0;
  font-size: 14px;
}

.tihs_searchprogram_result_detail:last-child {
  border-bottom: none;
}

.tihs_searchprogram_result_detail_label {
  color: #666666;
}

.tihs_searchprogram_result_detail_value {
  font-weight: 600;
  color: #333333;
}

.tihs_searchprogram_result_actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.tihs_searchprogram_result_action {
  padding: 10px 15px;
  background: #f5f7fa;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  color: #006400;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.tihs_searchprogram_result_action:hover {
  background: #e9f0fa;
}

.tihs_searchprogram_result_action_primary {
  background: #006400;
  color: #FFFFFF;
}

.tihs_searchprogram_result_action_primary:hover {
  background: #004d00;
}

/* Pagination */
.tihs_searchprogram_pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 5px;
}

.tihs_searchprogram_pagination_item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 8px;
  color: #555555;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.tihs_searchprogram_pagination_item:hover {
  background: #f5f7fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tihs_searchprogram_pagination_item.active {
  background: #006400;
  color: #FFFFFF;
}

/* Animation Classes */
.tihs_fade_up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.tihs_fade_up.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .tihs_searchprogram_results_grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .tihs_searchprogram {
      padding: 60px 0;
  }

  .tihs_searchprogram_title {
      font-size: 34px;
  }

  .tihs_searchprogram_filters_grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tihs_searchprogram {
      padding: 50px 0;
  }

  .tihs_searchprogram_title {
      font-size: 30px;
  }

  .tihs_searchprogram_results_grid {
      grid-template-columns: 1fr;
  }

  .tihs_searchprogram_results_header {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
  }

  .tihs_searchprogram_filter_checkboxes {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .tihs_searchprogram {
      padding: 40px 0;
  }

  .tihs_searchprogram_title {
      font-size: 26px;
  }

  .tihs_searchprogram_filters_grid {
      grid-template-columns: 1fr;
  }

  .tihs_searchprogram_tab {
      padding: 10px 15px;
      font-size: 14px;
  }

  .tihs_searchprogram_search_input {
      padding: 14px 20px;
      padding-left: 50px;
      font-size: 14px;
  }

  .tihs_searchprogram_search_icon {
      left: 20px;
      font-size: 18px;
  }

  .tihs_searchprogram_filter_buttons {
      flex-direction: column;
      gap: 10px;
  }

  .tihs_searchprogram_filter_reset,
  .tihs_searchprogram_filter_apply {
      width: 100%;
  }
}

/* blog area css */
.this_blog {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  position: relative;
}

.this_blog_header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.this_blog_title {
  font-size: 2.8rem;
  color: #006400;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.this_blog_title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #8B0000;
}

.this_blog_description {
  font-size: 1.1rem;
  color: #4A4A4A;
  max-width: 700px;
  margin: 0 auto;
}

.this_blog_categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.this_blog_category {
  background-color: #F5F5F5;
  color: #252525;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.this_blog_category.active {
  background-color: #006400;
  color: #FFFFFF;
}

.this_blog_category:hover:not(.active) {
  border-color: #006400;
  color: #006400;
}

.this_blog_slider_container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.this_blog_slider {
  display: flex;
  gap: 25px;
  animation: slideRightToLeft 35s linear infinite;
  width: max-content;
}

@keyframes slideRightToLeft {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(calc(-300px * 6 - 25px * 6));
  }
}

.this_blog_slider:hover {
  animation-play-state: paused;
}

.this_blog_card {
  width: 300px;
  flex-shrink: 0;
  background-color: #F5F5F5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 450px;
}

.this_blog_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.this_blog_card_img_container {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.this_blog_card_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.this_blog_card:hover .this_blog_card_img {
  transform: scale(1.1);
}

.this_blog_card_tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #8B0000;
  color: #FFFFFF;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
}

.this_blog_card_content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.this_blog_card_date {
  color: #4A4A4A;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.this_blog_card_title {
  font-size: 1.25rem;
  color: #006400;
  margin-bottom: 15px;
  line-height: 1.4;
}

.this_blog_card_excerpt {
  color: #4A4A4A;
  font-size: 0.95rem;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.this_blog_card_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #DDDDDD;
  padding-top: 15px;
  margin-top: auto;
}

.this_blog_card_author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.this_blog_card_author_img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFD700;
}

.this_blog_card_author_name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #252525;
}

.this_blog_card_read_more {
  color: #006400;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.this_blog_card_read_more i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.this_blog_card_read_more:hover {
  color: #8B0000;
}

.this_blog_card_read_more:hover i {
  transform: translateX(3px);
}

/* Decorative elements */
.this_blog_decoration {
  position: absolute;
  z-index: -1;
}

.this_blog_decoration_1 {
  top: 10%;
  left: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #FFD700;
  opacity: 0.07;
}

.this_blog_decoration_2 {
  bottom: 15%;
  right: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #006400;
  opacity: 0.05;
}

/* Slider controls */
.this_blog_slider_controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.this_blog_slider_control {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  color: #252525;
  font-size: 0.9rem;
}

.this_blog_slider_control:hover {
  background-color: #006400;
  color: #FFFFFF;
}

/* View more button */
.this_blog_view_more {
  text-align: center;
  margin-top: 50px;
}

.this_blog_view_more_btn {
  background-color: #006400;
  color: #FFFFFF;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.this_blog_view_more_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #8B0000;
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: 30px;
}

.this_blog_view_more_btn:hover::before {
  width: 100%;
}

/* Responsive styles */
@media (max-width: 768px) {
  .this_blog_title {
      font-size: 2.2rem;
  }
  
  .this_blog_card {
      width: 280px;
  }
  
  @keyframes slideRightToLeft {
      0% {
          transform: translateX(0);
      }
      100% {
          transform: translateX(calc(-280px * 6 - 25px * 6));
      }
  }
  
  .this_blog_categories {
      gap: 10px;
  }
  
  .this_blog_category {
      padding: 6px 15px;
      font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .this_blog {
      margin: 40px auto;
  }
  
  .this_blog_header {
      margin-bottom: 30px;
  }
  
  .this_blog_title {
      font-size: 1.8rem;
  }
  
  .this_blog_card {
      width: 260px;
      height: 420px;
  }
  
  @keyframes slideRightToLeft {
      0% {
          transform: translateX(0);
      }
      100% {
          transform: translateX(calc(-260px * 6 - 25px * 6));
      }
  }
  
  .this_blog_category {
      padding: 5px 12px;
      font-size: 0.8rem;
  }
  
  .this_blog_card_title {
      font-size: 1.1rem;
  }
  
  .this_blog_card_img_container {
      height: 160px;
  }
}

/* blog all details  */
.this_blogall {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  position: relative;
}

.this_blogall_header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.this_blogall_title {
  font-size: 2.5rem;
  color: #006400;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.this_blogall_title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #006400, #FFD700, #8B0000);
}

.this_blogall_description {
  font-size: 1.1rem;
  color: #4A4A4A;
  max-width: 700px;
  margin: 0 auto;
}

.this_blogall_filters {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  justify-content: center;
}

.this_blogall_filter {
  background-color: #F5F5F5;
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  color: #252525;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.this_blogall_filter:hover {
  background-color: #006400;
  color: #FFFFFF;
}

.this_blogall_filter.active {
  background-color: #006400;
  color: #FFFFFF;
}

.this_blogall_search {
  display: flex;
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
}

.this_blogall_search_input {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border: 2px solid #DDDDDD;
  border-radius: 30px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.this_blogall_search_input:focus {
  border-color: #006400;
}

.this_blogall_search_btn {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: #006400;
  color: #FFFFFF;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.this_blogall_search_btn:hover {
  background-color: #8B0000;
}

.this_blogall_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.this_blogall_card {
  background-color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #EEEEEE;
}

.this_blogall_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.this_blogall_card_img_container {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.this_blogall_card_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.this_blogall_card:hover .this_blogall_card_img {
  transform: scale(1.1);
}

.this_blogall_card_category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #8B0000;
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.this_blogall_card_date {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #252525;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.this_blogall_card_date i {
  color: #8B0000;
}

.this_blogall_card_content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.this_blogall_card_title {
  font-size: 1.4rem;
  color: #006400;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.this_blogall_card:hover .this_blogall_card_title {
  color: #8B0000;
}

.this_blogall_card_excerpt {
  color: #4A4A4A;
  margin-bottom: 20px;
  font-size: 0.95rem;
  flex-grow: 1;
}

.this_blogall_card_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.this_blogall_card_author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.this_blogall_card_author_img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFD700;
}

.this_blogall_card_author_name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #252525;
}

.this_blogall_card_read_more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #006400;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.this_blogall_card_read_more::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #006400;
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.this_blogall_card_read_more:hover {
  color: #8B0000;
}

.this_blogall_card_read_more:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  background-color: #8B0000;
}

.this_blogall_stats {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #4A4A4A;
}

.this_blogall_stat {
  display: flex;
  align-items: center;
  gap: 5px;
}

.this_blogall_stat i {
  color: #006400;
}

.this_blogall_pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  gap: 5px;
}

.this_blogall_page_link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F5;
  color: #252525;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.this_blogall_page_link:hover {
  background-color: #006400;
  color: #FFFFFF;
}

.this_blogall_page_link.active {
  background-color: #006400;
  color: #FFFFFF;
}

.this_blogall_page_link.prev,
.this_blogall_page_link.next {
  width: auto;
  padding: 0 15px;
}

.this_blogall_no_results {
  text-align: center;
  padding: 40px;
  background-color: #F5F5F5;
  border-radius: 10px;
  margin-top: 20px;
}

.this_blogall_no_results h3 {
  color: #8B0000;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.this_blogall_no_results p {
  color: #4A4A4A;
  margin-bottom: 20px;
}

.this_blogall_no_results_btn {
  display: inline-block;
  background-color: #006400;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.this_blogall_no_results_btn:hover {
  background-color: #8B0000;
}

.this_blogall_featured {
  margin-bottom: 50px;
  background-color: #F5F5F5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  display: flex;
  position: relative;
}

.this_blogall_featured_tag {
  position: absolute;
  top: 20px;
  left: -32px;
  background-color: #FFD700;
  color: #252525;
  padding: 8px 30px;
  transform: rotate(-45deg);
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  z-index: 1;
}

.this_blogall_featured_img {
  width: 50%;
  height: 400px;
  object-fit: cover;
}

.this_blogall_featured_content {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.this_blogall_featured_category {
  display: inline-block;
  background-color: #8B0000;
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.this_blogall_featured_title {
  font-size: 2rem;
  color: #006400;
  margin-bottom: 20px;
  line-height: 1.3;
}

.this_blogall_featured_excerpt {
  color: #4A4A4A;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.this_blogall_featured_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.this_blogall_featured_author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.this_blogall_featured_author_img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFD700;
}

.this_blogall_featured_meta {
  display: flex;
  flex-direction: column;
}

.this_blogall_featured_author_name {
  font-weight: 600;
  color: #252525;
}

.this_blogall_featured_date {
  font-size: 0.85rem;
  color: #4A4A4A;
}

.this_blogall_featured_read_more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #006400;
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.this_blogall_featured_read_more:hover {
  background-color: #8B0000;
}

@media (max-width: 992px) {
  .this_blogall_featured {
      flex-direction: column;
  }
  
  .this_blogall_featured_img,
  .this_blogall_featured_content {
      width: 100%;
  }
  
  .this_blogall_featured_img {
      height: 300px;
  }
  
  .this_blogall_featured_content {
      padding: 30px;
  }
  
  .this_blogall_featured_title {
      font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .this_blogall_grid {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .this_blogall_title {
      font-size: 2rem;
  }
  
  .this_blogall_featured_title {
      font-size: 1.6rem;
  }
  
  .this_blogall_featured_footer {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
  }
}

@media (max-width: 576px) {
  .this_blogall {
      margin: 40px auto;
  }
  
  .this_blogall_header {
      margin-bottom: 30px;
  }
  
  .this_blogall_grid {
      grid-template-columns: 1fr;
  }
  
  .this_blogall_title {
      font-size: 1.8rem;
  }
  
  .this_blogall_filters {
      justify-content: center;
  }
  
  .this_blogall_filter {
      padding: 6px 15px;
      font-size: 0.85rem;
  }
  
  .this_blogall_featured_content {
      padding: 20px;
  }
  
  .this_blogall_featured_title {
      font-size: 1.4rem;
      margin-bottom: 15px;
  }
  
  .this_blogall_featured_excerpt {
      margin-bottom: 20px;
      font-size: 1rem;
  }
  
  .this_blogall_pagination {
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .this_blogall_card_footer {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
  }
}

/* blog details css */
.this_blog_details {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  position: relative;
}

.this_blog_details_container {
  display: flex;
  gap: 40px;
}

.this_blog_details_main {
  flex: 1;
}

.this_blog_details_sidebar {
  width: 320px;
  flex-shrink: 0;
}

.this_blog_details_header {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid #EEEEEE;
}

.this_blog_details_breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #4A4A4A;
}

.this_blog_details_breadcrumb a {
  color: #006400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.this_blog_details_breadcrumb a:hover {
  color: #8B0000;
}

.this_blog_details_breadcrumb i {
  font-size: 0.7rem;
  color: #DDDDDD;
}

.this_blog_details_category {
  display: inline-block;
  background-color: #8B0000;
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.this_blog_details_title {
  font-size: 2.5rem;
  color: #006400;
  margin-bottom: 20px;
  line-height: 1.3;
}

.this_blog_details_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.this_blog_details_author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.this_blog_details_author_img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFD700;
}

.this_blog_details_author_info {
  display: flex;
  flex-direction: column;
}

.this_blog_details_author_name {
  font-weight: 600;
  color: #252525;
  font-size: 1.1rem;
}

.this_blog_details_date {
  color: #4A4A4A;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.this_blog_details_stats {
  display: flex;
  gap: 15px;
  color: #4A4A4A;
  font-size: 0.9rem;
}

.this_blog_details_stat {
  display: flex;
  align-items: center;
  gap: 5px;
}

.this_blog_details_stat i {
  color: #006400;
}

.this_blog_details_featured_img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.this_blog_details_content {
  font-size: 1.05rem;
  color: #252525;
  margin-bottom: 40px;
}

.this_blog_details_content p {
  margin-bottom: 20px;
}

.this_blog_details_content h2 {
  color: #006400;
  font-size: 1.8rem;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #EEEEEE;
}

.this_blog_details_content h3 {
  color: #006400;
  font-size: 1.5rem;
  margin: 30px 0 15px;
}

.this_blog_details_content ul, 
.this_blog_details_content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.this_blog_details_content li {
  margin-bottom: 10px;
}

.this_blog_details_content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
}

.this_blog_details_content blockquote {
  border-left: 4px solid #FFD700;
  padding: 20px;
  background-color: #F5F5F5;
  margin: 30px 0;
  font-style: italic;
  color: #4A4A4A;
}

.this_blog_details_content blockquote p:last-child {
  margin-bottom: 0;
}

.this_blog_details_content a {
  color: #006400;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.this_blog_details_content a:hover {
  color: #8B0000;
}

.this_blog_details_content .this_blog_details_info_box {
  background-color: #F5F5F5;
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
  border-left: 4px solid #006400;
}

.this_blog_details_content .this_blog_details_info_box h4 {
  color: #006400;
  margin-bottom: 10px;
}

.this_blog_details_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.this_blog_details_tag {
  background-color: #F5F5F5;
  color: #4A4A4A;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.this_blog_details_tag:hover {
  background-color: #006400;
  color: #FFFFFF;
}

.this_blog_details_share {
  margin: 40px 0;
  padding: 25px;
  background-color: #F5F5F5;
  border-radius: 10px;
}

.this_blog_details_share_title {
  font-size: 1.2rem;
  color: #252525;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.this_blog_details_share_title i {
  color: #006400;
}

.this_blog_details_share_buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.this_blog_details_share_button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.this_blog_details_share_button.facebook {
  background-color: #3b5998;
}

.this_blog_details_share_button.twitter {
  background-color: #1da1f2;
}

.this_blog_details_share_button.linkedin {
  background-color: #0077b5;
}

.this_blog_details_share_button.pinterest {
  background-color: #bd081c;
}

.this_blog_details_share_button.whatsapp {
  background-color: #25d366;
}

.this_blog_details_share_button.email {
  background-color: #333333;
}

.this_blog_details_share_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.this_blog_details_share_link {
  display: flex;
  margin-top: 15px;
  padding: 10px;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
}

.this_blog_details_share_link input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.9rem;
  color: #4A4A4A;
}

.this_blog_details_share_link button {
  background-color: #006400;
  color: #FFFFFF;
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.this_blog_details_share_link button:hover {
  background-color: #8B0000;
}

.this_blog_details_author_bio {
  margin: 40px 0;
  padding: 30px;
  background-color: #F5F5F5;
  border-radius: 10px;
  display: flex;
  gap: 20px;
}

.this_blog_details_author_bio_img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FFD700;
}

.this_blog_details_author_bio_content {
  flex: 1;
}

.this_blog_details_author_bio_name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #006400;
  margin-bottom: 10px;
}

.this_blog_details_author_bio_text {
  color: #4A4A4A;
  margin-bottom: 15px;
}

.this_blog_details_author_bio_social {
  display: flex;
  gap: 10px;
}

.this_blog_details_author_bio_social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #006400;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.this_blog_details_author_bio_social a:hover {
  background-color: #8B0000;
  transform: translateY(-3px);
}

.this_blog_details_comments {
  margin: 40px 0;
}

.this_blog_details_comments_title {
  font-size: 1.5rem;
  color: #006400;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #EEEEEE;
}

.this_blog_details_comment {
  padding: 20px;
  border-bottom: 1px solid #EEEEEE;
  display: flex;
  gap: 15px;
}

.this_blog_details_comment_img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.this_blog_details_comment_content {
  flex: 1;
}

.this_blog_details_comment_header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.this_blog_details_comment_name {
  font-weight: 600;
  color: #252525;
}

.this_blog_details_comment_date {
  font-size: 0.85rem;
  color: #4A4A4A;
}

.this_blog_details_comment_text {
  margin-bottom: 10px;
  color: #4A4A4A;
}

.this_blog_details_comment_reply {
  color: #006400;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.this_blog_details_comment_reply:hover {
  color: #8B0000;
}

.this_blog_details_comment_replies {
  margin-left: 75px;
}

.this_blog_details_comment_form {
  margin-top: 40px;
}

.this_blog_details_comment_form_title {
  font-size: 1.5rem;
  color: #006400;
  margin-bottom: 20px;
}

.this_blog_details_form_group {
  margin-bottom: 20px;
}

.this_blog_details_form_label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #252525;
}

.this_blog_details_form_input,
.this_blog_details_form_textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.this_blog_details_form_input:focus,
.this_blog_details_form_textarea:focus {
  border-color: #006400;
}

.this_blog_details_form_textarea {
  height: 150px;
  resize: vertical;
}

.this_blog_details_form_checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.this_blog_details_form_checkbox input {
  width: 18px;
  height: 18px;
}

.this_blog_details_form_checkbox label {
  color: #4A4A4A;
  font-size: 0.95rem;
}

.this_blog_details_form_submit {
  background-color: #006400;
  color: #FFFFFF;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.this_blog_details_form_submit:hover {
  background-color: #8B0000;
}

.this_blog_details_related {
  margin-top: 60px;
}

.this_blog_details_related_title {
  font-size: 1.8rem;
  color: #006400;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #EEEEEE;
}

.this_blog_details_related_posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.this_blog_details_related_post {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.this_blog_details_related_post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.this_blog_details_related_post_img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.this_blog_details_related_post_content {
  padding: 15px;
}

.this_blog_details_related_post_title {
  font-size: 1.1rem;
  color: #006400;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.this_blog_details_related_post:hover .this_blog_details_related_post_title {
  color: #8B0000;
}

.this_blog_details_related_post_date {
  font-size: 0.85rem;
  color: #4A4A4A;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Sidebar Styles */
.this_blog_details_sidebar_widget {
  margin-bottom: 30px;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.this_blog_details_sidebar_title {
  font-size: 1.3rem;
  color: #006400;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #EEEEEE;
  position: relative;
}

.this_blog_details_sidebar_title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #006400;
}

.this_blog_details_search {
  position: relative;
}

.this_blog_details_search_input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.this_blog_details_search_input:focus {
  border-color: #006400;
}

.this_blog_details_search_btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #4A4A4A;
  cursor: pointer;
  transition: color 0.3s ease;
}

.this_blog_details_search_btn:hover {
  color: #006400;
}

.this_blog_details_categories {
  list-style: none;
}

.this_blog_details_category_item {
  padding: 10px 0;
  border-bottom: 1px solid #EEEEEE;
}

.this_blog_details_category_item:last-child {
  border-bottom: none;
}

.this_blog_details_category_link {
  color: #4A4A4A;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  transition: color 0.3s ease;
}

.this_blog_details_category_link:hover {
  color: #006400;
}

.this_blog_details_category_count {
  background-color: #F5F5F5;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
  color: #4A4A4A;
  transition: all 0.3s ease;
}

.this_blog_details_category_link:hover .this_blog_details_category_count {
  background-color: #006400;
  color: #FFFFFF;
}

.this_blog_details_popular_posts {
  list-style: none;
}

.this_blog_details_popular_post {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #EEEEEE;
}

.this_blog_details_popular_post:last-child {
  border-bottom: none;
}

.this_blog_details_popular_post_img {
  width: 70px;
  height: 70px;
  border-radius: 5px;
  object-fit: cover;
}

.this_blog_details_popular_post_content {
  flex: 1;
}

.this_blog_details_popular_post_title {
  font-size: 1rem;
  color: #252525;
  margin-bottom: 5px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.this_blog_details_popular_post_title:hover {
  color: #006400;
}

.this_blog_details_popular_post_date {
  font-size: 0.8rem;
  color: #4A4A4A;
  display: flex;
  align-items: center;
  gap: 5px;
}

.this_blog_details_tags_cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.this_blog_details_tag_cloud_item {
  background-color: #F5F5F5;
  color: #4A4A4A;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.this_blog_details_tag_cloud_item:hover {
  background-color: #006400;
  color: #FFFFFF;
}

.this_blog_details_newsletter {
  background-color: #F5F5F5;
  padding: 25px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.this_blog_details_newsletter::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background-color: #FFD700;
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.this_blog_details_newsletter_title {
  font-size: 1.3rem;
  color: #006400;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.this_blog_details_newsletter_text {
  color: #4A4A4A;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

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

.this_blog_details_newsletter_input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  font-size: 0.95rem;
  margin-bottom: 10px;
  transition: border-color 0.3s ease;
  outline: none;
}

.this_blog_details_newsletter_input:focus {
  border-color: #006400;
}

.this_blog_details_newsletter_submit {
  width: 100%;
  background-color: #006400;
  color: #FFFFFF;
  border: none;
  padding: 12px 15px;
  border-radius: 5px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.this_blog_details_newsletter_submit:hover {
  background-color: #8B0000;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .this_blog_details_container {
      flex-direction: column;
  }
  
  .this_blog_details_sidebar {
      width: 100%;
  }
  
  .this_blog_details_related_posts {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .this_blog_details {
      margin: 40px auto;
  }
  
  .this_blog_details_title {
      font-size: 2rem;
  }
  
  .this_blog_details_meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
  }
  
  .this_blog_details_author_bio {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  
  .this_blog_details_author_bio_social {
      justify-content: center;
  }
  
  .this_blog_details_related_posts {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .this_blog_details {
      padding: 0 15px;
  }
  
  .this_blog_details_title {
      font-size: 1.8rem;
  }
  
  .this_blog_details_comment {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  
  .this_blog_details_comment_header {
      flex-direction: column;
      gap: 5px;
  }
  
  .this_blog_details_comment_replies {
      margin-left: 0;
  }
  
  .this_blog_details_share_buttons {
      justify-content: center;
  }
}

/* apportionment  */
.this_apportionment {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: #FAFAFA;
}

/* Background Elements */
.this_apportionment_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.this_apportionment_shape {
  position: absolute;
  border-radius: 50%;
}

.this_apportionment_shape_1 {
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(0, 100, 0, 0.1), rgba(0, 100, 0, 0.05));
}

.this_apportionment_shape_2 {
  bottom: -200px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.this_apportionment_pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: 
      linear-gradient(30deg, #252525 12%, transparent 12.5%, transparent 87%, #252525 87.5%, #252525),
      linear-gradient(150deg, #252525 12%, transparent 12.5%, transparent 87%, #252525 87.5%, #252525),
      linear-gradient(30deg, #252525 12%, transparent 12.5%, transparent 87%, #252525 87.5%, #252525),
      linear-gradient(150deg, #252525 12%, transparent 12.5%, transparent 87%, #252525 87.5%, #252525),
      linear-gradient(60deg, #252525 25%, transparent 25.5%, transparent 75%, #252525 75%, #252525),
      linear-gradient(60deg, #252525 25%, transparent 25.5%, transparent 75%, #252525 75%, #252525);
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
}

/* Container Styles */
.this_apportionment_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.this_apportionment_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Left Column Styles */
.this_apportionment_info {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  background-color: #FFFFFF;
}

.this_apportionment_image_container {
  position: relative;
  margin-bottom: 40px;
}

.this_apportionment_image_wrapper {
  position: relative;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.this_apportionment_image {
  width: 100%;
  height: 100%;
  background-image: url('/api/placeholder/600/400');
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.this_apportionment_image_wrapper:hover .this_apportionment_image {
  transform: scale(1.1);
}

.this_apportionment_badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #006400;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0, 100, 0, 0.3);
}

.this_apportionment_badge_icon {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.this_apportionment_badge_text {
  display: flex;
  flex-direction: column;
}

.this_apportionment_badge_text span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.this_apportionment_badge_text strong {
  font-size: 1rem;
  font-weight: 700;
}

/* Features Section */
.this_apportionment_features {
  margin-bottom: 40px;
}

.this_apportionment_features_title {
  font-size: 1.5rem;
  color: #252525;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.this_apportionment_features_title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #006400, #FFD700);
  border-radius: 3px;
}

.this_apportionment_feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

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

.this_apportionment_feature_icon {
  min-width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #006400, #004D00);
  color: #FFFFFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0, 100, 0, 0.2);
}

.this_apportionment_feature_content {
  flex: 1;
}

.this_apportionment_feature_title {
  font-size: 1.1rem;
  color: #252525;
  margin-bottom: 5px;
}

.this_apportionment_feature_text {
  color: #4A4A4A;
  font-size: 0.95rem;
}

/* Testimonial Section */
.this_apportionment_testimonial {
  background-color: #F5F5F5;
  border-radius: 15px;
  padding: 25px;
  position: relative;
  border-left: 4px solid #006400;
}

.this_apportionment_testimonial_quote {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #006400;
  font-size: 24px;
  opacity: 0.3;
}

.this_apportionment_testimonial_text {
  margin-bottom: 20px;
  padding-left: 30px;
  font-style: italic;
  color: #4A4A4A;
}

.this_apportionment_testimonial_author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.this_apportionment_testimonial_avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-image: url('/api/placeholder/100/100');
  background-size: cover;
  background-position: center;
  border: 3px solid #FFFFFF;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.this_apportionment_testimonial_info {
  flex: 1;
}

.this_apportionment_testimonial_name {
  font-size: 1rem;
  font-weight: 600;
  color: #252525;
  margin-bottom: 3px;
}

.this_apportionment_testimonial_detail {
  font-size: 0.85rem;
  color: #4A4A4A;
}

/* Form Container Styles */
.this_apportionment_form_container {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  background: linear-gradient(135deg, #006400, #003300);
  color: #FFFFFF;
  border-radius: 0 20px 20px 0;
}

.this_apportionment_form_header {
  margin-bottom: 30px;
  text-align: center;
}

.this_apportionment_form_title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.this_apportionment_highlight {
  color: #FFD700;
  position: relative;
  display: inline-block;
}

.this_apportionment_highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(255, 215, 0, 0.3);
  border-radius: 4px;
  z-index: -1;
}

.this_apportionment_form_subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* Form Styles */
.this_apportionment_form {
  margin-bottom: 20px;
}

.this_apportionment_form_group {
  margin-bottom: 20px;
}

.this_apportionment_form_row {
  display: flex;
  gap: 15px;
}

.this_apportionment_form_row .this_apportionment_form_group {
  flex: 1;
}

.this_apportionment_form_label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.this_apportionment_form_input_group {
  position: relative;
}

.this_apportionment_form_input_icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #006400;
  z-index: 1;
}

.this_apportionment_form_input_icon_textarea {
  top: 18px;
  transform: none;
}

.this_apportionment_form_input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  background-color: #FFFFFF;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: #252525;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.this_apportionment_form_input:focus {
  border-color: #FFD700;
  outline: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.this_apportionment_form_textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 12px;
}

/* Toggle Switch */
.this_apportionment_form_toggle_group {
  margin-top: 30px;
}

.this_apportionment_form_toggle {
  display: inline-flex;
}

.this_apportionment_form_toggle_input {
  display: none;
}

.this_apportionment_form_toggle_label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.this_apportionment_form_toggle_switch {
  position: relative;
  width: 44px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.this_apportionment_form_toggle_switch::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.this_apportionment_form_toggle_input:checked + .this_apportionment_form_toggle_label .this_apportionment_form_toggle_switch {
  background-color: #FFD700;
}

.this_apportionment_form_toggle_input:checked + .this_apportionment_form_toggle_label .this_apportionment_form_toggle_switch::before {
  transform: translateX(20px);
}

.this_apportionment_form_toggle_text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* Submit Button */
.this_apportionment_form_submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background-color: #8B0000;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
  margin-top: 30px;
}

.this_apportionment_form_submit:hover {
  background-color: #660000;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(139, 0, 0, 0.4);
}

/* Form Note */
.this_apportionment_form_note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  text-align: center;
}

.this_apportionment_form_link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.this_apportionment_form_link:hover {
  color: #FFD700;
}

/* Contact Info */
.this_apportionment_form_contact {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.this_apportionment_form_contact_link {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.this_apportionment_form_contact_link:hover {
  color: #FFD700;
}_form_textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 12px;
}

/* Toggle Switch */
.this_apportionment_form_toggle_group {
  margin-top: 30px;
}

.this_apportionment_form_toggle {
  display: inline-flex;
}

.this_apportionment_form_toggle_input {
  display: none;
}

.this_apportionment_form_toggle_label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.this_apportionment_form_toggle_switch {
  position: relative;
  width: 44px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.this_apportionment_form_toggle_switch::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.this_apportionment_form_toggle_input:checked + .this_apportionment_form_toggle_label .this_apportionment_form_toggle_switch {
  background-color: #FFA500;
}

.this_apportionment_form_toggle_input:checked + .this_apportionment_form_toggle_label .this_apportionment_form_toggle_switch::before {
  transform: translateX(20px);
}

.this_apportionment_form_toggle_text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* Submit Button */
.this_apportionment_form_submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background-color: #FFA500;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);
  margin-top: 30px;
}

.this_apportionment_form_submit:hover {
  background-color: #FF8C00;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(255, 165, 0, 0.4);
}

/* Form Note */
.this_apportionment_form_note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  text-align: center;
}

.this_apportionment_form_link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.this_apportionment_form_link:hover {
  color: #FFA500;
}

/* Contact Info */
.this_apportionment_form_contact {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.this_apportionment_form_contact_link {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.this_apportionment_form_contact_link:hover {
  color: #FFA500;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .this_apportionment_wrapper {
      flex-direction: column;
  }
  
  .this_apportionment_info, 
  .this_apportionment_form_container {
      width: 100%;
  }
  
  .this_apportionment_form_container {
      border-radius: 0 0 20px 20px;
  }
}

@media (max-width: 767px) {
  .this_apportionment {
      padding: 60px 0;
  }
  
  .this_apportionment_info, 
  .this_apportionment_form_container {
      padding: 30px;
  }
  
  .this_apportionment_image_wrapper {
      height: 250px;
  }
  
  .this_apportionment_form_row {
      flex-direction: column;
      gap: 20px;
  }
  
  .this_apportionment_badge {
      right: 50%;
      transform: translateX(50%);
  }
}

@media (max-width: 480px) {
  .this_apportionment_info, 
  .this_apportionment_form_container {
      padding: 25px 20px;
  }
  
  .this_apportionment_image_wrapper {
      height: 200px;
  }
  
  .this_apportionment_form_title {
      font-size: 1.8rem;
  }
  
  .this_apportionment_features_title,
  .this_apportionment_testimonial_text {
      font-size: 1rem;
  }
  
  .this_apportionment_feature {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
  }
}

 /* whats app chat  */
.contact-popup {
    position: fixed;
    bottom: 80px;
    right: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 9999;
}

.contact-popup a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-popup a:hover {
    transform: scale(1.1);
}

.contact-popup .whatsapp-btn {
    background-color: #25D366;
}

.contact-popup .call-btn {
    background-color: #2485F7;
}

.contact-popup span {
    display: none;
    margin-right: 10px;
    font-size: 14px;
}

.contact-popup a:hover span {
    display: inline-block;
}


