/* CSS Index
============================
1. Variable and Theme default css
2. Comon CSS
3. Helping Class 
4. Sec Content and Sec Title CSS
5. Thm Btn CSS
6. breadcumb css
7. Hero section CSS
8. About section CSS
9. Service Section CSS
10. Newsletter Section CSS
11. Project Section CSS
12. Business Section CSS
13. company quick info Section CSS
14. pricing Section CSS
15. Brand Section CSS
16. Testimonial Section CSS
17. Team Section CSS
18. Faq Section CSS
19. Blog Section CSS
20. Footer Section CSS
21. Service Details page CSS
22. Team Details page CSS
23. 404 page CSS
24. Contact page CSS
25. Home Four page CSS
26. Portal Navigation CSS
27. Portal Content CSS
28. Portal Sections CSS
29. Portal Support Section CSS
30. Portal Projects Section CSS
31. Portal Documents Section CSS
32. Portal Billing Section CSS
33. Portal Reports Section CSS
34. Portal Settings Section CSS
35. Portal Notifications Section CSS
36. Portal Knowledge Base Section CSS
37. Ticket Details Section CSS
38. Tab Content CSS
39. Portal Support Center CSS
40. Portal Projects Management CSS
41. Portal Project Details CSS
42. Portal Documents Center CSS
43. Portal Billing & Invoices CSS
44. Portal Reports & Analytics CSS
45. Portal Settings CSS
46. Portal Notifications CSS
47. Portal Knowledge Base CSS
48. Portal Navigation Sidebar CSS
49. Portal Navigation Sidebar Mobile Toggle CSS
50. Portal Dashboard CSS
51. Portal Dashboard System Status & Performance Metrics CSS
52. Portal Dashboard Project Task Management & Milestones CSS
53. Portal Dashboard Project Budget Overview & Risk Management CSS
54. Portal Dashboard Support Ticket Statistics & Filtering CSS
55. Portal Dashboard Document Search & Category Navigation CSS
56. Portal Dashboard Billing Statistics & Payment Methods CSS
57. Portal Dashboard Reports with Charts & Analytics CSS
58. Portal Dashboard Account Settings & Profile Management CSS
59. Portal Dashboard Notification Center with Filtering CSS
60. Portal Dashboard Knowledge Base with Search & Categories CSS



============================
*/
/*=============================
	1. Google Fonts
===============================*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&amp;display=swap");
/*** 
====================================================================
	Css Files
====================================================================
***/
/* Module Css */
@import url("module-css/header.css");
/*=============================
	1. Variable CSS
===============================*/
:root {
  --thm-body-font: "Outfit", sans-serif;
  --thm-body-font-size: 18px;
  --thm-body-font-weight: 400;
  --thm-body-font-color: #383838;
  --thm-heading-font: "Outfit", sans-serif;
  --thm-heading-font-color: #101010;
  --thm-heading-font-weight: 700;
  --thm-primary: #164343;
  --thm-secondary: #16a571;
  --thm-body-background: #ffffff;
  --thm-bg-white: #ffffff;
  --thm-bg-ling-green: #e3f9f5;
  --thm-white: #ffffff;
  --thm-black: #101010;
  --thm-green: #164343;
  --thm-teal: #16a571;
}

body {
  font-family: var(--thm-body-font);
  font-weight: var(--thm-body-font-weight);
  font-size: var(--thm-body-font-size);
  line-height: 30px;
  color: var(--thm-body-font-color);
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin-bottom: 0;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

img,
.img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
button {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

a:focus,
.btn:focus,
button:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
  color: var(--thm-secondary);
  text-decoration: none;
}

a,
button {
  color: var(--thm-secondary);
  outline: medium none;
  text-decoration: none;
}

.btn:focus,
button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--thm-heading-font);
  color: var(--thm-heading-font-color);
  margin-top: 0px;
  margin-bottom: 0;
  font-style: normal;
  line-height: 1.2em;
  font-weight: var(--thm-heading-font-weight);
  text-transform: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.12rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

/*=============================
	2. Comon CSS
===============================*/
.bg-green {
  background-color: var(--thm-green);
}

.bg-light-greem {
  background-color: var(--thm-bg-ling-green);
}

.hero-ptb {
  padding: 270px 0 130px;
}

.sec-ptb {
  padding: 140px 0;
}

.sec-pt {
  padding-top: 140px;
}

.sec-pb {
  padding-bottom: 140px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-100 {
  margin-right: 100px;
}

.c-black {
  color: var(--thm-black) !important;
}

/*=============================
	3. Helping Class CSS
===============================*/
.text-white {
  color: var(--thm-white);
}

.text-teal {
  color: var(--thm-teal);
}

.br-style1 {
  position: relative;
  border-radius: 0px 180px 0px 200px;
}
.br-style1::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 0px 200px;
  top: -30px;
  left: 30px;
}

.br-style2 {
  border-radius: 10px !important;
}
.br-style2::before {
  border: 2px solid rgba(22, 67, 67, 0.12);
  border-radius: 10px !important;
}

/*=============================
    4. Sec Content CSS
===============================*/
.sec-content p {
  margin-bottom: 30px;
}
.sec-content ul.sec-list-item {
  margin-bottom: 30px;
}
.sec-content ul.sec-list-item li {
  position: relative;
  margin-bottom: 16px;
  font-weight: 500;
  color: var(--thm-black);
}
.sec-content ul.sec-list-item li i {
  color: var(--thm-teal);
  margin-right: 8px;
}
.sec-content ul.sec-list-item li:last-child {
  margin-bottom: 0;
}
.sec-content .sec-btn {
  display: inline-block;
  margin-top: 10px;
}

/*=============================
	4. Sec Title CSS
===============================*/
.sec-sub-title {
  position: relative;
  display: block;
  padding-bottom: 14px;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  color: var(--thm-teal);
}

.sec-title {
  position: relative;
  display: block;
  padding-bottom: 18px;
  font-size: 50px;
  line-height: 68px;
}

/*=============================
	5. Thm Btn CSS
===============================*/
.thm-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  padding: 12px 30px;
  background-color: transparent;
  border: 2px solid var(--thm-teal);
  color: var(--thm-white);
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--thm-body-font);
  border-radius: 10px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.thm-btn::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  display: block;
  position: absolute;
  background: var(--thm-teal);
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.thm-btn:hover:before,
.thm-btn:hover:after {
  width: 0;
}

.thm-btn .txt {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.thm-btn:hover {
  color: var(--thm-teal);
}

.thm-btn i {
  position: relative;
  top: 0px;
  display: inline-block;
  margin-left: 7px;
  font-size: 16px;
  z-index: 1;
}

a.read-more {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
}
a.read-more i {
  font-size: 20px;
  display: inline-block;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
a.read-more:hover i {
  margin-left: 5px;
}

.thm-btn-style2 {
  color: var(--thm-white);
  border: 2px solid var(--thm-green);
}
.thm-btn-style2::before {
  background: var(--thm-green);
}
.thm-btn-style2:hover {
  color: var(--thm-green);
}

/*== Owl Nav Style1 Css ======*/
.owl-nav {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  height: 50px;
  width: 50px;
  border-radius: 10px;
  font-size: 32px;
  color: var(--thm-teal);
  background: var(--thm-bg-ling-green);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  color: var(--thm-white);
  background: var(--thm-teal);
}
.owl-nav .owl-prev {
  margin-right: 24px;
}

.list-wrap {
  margin: 0px;
  padding: 0px;
}

.list-wrap li {
  list-style: none;
}

hr {
  border-bottom: 1px solid var(--thm-primary-color);
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

label {
  color: var(--thm-body-font-color);
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

*::-moz-placeholder {
  color: var(--thm-body-font-color);
  font-size: var(--thm-body-font-size);
  opacity: 1;
}

*::-webkit-input-placeholder {
  color: var(--thm-body-font-color);
  font-size: var(--thm-body-font-size);
  opacity: 1;
}

*:-ms-input-placeholder {
  color: var(--thm-body-font-color);
  font-size: var(--thm-body-font-size);
  opacity: 1;
}

*::-ms-input-placeholder {
  color: var(--thm-body-font-color);
  font-size: var(--thm-body-font-size);
  opacity: 1;
}

*::placeholder {
  color: var(--thm-body-font-color);
  font-size: var(--thm-body-font-size);
  opacity: 1;
}

.theme-overlay {
  position: relative;
}

.theme-overlay::before {
  background: var(--thm-primary-color) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
}

.separator {
  border-top: 1px solid var(--thm-primary-color);
}

.auto-container {
  position: static;
  max-width: 1320px;
  width: 100%;
  padding: 0px 12px;
  margin: 0 auto;
}

/* Bootstrap 5 */
.container {
  max-width: 1320px;
  padding-left: 12px;
  padding-right: 12px;
}

.row {
  --bs-gutter-x: 24px;
}

.row.g-0 {
  --bs-gutter-x: 0;
}

.fix {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

/*=============================
	scrollUp css
===============================*/
/* scrollUp */
.scroll-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  bottom: -10%;
  right: 50px;
  font-size: var(--thm-body-font-size);
  border-radius: 6px;
  z-index: 99;
  color: var(--thm-white);
  text-align: center;
  cursor: pointer;
  background: var(--thm-primary);
  -webkit-transition: 1s ease;
  transition: 1s ease;
  border: none;
}

.scroll-top.open {
  bottom: 30px;
}

.scroll-top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top:hover {
  background: var(--thm-secondary);
}

/*=============================
	Legacy Accordion CSS - Updated for Modern Design
===============================*/
.accordion-container .accordion-title {
  position: relative;
  margin: 0;
  padding: 20px 25px;
  background: var(--thm-white);
  font-size: 18px;
  font-weight: 600;
  color: var(--thm-black);
  cursor: pointer;
  border-radius: 10px;
  border: 2px solid rgba(22, 165, 113, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0px 4px 15px rgba(22, 165, 113, 0.08);
}

.accordion-container .accordion-title:hover {
  border-color: var(--thm-teal);
  transform: translateY(-2px);
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.15);
}

.accordion-container .accordion-title:active,
.accordion-title.open {
  background: var(--thm-teal);
  color: var(--thm-white);
  border-color: var(--thm-teal);
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.25);
}

.accordion-container .accordion-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 18px;
  height: 2px;
  background: var(--thm-teal);
  transition: all 0.3s ease;
  transform: translateY(-50%);
}

.accordion-container .accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 18px;
  height: 2px;
  background: var(--thm-teal);
  transition: all 0.3s ease;
  transform: translateY(-50%) rotate(90deg);
}

.accordion-container .accordion-title.open::before {
  background: var(--thm-white);
  transform: translateY(-50%);
}

.accordion-container .accordion-title.open::after {
  opacity: 0;
  background: var(--thm-white);
  transform: translateY(-50%) rotate(90deg);
}

.accordion-content {
  padding: 20px 25px;
  border: 2px solid rgba(22, 165, 113, 0.1);
  border-radius: 10px;
  background: var(--thm-white);
  box-shadow: 0px 4px 15px rgba(22, 165, 113, 0.08);
  font-size: 16px;
  line-height: 28px;
  color: var(--thm-body-font-color);
}

/*=============================
	6. breadcumb section css
===============================*/
#site-breadcumb {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#site-breadcumb .site-breadcumb-wrapper {
  background: rgba(22, 67, 67, 0.9);
  padding: 280px 0 140px;
}

.breadcumb-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcumb-content h1.breadcumb-title {
  font-size: 64px;
  color: var(--thm-white);
}
.breadcumb-content ul.page-navigator {
  margin-left: auto;
}
.breadcumb-content ul.page-navigator li {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  float: left;
  margin-right: 15px;
  position: relative;
}
.breadcumb-content ul.page-navigator li a {
  color: rgba(255, 255, 255, 0.3);
}
.breadcumb-content ul.page-navigator li a:hover {
  color: var(--thm-white);
}
.breadcumb-content ul.page-navigator li::after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  margin-left: 15px;
  color: var(--thm-white);
}
.breadcumb-content ul.page-navigator li:last-child {
  margin-right: 0;
}
.breadcumb-content ul.page-navigator li:last-child a {
  color: var(--thm-white);
  cursor: inherit;
}
.breadcumb-content ul.page-navigator li:last-child::after {
  display: none;
}

/*=============================
	7. Hero section CSS
===============================*/
.hero-content {
  position: relative;
  margin-right: 3%;
}
.hero-content .hero-tagline {
  color: var(--thm-teal);
  font-weight: 500;
  margin-bottom: 14px;
}
.hero-content h1.hero-title {
  margin-bottom: 18px;
}
.hero-content .hero-btn-area {
  margin-top: 40px;
}

.hero-content .hero-btn-area a.play-btn {
  margin-left: 30px;
}
.hero-content .hero-btn-area a.play-btn i {
  font-size: 24px;
  color: var(--thm-teal);
  padding: 15px;
  border: 2px solid var(--thm-teal);
  border-radius: 10px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.hero-content .hero-btn-area a.play-btn i:hover {
  background: var(--thm-teal);
  color: var(--thm-white);
}
.hero-content .hero-btn-area span.play-intro {
  color: var(--thm-white);
  margin-left: 14px;
  font-weight: 600;
}
.hero-content .hero-team-info {
  margin-top: 80px;
  padding: 7px 20px;
  border-radius: 120px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 70%;
}
.hero-content .hero-team-info .team-members .team-members-img {
  border: 2px solid var(--thm-white);
  border-radius: 50%;
  margin-right: -30px;
  height: 60px;
  width: 60px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.hero-content .hero-team-info .team-members:hover .team-members-img {
  margin-right: -25px;
}
.hero-content .hero-team-info .total-team-count {
  margin-left: 70px;
  color: var(--thm-bg-white);
}
.hero-content .hero-team-info .total-team-count span {
  font-size: 30px;
  line-height: normal;
  font-weight: var(--thm-heading-font-weight);
}

.hero-images {
  position: relative;
}
.hero-images .feature-one img {
  width: 100%;
}
.hero-images .feature-two {
  position: absolute;
  right: -70px;
  bottom: -30px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(16, 16, 16, 0.5);
          box-shadow: 0px 10px 50px 0px rgba(16, 16, 16, 0.5);
  overflow: hidden;
  -webkit-animation-name: moveUpDown;
          animation-name: moveUpDown;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.hero-style1::before {
  content: "\f103";
  font-family: flaticon_itco !important;
  font-size: 200px;
  position: absolute;
  color: #145656;
  top: 0;
  left: -10%;
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.hero-sec2 {
  position: relative;
}
.hero-sec2::before, .hero-sec2::after {
  content: "";
  position: absolute;
}
.hero-sec2::before {
  width: 700px;
  height: 700px;
  background: url(assets/images/logo/circle.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: -30%;
  left: -14%;
  -webkit-animation: zoomInOut 5s infinite;
          animation: zoomInOut 5s infinite;
}

.hero-content-style1::before,
.hero-content-style1::after {
  content: "";
  position: absolute;
  font-family: flaticon_itco !important;
}

.hero-content-style1::before {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #8ec1ae;
  top: -10%;
  right: 20%;
  -webkit-animation: zoomInOut 2s infinite;
          animation: zoomInOut 2s infinite;
}

.hero-content-style1::after {
  height: 150px;
  width: 150px;
  background: url(assets/images/hero/mask-group.svg);
  bottom: 0;
  right: 0;
  -webkit-animation: Roted 3s infinite;
          animation: Roted 3s infinite;
}

.hero-slider-item {
  width: 100%;
  height: 750px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-slider-item .slider-img-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  background: rgba(22, 67, 67, 0.7);
}
.hero-slider-item .hero-content {
  margin: 0 5%;
}
.hero-slider-item .hero-content span.hero-tagline {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  opacity: 0;
}
.hero-slider-item .hero-content .hero-title,
.hero-slider-item .hero-content p {
  color: var(--thm-white);
  opacity: 0;
}
.hero-slider-item .hero-content .hero-title {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.hero-slider-item .hero-content p {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.hero-slider-item .hero-content .hero-btn-area {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-slider .owl-nav {
  top: 50%;
  width: 100%;
}
.hero-slider .owl-nav .owl-prev,
.hero-slider .owl-nav .owl-next {
  position: absolute;
}
.hero-slider .owl-nav .owl-prev {
  left: 6%;
}
.hero-slider .owl-nav .owl-next {
  right: 6%;
}
.hero-slider .thm-btn:hover {
  color: var(--thm-teal);
  background: var(--thm-bg-ling-green);
  border-color: var(--thm-bg-ling-green);
}
.hero-slider .thm-btn-style2:before {
  background: var(--thm-bg-ling-green);
}
.hero-slider .thm-btn-style2 {
  color: var(--thm-teal);
  border-color: var(--thm-bg-ling-green);
}
.hero-slider .thm-btn-style2:hover {
  color: var(--thm-white);
  background: var(--thm-teal);
  border-color: var(--thm-teal);
}

.hero-slider .owl-item.active span.hero-tagline {
  -webkit-animation: fadeInDown;
          animation: fadeInDown;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  opacity: 1;
}
.hero-slider .owl-item.active h1.hero-title {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  opacity: 1;
}
.hero-slider .owl-item.active p {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  opacity: 1;
}
.hero-slider .owl-item.active .hero-content .hero-btn-area {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  opacity: 1; 

}

/*=============================
	8. About section CSS
===============================*/
.about-sec .sec-content {
  margin-left: 76px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about-sec .sec-images {
  position: relative;
}
.about-sec .sec-images .sec-img-one {
  width: 80%;
  border-radius: 318px;
}
.about-sec .sec-images .sec-img-one img {
  width: 100%;
}
.about-sec .sec-images .sec-img-one::after {
  content: "\f120";
  font-family: flaticon_itco !important;
  font-size: 200px;
  position: absolute;
  color: var(--thm-teal);
  top: 84px;
  right: 15%;
  z-index: -1;
}
.about-sec .sec-images .sec-img-two {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  border: 10px solid var(--thm-white);
  border-radius: 153px;
}
.about-sec .sec-images .sec-img-two img {
  width: 100%;
}

.about-sec2 .sec-img-one {
  width: 100% !important;
  border-radius: 10px !important;
  overflow: hidden;
}
.about-sec2 .sec-images {
  overflow: hidden;
}
.about-sec2 .sec-images .sec-img-info {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 286px;
  width: 269px;
  background: var(--thm-teal);
  outline: 10px solid var(--thm-white);
  border-radius: 10px;
  padding: 42px 60px;
}
.about-sec2 .sec-images .sec-img-info span {
  color: var(--thm-white);
  font-size: 62px;
  font-weight: var(--thm-heading-font-weight);
  margin-bottom: 30px;
}
.about-sec2 .sec-images .sec-img-info p {
  font-size: 26px;
  color: var(--thm-white);
  text-align: center;
}

.about-sec3 .sec-images {
  position: relative;
  border-radius: 10px !important;
  overflow: hidden;
  margin-left: 76px;
}
.about-sec3 .sec-images .sec-img-one img {
  width: 100%;
}
.about-sec3 .sec-images .sec-img-two {
  position: absolute;
  bottom: 0;
  left: 0;
  outline: 10px solid var(--thm-white);
  border-radius: 10px;
  width: 55%;
}
.about-sec3 .sec-images .sec-img-two img {
  width: 100%;
}

/*=============================
	9. Service Section CSS
===============================*/
.service-sec .sec-content {
  margin-right: 20px;
}

.service-lists-style1 .single-service {
  position: relative;
  padding: 50px 0px;
  border-bottom: 1px solid rgba(56, 56, 56, 0.3);
}
.service-lists-style1 .single-service:first-child {
  padding-top: 0;
}
.service-lists-style1 .single-service:first-child .single-service-content a {
  top: 15%;
}
.service-lists-style1 .single-service:hover .single-service-icon {
  background: var(--thm-teal);
}
.service-lists-style1 .single-service:hover .single-service-icon i {
  color: var(--thm-white);
}
.service-lists-style1 .single-service:hover .single-service-content a {
  color: var(--thm-teal);
}
.service-lists-style1 .single-service-icon {
  height: 100px;
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--thm-teal);
  border-radius: 50%;
  margin-right: 24px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.service-lists-style1 .single-service-icon i {
  font-size: 50px;
  color: var(--thm-teal);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.service-lists-style1 .single-service-content h4 {
  font-size: 30px;
  line-height: 52px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.service-lists-style1 .single-service-content a {
  position: absolute;
  color: var(--thm-black);
  font-size: 32px;
  top: 36%;
  right: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.single-service-style2 {
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(22, 165, 113, 0.15);
          box-shadow: 0px 10px 50px 0px rgba(22, 165, 113, 0.15);
}
.single-service-style2 .img-box {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-service-style2 .img-box img {
  width: 100%;
}
.single-service-style2 .content-box {
  padding: 30px;
}
.single-service-style2 .content-box .single-service-content {
  margin-right: 16px;
}
.single-service-style2 .content-box .single-service-content h5 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
}
.single-service-style2 .content-box .single-service-content a.read-more {
  margin-top: 36px;
  display: block;
}
.single-service-style2 .content-box .single-service-icon i {
  font-size: 80px;
  color: var(--thm-teal);
}
.single-service-style2:hover .img-box {
  -webkit-transform: translate3d(0, -15px, 0) scale(1.1);
          transform: translate3d(0, -15px, 0) scale(1.1);
}

.service-cat-sec {
  margin-top: -100px;
  position: relative;
  z-index: 999;
}
.service-cat-sec .single-service {
  overflow: hidden;
  position: relative;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-box-shadow: 0px 10px 50px rgba(16, 16, 16, 0.1);
          box-shadow: 0px 10px 50px rgba(16, 16, 16, 0.1);
}
.service-cat-sec .single-service::before {
  content: "";
  position: absolute;
  background: url(assets/images/service/service-art.png);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -1;
}
.service-cat-sec .single-service .service-num h3 {
  font-size: 30px;
  -webkit-text-fill-color: var(--thm-white);
  -webkit-text-stroke: 2px rgba(16, 16, 16, 0.2);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.service-cat-sec .single-service .service-content {
  padding: 0 22px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.service-cat-sec .single-service .service-content i {
  font-size: 60px;
  color: var(--thm-teal);
  margin-bottom: 14px;
}
.service-cat-sec .single-service .service-content a.service-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--thm-black);
}
.service-cat-sec .single-service:hover .service-num h3 {
  -webkit-text-stroke: 2px rgba(22, 165, 113, 0.5);
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.service-page-sec {
  padding-bottom: 116px;
}
.service-page-sec .single-service-style2 {
  margin-bottom: 24px;
}

/*=============================
	10. Newsletter Section CSS
===============================*/
.video-sec {
  background: url(assets/images/newsletter/newsletter01.png) center/cover;
}
.video-sec .video-sec-overlay {
  padding: 175px 0px;
}
.video-sec .video-sec-overlay a {
  position: relative;
}
.video-sec .video-sec-overlay a i {
  padding-top: 4px;
  padding-left: 4px;
  font-size: 16px;
  height: 80px;
  width: 80px;
  color: var(--thm-white);
  background: var(--thm-teal);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.video-sec .video-sec-overlay a:hover i {
  color: var(--thm-black);
}
.video-sec .video-sec-overlay a::before, .video-sec .video-sec-overlay a::after {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.video-sec .video-sec-overlay a::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.newslatter-sec .sec-content {
  margin-left: 50px;
}
.newslatter-sec .sec-content h2.sec-title {
  color: var(--thm-white);
  font-size: 42px;
  line-height: 54px;
}
.newslatter-sec .sec-content p {
  color: var(--thm-white);
}

.newslatter-sec2 .sec-content {
  margin-left: 0;
  margin-right: 50px;
}

.Subscribe-form input.form-control {
  border: none;
  width: 50%;
  border-radius: 10px;
  padding: 11px 20px;
  color: var(--thm-black);
}
.Subscribe-form button {
  margin-left: 24px;
  padding: 11px 28px;
}

.video-sec2 {
  background: url(assets/images/newsletter/newsletter02.png) center/cover;
}
.video-sec2 .video-sec-overlay {
  background: rgba(16, 16, 16, 0.2);
  padding: 175px 0px;
}

.aximo_screenfix_left {
  margin-left: calc((-100vw + 100%) / 2);
}

.aximo_screenfix_right {
  margin-right: calc((-100vw + 100%) / 2);
}

/*=============================
	11. Project Section CSS
===============================*/
.project-slider {
  position: relative;
}
.project-slider .single-project {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.project-slider .single-project .project-img {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.project-slider .single-project .project-img img {
  width: 100%;
}
.project-slider .single-project .project-title {
  position: absolute;
  bottom: 0;
  padding: 14px 20px 11px;
  border-left: 10px solid var(--thm-teal);
  background: var(--thm-white);
  width: 90%;
  left: 50%;
  bottom: -25%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 10px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.project-slider .single-project .project-title h5 {
  font-size: 20px;
  line-height: 30px;
}
.project-slider .single-project .project-title a.project-btn {
  height: 60px;
  width: 60px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 32px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.project-slider .single-project .project-title a.project-btn i {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  color: var(--thm-black);
}
.project-slider .single-project .project-title a.project-btn:hover {
  background: var(--thm-teal);
}
.project-slider .single-project .project-title a.project-btn:hover i {
  color: var(--thm-white);
}
.project-slider .single-project:hover .project-img {
  -webkit-transform: translate3d(0, -15px, 0) scale(1.1);
          transform: translate3d(0, -15px, 0) scale(1.1);
}
.project-slider .single-project:hover .project-title {
  bottom: 10%;
}
.project-slider .owl-nav {
  right: 0;
  top: -60px;
}

.project-sec2 {
  padding-bottom: 116px;
}

.single-project-style2 {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}
.single-project-style2 .project-img {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-project-style2 .project-img img {
  width: 100%;
}
.single-project-style2 .project-title {
  padding: 16px 30px;
  background: var(--thm-teal);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  bottom: -60%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-project-style2 .project-title h5 {
  font-size: 26px;
  line-height: 42px;
  color: var(--thm-white);
}
.single-project-style2 .project-title h5:hover a {
  color: var(--thm-white);
}
.single-project-style2 .project-title span.project-cat {
  color: var(--thm-white);
}
.single-project-style2 a.project-btn {
  position: absolute;
  left: 50%;
  bottom: 20%;
  height: 80px;
  width: 80px;
  background: var(--thm-teal);
  color: var(--thm-white);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 32px;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-project-style2 a.project-btn i {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 4px;
  margin-left: 4px;
}
.single-project-style2 a.project-btn:hover {
  background: var(--thm-bg-ling-green);
  color: var(--thm-teal);
}
.single-project-style2:hover .project-img {
  -webkit-transform: translate3d(0, -15px, 0) scale(1.1);
          transform: translate3d(0, -15px, 0) scale(1.1);
}
.single-project-style2:hover .project-title {
  bottom: 0;
}
.single-project-style2:hover a.project-btn {
  bottom: 40%;
  opacity: 1;
}

.single-project-style3 .project-title {
  height: 100%;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  background: linear-gradient(1deg, #16a571 0.94%, rgba(22, 165, 113, 0) 73.94%);
}
.single-project-style3 a.project-btn {
  border-radius: 10px;
  background: var(--thm-bg-ling-green);
  color: var(--thm-black);
}
.single-project-style3 a.project-btn:hover {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.project-slider2 .owl-nav {
  right: 0;
  top: -60px;
}

/*=============================
	12. Business Section CSS
===============================*/
.business-sec {
  padding-bottom: 250px;
}
.business-sec .sec-images {
  margin-left: 76px;
  border-radius: 10px;
  overflow: hidden;
}
.business-sec .sec-images img {
  width: 100%;
}

.ab-progress .progress-title {
  font-family: var(--thm-body-font);
  font-size: 16px;
  font-weight: 500;
  color: var(--thm-black);
}

.ab-progress .ab-progress-bar {
  height: 8px;
  background: var(--thm-teal);
  border-radius: 6px;
}

.ab-progress .progress-bar-wrap {
  height: inherit;
  background: #a1cebe;
  border-radius: 6px;
  border: none;
}

.ab-progress + .ab-progress {
  margin-top: 25px;
}

.ab-progress .progress-indicator-inner {
  font-family: var(--thm-body-font);
  font-size: 16px;
  font-weight: 500;
  color: var(--thm-white);
  background: var(--thm-green);
}

.ab-progress .down-arrow {
  border-top: 7px solid var(--progress-indicator-background, var(--thm-green));
}

/*=============================
	13. company quick info Section CSS
===============================*/
.company-qinfo-raaper {
  padding: 50px 0;
  margin-top: -110px;
  border-radius: 10px;
}
.company-qinfo-raaper .single-info {
  padding: 14px 85px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.company-qinfo-raaper .single-info:last-child {
  border-right: inherit;
}
.company-qinfo-raaper .single-info i {
  font-size: 60px;
  color: var(--thm-teal);
  margin-right: 25px;
}
.company-qinfo-raaper .single-info .info h2 {
  color: var(--thm-white);
}
.company-qinfo-raaper .single-info .info h2 span {
  font-family: var(--thm-heading-font);
  font-size: 3.12rem;
  font-weight: var(--thm-heading-font-weight);
  line-height: 1.2em;
}
.company-qinfo-raaper .single-info .info span {
  color: var(--thm-white);
  font-size: 20px;
  line-height: 30px;
  font-weight: var(--thm-heading-font-weight);
}

/*=============================
	14. pricing Section CSS
===============================*/
.single-pricing {
  border-radius: 10px;
  background: var(--thm-white);
  -webkit-box-shadow: 0px 10px 10px 0px rgba(22, 165, 113, 0.08);
          box-shadow: 0px 10px 10px 0px rgba(22, 165, 113, 0.08);
  overflow: hidden;
}
.single-pricing .pricing-badge {
  padding: 50px;
  background: var(--thm-bg-ling-green);
}
.single-pricing .pricing-badge span.title {
  font-size: 26px;
  font-weight: var(--thm-heading-font-weight);
  line-height: 42px;
  margin-bottom: 14px;
  color: var(--thm-heading-font-color);
}
.single-pricing .pricing-badge .pricing-price {
  color: var(--thm-heading-font-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.single-pricing .pricing-badge .pricing-price span.currency {
  margin-top: 10px;
}
.single-pricing .pricing-badge .pricing-price h3.price {
  font-size: 50px;
  line-height: 72px;
}
.single-pricing .pricing-badge .pricing-price h3.price span {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: var(--thm-teal);
  margin-left: 8px;
}
.single-pricing .pricing-badge .pricing-btn a.btn {
  margin-top: 50px;
  padding: 12px 20px;
  border: 1px solid var(--thm-teal);
  border-radius: 10px;
  font-weight: 600;
  width: 100%;
}
.single-pricing .pricing-badge .pricing-btn a.btn:hover {
  background: var(--thm-teal);
  color: var(--thm-white);
}
.single-pricing .pricing-content {
  padding: 40px 50px 50px;
}
.single-pricing .pricing-content ul.pricing-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
}
.single-pricing .pricing-content ul.pricing-list li:last-child {
  margin-bottom: 0;
}
.single-pricing .pricing-content ul.pricing-list li::before {
  content: "";
  background: url(assets/images/logo/checked.svg);
  background-repeat: no-repeat;
  position: absolute;
  width: 20px;
  height: 20px;
  background-size: 18px;
  top: 6px;
  left: 0;
}

.single-pricing.popular .pricing-badge {
  background: var(--thm-green);
}
.single-pricing.popular .pricing-badge span.title {
  color: var(--thm-white);
}
.single-pricing.popular .pricing-badge .pricing-price {
  color: var(--thm-white);
}
.single-pricing.popular .pricing-badge .pricing-price h3.price {
  color: var(--thm-white);
}
.single-pricing.popular .pricing-btn a.btn {
  background: var(--thm-teal);
  color: var(--thm-white);
}

/*=============================
	15. Brand Section CSS
===============================*/
.brand-sec .sec-content h5 {
  font-size: 20px;
  line-height: 30px;
  color: var(--thm-white);
}
.brand-sec .sec-content h5 span {
  color: var(--thm-teal);
}

.brand-slider .item img {
  width: inherit;
}

/*=============================
	16. Testimonial Section css
===============================*/
.single-testimonial {
  position: relative;
  border-radius: 10px;
  background: var(--thm-bg-ling-green);
  overflow: hidden;
}
.single-testimonial .feedback {
  padding: 30px 30px 42px;
}
.single-testimonial .feedback .rating {
  margin-top: 20px;
  margin-bottom: 40px;
}
.single-testimonial .feedback .rating i {
  color: var(--thm-teal);
  font-size: 18px;
}
.single-testimonial .customar-info {
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--thm-teal);
}
.single-testimonial .customar-info .customar-img {
  width: 60px;
  height: 60px;
  margin-right: 16px;
}
.single-testimonial .customar-info .customar-title h5 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 2px;
  color: var(--thm-white);
}
.single-testimonial .customar-info .customar-title span.title {
  color: var(--thm-white);
}
.single-testimonial .com-logo {
  position: absolute;
  top: 30px;
  right: 30px;
}
.single-testimonial .com-logo i {
  font-size: 60px;
  color: rgba(22, 165, 113, 0.3);
}

.testimonial-slider .owl-dots,
.testimonial-slider3 .owl-dots {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}
.testimonial-slider .owl-dots .owl-dot,
.testimonial-slider3 .owl-dots .owl-dot {
  border: 3px dotted transparent;
  border-radius: 50%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.testimonial-slider .owl-dots .owl-dot span,
.testimonial-slider3 .owl-dots .owl-dot span {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--thm-teal);
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--thm-teal);
  display: block;
  margin: 4px;
}
.testimonial-slider .owl-dots .owl-dot.active,
.testimonial-slider3 .owl-dots .owl-dot.active {
  border-color: var(--thm-teal);
}

.testimonial-sec2 .sec-content h2.sec-title,
.testimonial-sec2 .sec-content h6.sec-sub-title {
  color: var(--thm-white);
}

.testimonial-slider2 {
  position: relative;
}
.testimonial-slider2::before {
  content: "\f11b";
  font-family: flaticon_itco !important;
  position: absolute;
  color: rgba(255, 255, 255, 0.05);
  font-size: 300px;
  top: 16%;
  left: 50%;
  -webkit-transform: rotate(180deg) translateX(50%);
          transform: rotate(180deg) translateX(50%);
}
.testimonial-slider2 .owl-nav {
  position: absolute;
  top: 8%;
  width: 100%;
}
.testimonial-slider2 .owl-nav .owl-prev,
.testimonial-slider2 .owl-nav .owl-next {
  position: absolute;
}
.testimonial-slider2 .owl-nav .owl-next {
  right: 0;
}

.single-testimonial-style2 .feedback {
  margin: 0 10%;
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(250, 250, 254, 0.3);
}
.single-testimonial-style2 .feedback p {
  font-size: 26px;
  font-weight: 700;
  line-height: 42px;
  color: var(--thm-white);
}
.single-testimonial-style2 .customar-info {
  margin-top: 32px;
}
.single-testimonial-style2 .customar-info .customar-img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 14px;
}
.single-testimonial-style2 .customar-info .customar-img img {
  width: 100%;
}
.single-testimonial-style2 .customar-info .customar-title h5 {
  font-size: 26px;
  line-height: 42px;
  color: var(--thm-white);
  margin-bottom: 2px;
}
.single-testimonial-style2 .customar-info .customar-title span.title {
  color: var(--thm-white);
}

.single-testimonial-style3 {
  padding: 50px 30px;
  border-radius: 10px;
  background: var(--thm-white);
  -webkit-box-shadow: 0px 10px 10px 0px rgba(22, 165, 113, 0.08);
          box-shadow: 0px 10px 10px 0px rgba(22, 165, 113, 0.08);
}
.single-testimonial-style3 .feedback {
  width: 34%;
  margin-right: 30px;
  text-align: center;
}
.single-testimonial-style3 .feedback .customar-img {
  border-radius: 5px;
  overflow: hidden;
}
.single-testimonial-style3 .feedback .customar-img img {
  width: 100%;
}
.single-testimonial-style3 .feedback .rating {
  margin-top: 20px;
}
.single-testimonial-style3 .feedback .rating i {
  color: var(--thm-teal);
}
.single-testimonial-style3 .customar-info {
  position: relative;
  width: 66%;
}
.single-testimonial-style3 .customar-info .customar-title h5 {
  font-size: 26px;
  line-height: 42px;
  margin-bottom: 2px;
}
.single-testimonial-style3 .customar-info p.comment {
  margin-top: 18px;
}
.single-testimonial-style3 .customar-info .com-logo {
  position: absolute;
  right: 0;
  top: 0;
}
.single-testimonial-style3 .customar-info .com-logo i {
  color: var(--thm-teal);
  font-size: 60px;
}

/* Testimonial page css*/
.testimonial-page-sec {
  padding-bottom: 116px;
}

.testimonial-page-sec .single-testimonial {
  margin-bottom: 24px;
}

.faq-page.testimonial-sec2 h6.sec-sub-title {
  color: var(--thm-teal);
}
.faq-page.testimonial-sec2 h2.sec-title,
.faq-page.testimonial-sec2 p.comment,
.faq-page.testimonial-sec2 .customar-title h5,
.faq-page.testimonial-sec2 .customar-title span.title {
  color: var(--thm-black);
}
.faq-page.testimonial-sec2 .owl-nav .owl-prev {
  background: var(--thm-teal);
}
.faq-page.testimonial-sec2 .owl-nav .owl-prev i {
  color: var(--thm-white);
}
.faq-page.testimonial-sec2 .single-testimonial-style2 .feedback {
  border-color: rgba(56, 56, 56, 0.3);
}

.faq-page.testimonial-sec2 .testimonial-slider2::before {
  color: rgba(22, 165, 113, 0.1);
}

/*=============================
	17. Team Section CSS
===============================*/
.single-team {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.single-team .member-img img {
  width: 100%;
}
.single-team ul.team-social {
  width: 50px;
  padding: 18px 10px;
  margin-bottom: 20px;
  background: var(--thm-teal);
  display: inline-block;
  border-radius: 0 0 6px 6px;
  position: absolute;
  top: -40%;
  right: 30px;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-team ul.team-social li a {
  height: 32px;
  width: 32px;
  font-size: 16px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  color: var(--thm-white);
  border-radius: 50%;
  margin-bottom: 10px;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.single-team ul.team-social li a:hover {
  background: var(--thm-white);
  color: var(--thm-black);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.single-team ul.team-social li:last-child a {
  margin-bottom: 0;
}
.single-team .member-info {
  position: relative;
  padding: 20px 30px 30px;
  background: var(--thm-white);
  text-align: center;
}
.single-team .member-info h3.member-name {
  font-size: 26px;
  line-height: 42px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-team:hover ul.team-social {
  top: 0;
  opacity: 1;
}
.single-team:hover .member-info h3.member-name {
  color: var(--thm-teal);
}
.single-team:hover .member-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.team-slider .owl-nav {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  right: 0;
  top: -60px;
}
.team-slider .owl-nav .owl-prev,
.team-slider .owl-nav .owl-next {
  background: var(--thm-white);
}
.team-slider .owl-nav .owl-prev:hover,
.team-slider .owl-nav .owl-next:hover {
  background: var(--thm-teal);
}

.team-page-sec {
  padding-bottom: 116px;
}
.team-page-sec .single-team {
  margin-bottom: 24px;
}

/*=============================
	18. Faq Section CSS - Modern Design
===============================*/
.faq-sec #accordion h4.accordion-title {
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  background: var(--thm-white);
  color: var(--thm-black);
  border-radius: 10px;
  margin-bottom: 16px;
  border: 2px solid rgba(22, 165, 113, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0px 4px 15px rgba(22, 165, 113, 0.08);
}

.faq-sec #accordion h4.accordion-title:hover {
  border-color: var(--thm-teal);
  transform: translateY(-2px);
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.15);
}

.faq-sec #accordion h4.accordion-title::before, 
.faq-sec #accordion h4.accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 18px;
  height: 2px;
  background: var(--thm-teal);
  transition: all 0.3s ease;
  transform: translateY(-50%);
}

.faq-sec #accordion h4.accordion-title::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-sec #accordion h4.accordion-title.open {
  background: var(--thm-teal);
  color: var(--thm-white);
  border-color: var(--thm-teal);
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.25);
}

.faq-sec #accordion h4.accordion-title.open::before, 
.faq-sec #accordion h4.accordion-title.open::after {
  background: var(--thm-white);
}

.faq-sec #accordion h4.accordion-title.open::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg);
}

.faq-sec #accordion .accordion-content {
  padding: 20px 25px;
  margin: 0 0 20px 0;
  border: none;
  background: var(--thm-white);
  border-radius: 10px;
  border: 2px solid rgba(22, 165, 113, 0.1);
  box-shadow: 0px 4px 15px rgba(22, 165, 113, 0.08);
  font-size: 16px;
  line-height: 28px;
  color: var(--thm-body-font-color);
}

.faq-sec #accordion .accordion-content:last-child {
  margin-bottom: 0;
}
.faq-sec .sec-images {
  margin-left: 76px;
}
.faq-sec .sec-images .sec-img-one {
  border-radius: 275px 0px;
  overflow: hidden;
}
.faq-sec .sec-images .sec-img-one img {
  width: 100%;
}

/*=============================
	19. Blog Section CSS
===============================*/
.blog-box-shadow {
  -webkit-box-shadow: 0 4.8px 24.4px -6px rgba(22, 165, 113, 0.1), 0 4px 13px -2px rgba(22, 165, 113, 0.08);
          box-shadow: 0 4.8px 24.4px -6px rgba(22, 165, 113, 0.1), 0 4px 13px -2px rgba(22, 165, 113, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.blog-item .img-box {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.blog-item .img-box img {
  width: 100%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 10px;
}
.blog-item .img-box .blog-date {
  height: 80px;
  width: 80px;
  border-radius: 10px;
  background: var(--thm-teal);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--thm-white);
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.blog-item .img-box .blog-date span.data {
  font-size: 30px;
  font-weight: 700;
}
.blog-item .content-box {
  margin: 26px;
  display: inline-block;
}
.blog-item .content-box .meta-box ul.meta-info {
  margin-bottom: 14px;
}
.blog-item .content-box .meta-box ul.meta-info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 30px;
}
.blog-item .content-box .meta-box ul.meta-info li:last-child {
  margin-right: 0;
}
.blog-item .content-box .meta-box ul.meta-info li i {
  font-size: 20px;
  color: var(--thm-teal);
  margin-right: 6px;
}
.blog-item .content-box .meta-box ul.meta-info li span a {
  color: var(--thm-black);
}
.blog-item .content-box .title-box h3 {
  font-size: 26px;
  line-height: 38px;
}
.blog-item .content-box .btn-box {
  margin-top: 20px;
}
.blog-item:hover .img-box img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.blog-left-box .content-box {
  margin: 26px 0 0;
}
.blog-left-box .content-box .title-box h3 {
  font-size: 30px;
  line-height: 42px;
}

.blog-sidebar-box-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(56, 56, 56, 0.2);
}
.blog-sidebar-box-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.blog-sidebar-box-item .content-box {
  margin: 0 0 0 30px;
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.blog-sidebar-box-item .content-box .title-box h3 {
  font-size: 20px;
  line-height: 30px;
}

.blog-page-sec .blog-item-wrapper .blog-item:last-child {
  margin-bottom: 0;
}
.blog-page-sec .blog-item {
  margin-bottom: 60px;
}
.blog-page-sec .blog-btn {
  margin-top: 40px;
}

.blog-pagination {
  margin-top: 40px;
}
.blog-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
}
.blog-pagination ul li.pagination-item a {
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(56, 56, 56, 0.12);
  border-radius: 50%;
  font-size: 16px;
  color: var(--thm-black);
  font-weight: 500;
}
.blog-pagination ul li.pagination-item a.active, .blog-pagination ul li.pagination-item a:hover {
  color: var(--thm-white);
  background: var(--thm-teal);
}

.blog-item-details .blog-title h3 {
  padding-bottom: 18px;
  font-size: 50px !important;
  line-height: 72px !important;
}
.blog-item-details .blog-body {
  margin-bottom: 50px;
}
.blog-item-details .blog-body blockquote {
  margin: 30px 0;
  padding: 40px 64px 40px 0;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  border-left: 12px solid var(--thm-teal);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-item-details .blog-body blockquote i {
  font-size: 60px;
  color: var(--thm-teal);
  padding: 0 30px 0 60px;
}
.blog-item-details .blog-body h4 {
  font-size: 30px;
  margin-bottom: 16px;
}
.blog-item-details .blog-body ul.info-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 28px;
}
.blog-item-details .blog-body ul.info-list li::before {
  content: "";
  background: url(assets/images/service/sli.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 20px;
  height: 20px;
  background-size: 18px;
  top: 6px;
  left: 0;
}

.blog-tags-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 26px 0;
  border: solid rgba(56, 56, 56, 0.12);
  border-width: 1px 0;
}
.blog-tags-share .blog-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-tags-share .blog-tags h6 {
  font-size: 18px;
  font-weight: 400;
  margin-right: 20px;
}
.blog-tags-share .blog-tags ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog-tags-share .blog-tags ul li {
  margin-left: 12px;
}
.blog-tags-share .blog-tags:first-of-type {
  margin-right: auto;
}
.blog-tags-share .blog-share li a {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  background: var(--thm-bg-ling-green);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  color: var(--thm-black);
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.blog-tags-share .blog-share li a:hover {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.blog-autor-bio {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  border: 1px solid rgba(56, 56, 56, 0.12);
  margin: 30px 0 50px;
  background: var(--thm-bg-ling-green);
  gap: 30px;
}
.blog-autor-bio .avater {
  border-radius: 50%;
  min-width: 140px;
}
.blog-autor-bio .avater-content {
  position: relative;
}
.blog-autor-bio .avater-content span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  margin-top: 8px;
  display: block;
}
.blog-autor-bio .avater-content ul.autor-social {
  position: absolute;
  gap: 14px;
  top: 20px;
  right: 40px;
}
.blog-autor-bio .avater-content ul.autor-social li a {
  font-size: 16px;
  color: var(--thm-black);
}
.blog-autor-bio .avater-content ul.autor-social li a:hover {
  color: var(--thm-teal);
}

.blog-comments h3 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(56, 56, 56, 0.12);
  font-size: 30px;
}

.comment-item .children {
  margin-left: 60px;
}
.comment-item .post-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 30px;
  position: relative;
  border-bottom: 1px solid rgba(56, 56, 56, 0.12);
}
.comment-item .post-comment .comment-avater {
  min-height: 100px;
  min-width: 100px;
}
.comment-item .post-comment .comment-content {
  margin-left: 14px;
  position: relative;
}
.comment-item .post-comment .comment-content h4.name {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 6px;
}
.comment-item .post-comment .comment-content span.commented-on {
  font-size: 16px;
  margin-bottom: 2px;
}
.comment-item .post-comment .comment-content span.commented-on i {
  color: var(--thm-teal);
  margin-right: 6px;
}
.comment-item .post-comment .comment-content .reply_and_edit {
  position: absolute;
  top: 0;
  right: 10px;
}
.comment-item .post-comment .comment-content .reply_and_edit a {
  padding: 10px 18px;
  border-radius: 6px;
  background: var(--thm-bg-ling-green);
  text-transform: uppercase;
  color: var(--thm-black);
}
.comment-item .post-comment .comment-content .reply_and_edit a i {
  margin-left: 6px;
}
.comment-item .post-comment .comment-content .reply_and_edit a:hover {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.blog-contact-form {
  padding: 30px;
  margin-top: 50px;
  border: 1px solid rgba(56, 56, 56, 0.1);
  border-radius: 10px;
}
.blog-contact-form h3 {
  font-size: 30px;
  margin-bottom: 10px;
}
.blog-contact-form p {
  margin-bottom: 30px;
}

.comment-list > .comment-item:last-child .post-comment {
  padding: 0;
  margin: 0;
  border: none;
}

/*=============================
	20. Footer Section CSS
===============================*/
.footer-sec {
  background: url(assets/images/footer/footer.png) center/cover;
}
.footer-sec .footer-hr {
  margin-bottom: 0;
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.footer-widget.pages-links {
  margin-left: -40px;
}

.footer-widget {
  color: var(--thm-white);
  margin-bottom: 40px;
}
.footer-widget .footer-widget-logo {
  margin-bottom: 30px;
}
.footer-widget h4.footer-widget-title {
  margin-bottom: 30px;
  font-size: 26px;
  line-height: 42px;
  color: var(--thm-white);
}
.footer-widget .footer-widget-content .footer-social-icon {
  margin-top: 30px;
}
.footer-widget .footer-widget-content .footer-social-icon a {
  height: 42px;
  width: 42px;
  border: 1px solid var(--thm-white);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 12px;
  color: var(--thm-white);
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.footer-widget .footer-widget-content .footer-social-icon a:hover {
  background: var(--thm-white);
  color: var(--thm-green);
}
.footer-widget .footer-widget-content .footer-social-icon a:last-child {
  margin-right: 0;
}
.footer-widget .footer-widget-content .footer-links ul li {
  margin-bottom: 12px;
}
.footer-widget .footer-widget-content .footer-links ul li a {
  color: var(--thm-white);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.footer-widget .footer-widget-content .footer-links ul li a:hover {
  color: #0fc482;
}
.footer-widget .footer-widget-content .footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-recent-post .blog-sidebar-box-item {
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: 0;
}
.footer-recent-post .blog-sidebar-box-item:last-child {
  margin-bottom: 0;
}
.footer-recent-post .blog-sidebar-box-item .content-box {
  margin-left: 15px;
}
.footer-recent-post .blog-sidebar-box-item .content-box .meta-box ul.meta-info {
  margin-bottom: 2px;
}
.footer-recent-post .blog-sidebar-box-item .content-box .meta-box ul.meta-info li {
  margin-right: 0;
}
.footer-recent-post .blog-sidebar-box-item .content-box .meta-box ul.meta-info li span a {
  color: var(--thm-white);
}
.footer-recent-post .blog-sidebar-box-item .content-box .title-box h3 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--thm-white);
}

.footer-copyright-text p {
  color: var(--thm-white);
  padding: 30px 0;
}
.footer-copyright-text p a {
  font-weight: 500;
  color: #0fc482;
}

.footer2 .section-overlay {
  padding-top: 208px;
}

.newslatter-style2 {
  background: var(--thm-teal);
  border-radius: 10px;
  padding: 38px 50px;
  overflow: hidden;
  margin-bottom: -68px;
}
.newslatter-style2 .newslatter-text {
  font-size: 30px;
  color: var(--thm-white);
}
.newslatter-style2 .Subscribe-form {
  position: relative;
}
.newslatter-style2 .Subscribe-form input.form-control {
  width: 100%;
  padding: 17px 20px;
  line-height: 30px;
  border-radius: 10px;
}
.newslatter-style2 .Subscribe-form button.thm-btn {
  position: absolute;
  background: var(--thm-teal);
  margin-top: 4px;
  right: 5px;
  padding-left: 40px;
  padding-right: 40px;
}
.newslatter-style2 .Subscribe-form button.thm-btn:hover {
  color: var(--thm-white);
}

/*=============================
	21. Service Details page CSS
===============================*/
.service-details-wrapper .feature-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
.service-details-wrapper .feature-img img {
  width: 100%;
}

.service-details-content .info-part {
  margin-bottom: 50px;
}
.service-details-content .info-part h4 {
  font-size: 30px;
  margin-bottom: 16px;
}
.service-details-content .info-part .info-part-img {
  border-radius: 10px;
  overflow: hidden;
}
.service-details-content .info-part .info-part-img img {
  width: 100%;
}
.service-details-content .info-part ul.info-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 28px;
}
.service-details-content .info-part ul.info-list li:last-child {
  margin-bottom: 0;
}
.service-details-content .info-part ul.info-list li::before {
  content: "";
  background: url(assets/images/service/sli.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 20px;
  height: 20px;
  background-size: 18px;
  top: 6px;
  left: 0;
}

.sidebar-item {
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(56, 56, 56, 0.12);
  margin-bottom: 40px;
}
.sidebar-item h4.stitle {
  font-size: 30px;
  line-height: 42px;
  margin-bottom: 20px;
}
.sidebar-item ul.cat-list li {
  margin-bottom: 18px;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid rgba(56, 56, 56, 0.12);
  background: var(--thm-white);
}
.sidebar-item ul.cat-list li a {
  position: relative;
  color: var(--thm-black);
  display: block;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.sidebar-item ul.cat-list li a i {
  position: relative;
  float: right;
  font-size: 24px;
  margin-top: 3px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.sidebar-item ul.cat-list li a:hover {
  color: var(--thm-teal);
  margin-left: 20px;
}
.sidebar-item ul.cat-list li a:hover i {
  -webkit-animation: GoFB 500ms 1;
          animation: GoFB 500ms 1;
}
.sidebar-item ul.cat-list li:last-child {
  margin-bottom: 0;
}
.sidebar-item .download-brochures {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sidebar-item .download-brochures .brochur-icon i {
  font-size: 50px;
  color: var(--thm-teal);
}
.sidebar-item .download-brochures .brochur-text {
  margin-left: 14px;
}
.sidebar-item .download-brochures .brochur-text p {
  margin-bottom: 8px;
  margin-top: -6px;
}
.sidebar-item .qinfo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.sidebar-item .qinfo-item .qinfo-icon i {
  background: var(--thm-bg-ling-green);
  color: var(--thm-teal);
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
}
.sidebar-item .qinfo-item .qinfo-box {
  margin-left: 14px;
}
.sidebar-item .qinfo-item .qinfo-box h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 4px;
}
.sidebar-item .qinfo-item .qinfo-box a {
  color: var(--thm-black);
  display: block;
}
.sidebar-item .qinfo-item .qinfo-box a:hover {
  color: var(--thm-teal);
}
.sidebar-item .blog-tags ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  row-gap: 15px;
}
.sidebar-item .blog-tags ul li {
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--thm-bg-ling-green);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sidebar-item .blog-tags ul li:hover {
  background: var(--thm-teal);
}
.sidebar-item .blog-tags ul li:hover a {
  color: var(--thm-white);
}
.sidebar-item .blog-tags ul li a {
  color: var(--thm-black);
}

.blog-sidebar-search form {
  padding: 11px 20px;
  border-radius: 10px;
  border: 1px solid rgba(56, 56, 56, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.blog-sidebar-search form button,
.blog-sidebar-search form input {
  background: transparent;
  border: none;
}
.blog-sidebar-search form button::-webkit-input-placeholder, .blog-sidebar-search form input::-webkit-input-placeholder {
  color: rgba(56, 56, 56, 0.6);
}
.blog-sidebar-search form button::-moz-placeholder, .blog-sidebar-search form input::-moz-placeholder {
  color: rgba(56, 56, 56, 0.6);
}
.blog-sidebar-search form button:-ms-input-placeholder, .blog-sidebar-search form input:-ms-input-placeholder {
  color: rgba(56, 56, 56, 0.6);
}
.blog-sidebar-search form button::-ms-input-placeholder, .blog-sidebar-search form input::-ms-input-placeholder {
  color: rgba(56, 56, 56, 0.6);
}
.blog-sidebar-search form button::placeholder,
.blog-sidebar-search form input::placeholder {
  color: rgba(56, 56, 56, 0.6);
}
.blog-sidebar-search form input {
  width: 100%;
}

/*=============================
	22. Team Details page CSS
===============================*/
.team-fbio-sec .member-fbio-img {
  border-radius: 200px 0px;
  overflow: hidden;
}
.team-fbio-sec .member-fbio-img img {
  width: 100%;
}
.team-fbio-sec .member-fbio {
  margin-left: 76px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.team-fbio-sec .member-fbio .sec-title {
  padding-bottom: 0 !important;
}
.team-fbio-sec .member-fbio .member-title {
  font-size: 26px;
  line-height: 42px;
  margin-bottom: 18px;
}
.team-fbio-sec .member-fbio .member-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
.team-fbio-sec .member-fbio .member-social h6 {
  font-size: 18px;
  margin-right: 14px;
}
.team-fbio-sec .member-fbio .member-social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 34px;
  width: 34px;
  background: var(--thm-bg-ling-green);
  margin-right: 12px;
  border-radius: 50%;
  color: var(--thm-black);
  font-size: 16px;
}
.team-fbio-sec .member-fbio .member-social a:last-child {
  margin-right: 0;
}
.team-fbio-sec .member-fbio .member-social a:hover {
  background: var(--thm-teal);
  color: var(--thm-white);
}
.team-fbio-sec .member-fbio .sec-btn {
  margin-top: 30px;
}
.team-fbio-sec .member-experience h2.sec-title {
  margin-top: -14px;
}
.team-fbio-sec .team-fbio-hr {
  border-color: rgba(56, 56, 56, 0.12);
  margin: 60px 0 80px;
}
.team-fbio-sec .progressbar-tooltip {
  margin-left: 76px;
}

/*=============================
	23. 404 page CSS
===============================*/
.error-sec .error-content button {
  margin-top: 60px;
}

/*=============================
	24. Contact page CSS
===============================*/
form.itco-cform .contact-field {
  margin-bottom: 20px;
}
form.itco-cform .contact-field input,
form.itco-cform .contact-field textarea {
  font-family: var(--thm-body-font);
  font-size: var(--thm-body-font-size);
  line-height: 30px;
  color: var(--thm-black);
  width: 100%;
  padding: 12px 38px !important;
  border-radius: 10px;
  border: 1px solid rgba(56, 56, 56, 0.12);
}
form.itco-cform .contact-field input::-webkit-input-placeholder, form.itco-cform .contact-field textarea::-webkit-input-placeholder {
  color: rgba(56, 56, 56, 0.5);
}
form.itco-cform .contact-field input::-moz-placeholder, form.itco-cform .contact-field textarea::-moz-placeholder {
  color: rgba(56, 56, 56, 0.5);
}
form.itco-cform .contact-field input:-ms-input-placeholder, form.itco-cform .contact-field textarea:-ms-input-placeholder {
  color: rgba(56, 56, 56, 0.5);
}
form.itco-cform .contact-field input::-ms-input-placeholder, form.itco-cform .contact-field textarea::-ms-input-placeholder {
  color: rgba(56, 56, 56, 0.5);
}
form.itco-cform .contact-field input::placeholder,
form.itco-cform .contact-field textarea::placeholder {
  color: rgba(56, 56, 56, 0.5);
}

form.itco-sform .contact-field {
  margin-bottom: 18px;
}
form.itco-sform .contact-field input,
form.itco-sform .contact-field textarea {
  padding: 10px 20px;
}

.contact-page-sec .sec-content {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.contact-page-sec .sec-content form {
  margin-top: 10px;
}
.contact-page-sec .get-in-touch .qinfo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}
.contact-page-sec .get-in-touch .qinfo-item .qinfo-icon i {
  background: var(--thm-bg-ling-green);
  color: var(--thm-teal);
  height: 60px;
  width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 6px;
  font-size: 20px;
}
.contact-page-sec .get-in-touch .qinfo-item .qinfo-box {
  margin-left: 18px;
}
.contact-page-sec .get-in-touch .qinfo-item .qinfo-box h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 4px;
}
.contact-page-sec .get-in-touch .qinfo-item .qinfo-box a {
  color: var(--thm-black);
}
.contact-page-sec .get-in-touch .qinfo-item .qinfo-box a:hover {
  color: var(--thm-teal);
}
.contact-page-sec .company-social {
  margin-top: 40px;
  gap: 18px;
}
.contact-page-sec .company-social a {
  font-size: 20px;
  height: 60px;
  width: 60px;
  border-radius: 6px;
  background: var(--thm-bg-ling-green);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--thm-black);
}
.contact-page-sec .company-social a:hover {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.contact-map-sec {
  overflow: hidden;
}

/*=============================
	25. New Business Pages CSS
===============================*/

/* Free IT Assessment Page */
.assessment-form-wrapper {
  background: var(--thm-white);
  border-radius: 20px;
  padding: 60px;
  margin: 40px 0;
  box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.12);
  border: 2px solid rgba(22, 165, 113, 0.1);
}

.assessment-benefits h4 {
  color: var(--thm-black);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.benefits-list li {
  padding: 12px 0;
  color: var(--thm-body-font-color);
  font-size: 16px;
}

.benefits-list li i {
  color: var(--thm-teal);
  margin-right: 10px;
  font-size: 18px;
}

.trust-indicators {
  background: var(--thm-bg-ling-green);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

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

.trust-item i {
  color: var(--thm-teal);
  margin-right: 10px;
  font-size: 16px;
}

.trust-item span {
  color: var(--thm-black);
  font-weight: 500;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  background: var(--thm-white);
  border-radius: 15px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  border: 2px solid rgba(22, 165, 113, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 35px rgba(22, 165, 113, 0.15);
}

.process-step .step-icon {
  width: 80px;
  height: 80px;
  background: var(--thm-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step .step-icon i {
  color: var(--thm-white);
  font-size: 32px;
}

.process-step h5 {
  color: var(--thm-black);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.process-step p {
  color: var(--thm-body-font-color);
  font-size: 16px;
  line-height: 26px;
}

/* Our Process Page */
.process-timeline {
  position: relative;
  padding: 40px 0;
}

.process-timeline .process-step {
  position: relative;
  margin-bottom: 60px;
  padding: 40px;
  text-align: left;
  display: flex;
  align-items: flex-start;
}

.process-timeline .process-step::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 80px;
  width: 2px;
  height: calc(100% + 40px);
  background: var(--thm-teal);
  opacity: 0.3;
}

.process-timeline .process-step:last-child::before {
  display: none;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--thm-teal);
  color: var(--thm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  z-index: 2;
}

.step-content {
  margin-left: 80px;
  flex: 1;
}

.step-content .step-icon {
  width: 60px;
  height: 60px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-content .step-icon i {
  color: var(--thm-teal);
  font-size: 24px;
}

.step-content h4 {
  color: var(--thm-black);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.step-content p {
  color: var(--thm-body-font-color);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 20px;
}

.step-features {
  list-style: none;
  padding: 0;
}

.step-features li {
  padding: 8px 0;
  color: var(--thm-body-font-color);
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.step-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--thm-teal);
  font-weight: bold;
}

.benefit-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--thm-white);
  border-radius: 15px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  border: 2px solid rgba(22, 165, 113, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 35px rgba(22, 165, 113, 0.15);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--thm-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon i {
  color: var(--thm-white);
  font-size: 28px;
}

.benefit-card h5 {
  color: var(--thm-black);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.benefit-card p {
  color: var(--thm-body-font-color);
  font-size: 16px;
  line-height: 26px;
}

/* Why Choose Us Page */
.advantage-card {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  border: 2px solid rgba(22, 165, 113, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 35px rgba(22, 165, 113, 0.15);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: var(--thm-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.advantage-icon i {
  color: var(--thm-white);
  font-size: 32px;
}

.advantage-card h4 {
  color: var(--thm-black);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.advantage-card p {
  color: var(--thm-body-font-color);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 25px;
}

.advantage-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.advantage-features li {
  padding: 8px 0;
  color: var(--thm-body-font-color);
  font-size: 15px;
  position: relative;
  padding-left: 25px;
}

.advantage-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--thm-teal);
  font-weight: bold;
  font-size: 18px;
}

.stats-section {
  background: var(--thm-teal);
  border-radius: 20px;
  padding: 60px 40px;
  margin: 60px 0;
}

.stat-item {
  text-align: center;
  color: var(--thm-white);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  color: var(--thm-teal);
}

.stat-number.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Counter Animation Support */
.stat-number[data-count] {
  opacity: 1;
  transform: translateY(0);
}

.stat-label {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.9;
}

.testimonial-card {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  border: 2px solid rgba(22, 165, 113, 0.1);
  height: 100%;
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  color: var(--thm-body-font-color);
  font-size: 16px;
  line-height: 28px;
  font-style: italic;
}

.testimonial-author h6 {
  color: var(--thm-black);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-author span {
  color: var(--thm-teal);
  font-size: 14px;
  font-weight: 500;
}

.certifications-section {
  background: var(--thm-bg-ling-green);
  border-radius: 20px;
  padding: 60px 40px;
  margin: 60px 0;
}

.cert-item {
  text-align: center;
  padding: 20px;
  background: var(--thm-white);
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(22, 165, 113, 0.08);
  transition: all 0.3s ease;
}

.cert-item:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.15);
}

.cert-icon {
  width: 60px;
  height: 60px;
  background: var(--thm-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.certifications-sec .cert-icon {
margin: 0 0 0 !important;
}

.cert-icon i {
  color: var(--thm-white);
  font-size: 24px;
}

.cert-item span {
  color: var(--thm-black);
  font-size: 14px;
  font-weight: 500;
}

/* Emergency Support Page */
.emergency-contact-card {
  background: linear-gradient(135deg, var(--thm-teal), #138f5e);
  border-radius: 20px;
  padding: 40px;
  color: var(--thm-white);
  text-align: center;
  box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.3);
}

.emergency-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.emergency-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}

.emergency-icon i {
  font-size: 36px;
  color: var(--thm-white);
}

.emergency-info h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.emergency-subtitle {
  font-size: 18px;
  opacity: 0.9;
}

.contact-methods {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-method {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact-method.primary {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.method-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.method-icon i {
  font-size: 24px;
  color: var(--thm-white);
}

.contact-method h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.emergency-phone {
  font-size: 24px;
  font-weight: 700;
  color: var(--thm-white);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.emergency-email {
  font-size: 18px;
  color: var(--thm-white);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.chat-btn {
  background: var(--thm-white);
  color: var(--thm-teal);
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chat-btn:hover {
  background: var(--thm-bg-ling-green);
  transform: translateY(-2px);
}

.contact-method p {
  font-size: 14px;
  opacity: 0.8;
}

.emergency-form-wrapper {
  background: var(--thm-white);
  border-radius: 20px;
  padding: 60px;
  margin: 40px 0;
  box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.12);
  border: 2px solid rgba(22, 165, 113, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  color: var(--thm-black);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.form-header p {
  color: var(--thm-body-font-color);
  font-size: 16px;
}

.emergency-submit-btn {
  background: var(--thm-teal) !important;
  color: var(--thm-white) !important;
  border: none;
  padding: 15px 40px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.emergency-submit-btn:hover {
  background: #138f5e !important;
  transform: translateY(-2px);
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.3);
}

.service-card.emergency {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  border: 2px solid rgba(22, 165, 113, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card.emergency:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 35px rgba(22, 165, 113, 0.15);
  border-color: var(--thm-teal);
}

.service-card.emergency .service-icon {
  width: 70px;
  height: 70px;
  background: var(--thm-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-card.emergency .service-icon i {
  color: var(--thm-white);
  font-size: 28px;
}

.service-card.emergency h5 {
  color: var(--thm-black);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card.emergency p {
  color: var(--thm-body-font-color);
  font-size: 16px;
  line-height: 26px;
}

.tip-card {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  border: 2px solid rgba(22, 165, 113, 0.1);
  height: 100%;
}

.tip-icon {
  width: 60px;
  height: 60px;
  background: var(--thm-bg-ling-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tip-icon i {
  color: var(--thm-teal);
  font-size: 24px;
}

.tip-card h5 {
  color: var(--thm-black);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tip-card ul {
  list-style: none;
  padding: 0;
}

.tip-card ul li {
  padding: 8px 0;
  color: var(--thm-body-font-color);
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.tip-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--thm-teal);
  font-weight: bold;
}

/* CTA Sections */
.process-cta, .choose-us-cta {
  background: var(--thm-bg-ling-green);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
}

.process-cta h3, .choose-us-cta h3 {
  color: var(--thm-black);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.process-cta p, .choose-us-cta p {
  color: var(--thm-body-font-color);
  font-size: 18px;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .assessment-form-wrapper,
  .emergency-form-wrapper {
    padding: 40px 30px;
    margin: 30px 0;
  }
  
  .process-timeline .process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-content {
    margin-left: 0;
    margin-top: 20px;
  }
  
  .emergency-header {
    flex-direction: column;
    text-align: center;
  }
  
  .emergency-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .contact-methods {
    flex-direction: column;
  }
  
  .contact-method.primary {
    transform: none;
  }
}

@media (max-width: 767px) {
  .stats-section,
  .certifications-section {
    padding: 40px 20px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .emergency-info h2 {
    font-size: 24px;
  }
  
  .emergency-phone {
    font-size: 20px;
  }
  
  /* Form spacing on mobile */
  .assessment-form-wrapper,
  .emergency-form-wrapper {
    padding: 30px 20px;
    margin: 20px 0;
  }
  
  .contact-field,
  .auth-field {
    margin-bottom: 20px;
  }
  
  .contact-field label,
  .auth-field label {
    margin-bottom: 10px;
  }
  
  /* Header Button Responsive */
  .btn-box {
    flex-direction: column !important;
    gap: 10px !important;
  }
  
  .btn-box .thm-btn {
    font-size: 14px !important;
    padding: 10px 20px !important;
  }
}

/*=============================
	26. Client Portal CSS
===============================*/

/* Portal Navigation */
.portal-nav {
  display: flex;
  justify-content: center;
  background: var(--thm-white);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  border: 2px solid rgba(22, 165, 113, 0.1);
  flex-wrap: wrap;
  gap: 15px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
  text-align: center;
}

.nav-item:hover {
  background: var(--thm-bg-ling-green);
  transform: translateY(-2px);
}

.nav-item.active {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.nav-icon {
  width: 40px;
  height: 40px;
  background: rgba(22, 165, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.nav-item.active .nav-icon {
  background: rgba(255, 255, 255, 0.2);
}

.nav-item .nav-icon i {
  color: var(--thm-teal);
  font-size: 18px;
  transition: all 0.3s ease;
}

.nav-item.active .nav-icon i {
  color: var(--thm-white);
}

.nav-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--thm-black);
  transition: all 0.3s ease;
}

.nav-item.active span {
  color: var(--thm-white);
}

/* Portal Content */
.portal-content {
  background: var(--thm-white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.12);
  border: 2px solid rgba(22, 165, 113, 0.1);
  min-height: auto;
}

/* Portal Sections */
.portal-support-sec,
.portal-projects-sec,
.portal-documents-sec,
.portal-billing-sec,
.portal-reports-sec,
.portal-settings-sec,
.portal-notifications-sec,
.portal-knowledge-base-sec,
.ticket-details-sec {
  padding: 60px 0;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Portal Stat Cards */
.portal-stat-card {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  border: 2px solid rgba(22, 165, 113, 0.1);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  height: 100%;
}

.portal-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 35px rgba(22, 165, 113, 0.15);
}

.portal-stat-card .stat-icon {
  width: 60px;
  height: 60px;
  background: var(--thm-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.portal-stat-card .stat-icon i {
  color: var(--thm-white);
  font-size: 24px;
}

.portal-stat-card .stat-info {
  flex: 1;
}

.portal-stat-card .stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--thm-black);
  line-height: 1;
  margin-bottom: 5px;
}

.portal-stat-card .stat-label {
  font-size: 14px;
  color: var(--thm-body-font-color);
  font-weight: 500;
}

/* Quick Actions */
.quick-actions {
  background: var(--thm-bg-ling-green);
  border-radius: 15px;
  padding: 30px;
}

.quick-actions h4 {
  color: var(--thm-black);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.action-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.action-btn {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: var(--thm-white);
  border-radius: 10px;
  text-decoration: none;
  color: var(--thm-black);
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 15px rgba(22, 165, 113, 0.08);
}

.action-btn:hover {
  background: var(--thm-teal);
  color: var(--thm-white);
  transform: translateY(-2px);
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.15);
}

.action-btn i {
  margin-right: 8px;
  font-size: 16px;
}

/* Portal Cards */
.portal-card {
  background: var(--thm-white);
  border-radius: 15px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  border: 2px solid rgba(22, 165, 113, 0.1);
  overflow: hidden;
  height: auto;
  min-height: auto;
}

.card-header {
  background: var(--thm-bg-ling-green);
  padding: 20px 25px;
  border-bottom: 1px solid rgba(22, 165, 113, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header h5 {
  color: var(--thm-black);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.card-content {
  padding: 25px;
}


/* Activity Items */
.activity-item {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid rgba(56, 56, 56, 0.1);
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-icon {
  width: 40px;
  height: 40px;
  background: var(--thm-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.activity-icon i {
  color: var(--thm-white);
  font-size: 16px;
}

.activity-info {
  flex: 1;
}

.activity-title {
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.activity-desc {
  color: var(--thm-body-font-color);
  font-size: 14px;
  margin-bottom: 5px;
}

.activity-time {
  color: var(--thm-teal);
  font-size: 12px;
  font-weight: 500;
}

/* Announcements */
.announcement-item {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid rgba(56, 56, 56, 0.1);
  position: relative;
}

.announcement-item:last-child {
  border-bottom: none;
}

.announcement-badge {
  background: var(--thm-teal);
  color: var(--thm-white);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  margin-right: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.announcement-content {
  flex: 1;
}

.announcement-title {
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.announcement-desc {
  color: var(--thm-body-font-color);
  font-size: 14px;
  margin-bottom: 5px;
}

.announcement-date {
  color: var(--thm-teal);
  font-size: 12px;
  font-weight: 500;
}

/* Support Tickets */
.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ticket-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  border: 2px solid rgba(22, 165, 113, 0.1);
}

.ticket-status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 20px;
  flex-shrink: 0;
}

.ticket-status.open {
  background: #ff6b6b;
  color: var(--thm-white);
}

.ticket-status.in-progress {
  background: #ffa500;
  color: var(--thm-white);
}

.ticket-status.resolved {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.ticket-info {
  flex: 1;
}

.ticket-id {
  color: var(--thm-teal);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.ticket-title {
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.ticket-desc {
  color: var(--thm-body-font-color);
  font-size: 14px;
  margin-bottom: 10px;
}

.ticket-meta {
  display: flex;
  gap: 15px;
}

.ticket-priority {
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}

.ticket-priority.high {
  background: #ff6b6b;
  color: var(--thm-white);
}

.ticket-priority.medium {
  background: #ffa500;
  color: var(--thm-white);
}

.ticket-priority.low {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.ticket-date {
  color: var(--thm-body-font-color);
  font-size: 12px;
}

.ticket-actions {
  margin-left: 20px;
}

/* Buttons */
.btn-primary, .btn-small {
  display: inline-block;
  padding: 8px 16px;
  background: var(--thm-teal);
  color: var(--thm-white);
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  padding: 10px 20px;
  font-size: 16px;
}

.btn-primary:hover, .btn-small:hover {
  background: #138f5e;
  transform: translateY(-1px);
}

/* Projects */
.project-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-item {
  padding: 25px;
  background: var(--thm-bg-ling-green);
  border-radius: 15px;
  border: 2px solid rgba(22, 165, 113, 0.1);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.project-title {
  color: var(--thm-black);
  font-size: 18px;
  font-weight: 600;
}

.project-status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.project-status.in-progress {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.project-status.planning {
  background: #ffa500;
  color: var(--thm-white);
}

.project-progress {
  margin-bottom: 15px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(22, 165, 113, 0.2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: var(--thm-teal);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-text {
  color: var(--thm-teal);
  font-size: 14px;
  font-weight: 600;
}

.project-details {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--thm-body-font-color);
}

.project-phase {
  color: var(--thm-black);
  font-weight: 500;
}

.project-deadline {
  color: var(--thm-teal);
  font-weight: 500;
}

.project-actions {
  display: flex;
  gap: 10px;
}

/* Documents */
.document-categories {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.category-item {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: var(--thm-bg-ling-green);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-item:hover {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.category-item.active {
  background: var(--thm-teal);
  color: var(--thm-white);
  border-color: var(--thm-teal);
}

.category-item i {
  margin-right: 8px;
  font-size: 14px;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box input {
  padding: 10px 40px 10px 15px;
  border: 2px solid rgba(22, 165, 113, 0.2);
  border-radius: 25px;
  width: 250px;
  font-size: 14px;
}

.search-box i {
  position: absolute;
  right: 15px;
  color: var(--thm-teal);
}

.document-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.document-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  border: 2px solid rgba(22, 165, 113, 0.1);
}

.document-icon {
  width: 50px;
  height: 50px;
  background: var(--thm-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.document-icon i {
  color: var(--thm-teal);
  font-size: 24px;
}

.document-info {
  flex: 1;
}

.document-name {
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.document-meta {
  color: var(--thm-body-font-color);
  font-size: 14px;
}

/* Billing */
.billing-summary {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--thm-bg-ling-green);
  border-radius: 15px;
  flex-wrap: wrap;
}

.summary-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.summary-label {
  color: var(--thm-body-font-color);
  font-size: 14px;
  margin-bottom: 8px;
}

.summary-amount {
  color: var(--thm-black);
  font-size: 24px;
  font-weight: 700;
}

.invoice-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.invoice-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  border: 2px solid rgba(22, 165, 113, 0.1);
}

.invoice-number {
  color: var(--thm-teal);
  font-size: 16px;
  font-weight: 600;
  margin-right: 20px;
  min-width: 80px;
}

.invoice-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.invoice-date {
  color: var(--thm-body-font-color);
  font-size: 14px;
}

.invoice-amount {
  color: var(--thm-black);
  font-size: 18px;
  font-weight: 600;
}

.invoice-status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin: 0 20px;
}

.invoice-status.paid {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.invoice-actions {
  display: flex;
  gap: 10px;
}

/* Reports */
.performance-metric {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(56, 56, 56, 0.1);
}

.performance-metric:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.metric-label {
  color: var(--thm-black);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.metric-value {
  color: var(--thm-teal);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.metric-chart {
  width: 100%;
  height: 8px;
  background: rgba(22, 165, 113, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.chart-bar {
  height: 100%;
  background: var(--thm-teal);
  border-radius: 4px;
  transition: height 0.3s ease;
}

.security-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(56, 56, 56, 0.1);
}

.security-item:last-child {
  border-bottom: none;
}

.security-icon {
  width: 40px;
  height: 40px;
  background: var(--thm-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.security-icon i {
  color: var(--thm-teal);
  font-size: 16px;
}

.security-info {
  flex: 1;
}

.security-title {
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.security-status {
  font-size: 14px;
  font-weight: 500;
}

.security-status.active {
  color: var(--thm-teal);
}

/* Responsive Design */
@media (max-width: 991px) {
  .portal-nav {
    flex-direction: column;
    gap: 10px;
  }
  
  .nav-item {
    flex-direction: row;
    justify-content: flex-start;
    min-width: auto;
    text-align: left;
  }
  
  .nav-icon {
    margin-right: 15px;
    margin-bottom: 0;
  }
  
  .portal-content {
    padding: 30px 20px;
  }
  
  .billing-summary {
    flex-direction: column;
    gap: 20px;
  }
  
  .invoice-info {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 767px) {
  .action-buttons {
    flex-direction: column;
  }
  
  .ticket-item, .invoice-item, .document-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .ticket-actions, .invoice-actions, .document-actions {
    margin-left: 0;
    width: 100%;
  }
  
  .project-actions {
    flex-direction: column;
  }
  
  .document-categories {
    flex-direction: column;
  }
  
  .search-box input {
    width: 100%;
  }
}

/*=============================
	27. Additional Portal Pages CSS
===============================*/

/* Portal Breadcrumb */
.portal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--thm-white);
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(22, 165, 113, 0.08);
  font-size: 14px;
}

.portal-breadcrumb a {
  color: var(--thm-teal);
  text-decoration: none;
  transition: all 0.3s ease;
}

.portal-breadcrumb a:hover {
  color: var(--thm-dark-green);
}

.portal-breadcrumb span {
  color: var(--thm-body-font-color);
}

.portal-breadcrumb .current {
  color: var(--thm-black);
  font-weight: 600;
}

/* Support Page Styles */
.ticket-stat-card {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  border: 2px solid rgba(22, 165, 113, 0.1);
  display: flex;
  align-items: center;
  height: 100%;
}

.ticket-stat-card .stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.ticket-stat-card .stat-icon.open {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
}

.ticket-stat-card .stat-icon.in-progress {
  background: rgba(255, 165, 0, 0.1);
  color: #ffa500;
}

.ticket-stat-card .stat-icon.resolved {
  background: rgba(22, 165, 113, 0.1);
  color: var(--thm-teal);
}

.ticket-stat-card .stat-icon.avg-time {
  background: rgba(22, 165, 113, 0.1);
  color: var(--thm-teal);
}

.ticket-stat-card .stat-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ticket-stat-card .stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--thm-black) !important;
  line-height: 1;
  margin-bottom: 5px;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}

.ticket-stat-card .stat-label {
  font-size: 14px;
  color: var(--thm-body-font-color) !important;
  font-weight: 500;
  display: block;
  opacity: 1;
  visibility: visible;
}

.ticket-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.support-ticket-item {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  border: 2px solid rgba(22, 165, 113, 0.1);
  transition: all 0.3s ease;
}

.support-ticket-item:hover {
  transform: translateY(-2px);
  box-shadow: 0px 12px 30px rgba(22, 165, 113, 0.12);
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.ticket-title-section {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ticket-status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.ticket-priority {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.ticket-body {
  margin-bottom: 15px;
}

.ticket-subject {
  color: var(--thm-black);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.ticket-description {
  color: var(--thm-body-font-color);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.ticket-meta-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--thm-body-font-color);
}

.meta-item i {
  color: var(--thm-teal);
}

.ticket-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(56, 56, 56, 0.1);
}

.assigned-tech {
  display: flex;
  align-items: center;
  gap: 10px;
}

.assigned-tech img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* Ticket Details Page */
.ticket-detail-header {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
}

.ticket-title-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 15px;
}

.ticket-title-row h2 {
  color: var(--thm-black);
  font-size: 26px;
  font-weight: 700;
  flex: 1;
  margin: 0;
}

.ticket-badges {
  display: flex;
  gap: 10px;
}

.ticket-meta-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--thm-body-font-color);
}

.ticket-id-large {
  color: var(--thm-teal);
  font-weight: 600;
}

.ticket-detail-card {
  background: var(--thm-white);
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  overflow: hidden;
}

.ticket-detail-card.response {
  border-left: 4px solid var(--thm-teal);
}

.ticket-detail-card .card-header {
  padding: 20px 25px;
  background: var(--thm-bg-ling-green);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-info img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.user-role {
  display: block;
  font-size: 12px;
  color: var(--thm-body-font-color);
}

.staff-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--thm-teal);
  color: var(--thm-white);
  border-radius: 10px;
  font-size: 10px;
  margin-left: 5px;
}

.time {
  font-size: 13px;
  color: var(--thm-body-font-color);
}

.ticket-detail-card .card-body {
  padding: 25px;
}

.ticket-detail-card .card-body p {
  margin-bottom: 15px;
}

.ticket-detail-card .card-footer {
  padding: 15px 25px;
  background: var(--thm-bg-ling-green);
  border-top: 1px solid rgba(56, 56, 56, 0.1);
}

.attachments {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.attachments a {
  color: var(--thm-teal);
  text-decoration: none;
  font-size: 14px;
}

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

.ticket-reply-form {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
}

.ticket-reply-form h4 {
  margin-bottom: 20px;
}

.form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.action-buttons-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.action-btn-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--thm-bg-ling-green);
  color: var(--thm-black);
}

.action-btn-full:hover {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.action-btn-full.success {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.action-btn-full.warning {
  background: #ffa500;
  color: var(--thm-white);
}

.action-btn-full.danger {
  background: #ff6b6b;
  color: var(--thm-white);
}

.action-btn-full.info {
  background: var(--thm-bg-ling-green);
  color: var(--thm-black);
}

.info-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(56, 56, 56, 0.1);
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  color: var(--thm-body-font-color);
  font-weight: 500;
}

.info-value {
  color: var(--thm-black);
  font-weight: 600;
}

.tech-profile {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.tech-profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.tech-info h6 {
  margin-bottom: 5px;
}

.tech-contact {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.tech-contact a {
  width: 35px;
  height: 35px;
  background: var(--thm-teal);
  color: var(--thm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tech-contact a:hover {
  background: var(--thm-dark-green);
}

.tech-stats {
  display: flex;
  gap: 20px;
}

.tech-stats .stat {
  flex: 1;
  text-align: center;
  padding: 15px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
}

.tech-stats .stat strong {
  display: block;
  font-size: 20px;
  color: var(--thm-teal);
  margin-bottom: 5px;
}

.help-article-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(56, 56, 56, 0.1);
}

.help-article-item:last-child {
  border-bottom: none;
}

.help-article-item i {
  color: var(--thm-teal);
}

.help-article-item a {
  color: var(--thm-black);
  text-decoration: none;
}

.help-article-item a:hover {
  color: var(--thm-teal);
}

/* Projects Page Styles */
.project-stat-card {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  border: 2px solid rgba(22, 165, 113, 0.1);
  display: flex;
  align-items: center;
  height: 100%;
}

.project-stat-card .stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.project-stat-card .stat-icon.active {
  background: rgba(22, 165, 113, 0.1);
  color: var(--thm-teal);
}

.project-stat-card .stat-icon.completed {
  background: rgba(22, 165, 113, 0.1);
  color: var(--thm-teal);
}

.project-stat-card .stat-icon.milestone {
  background: rgba(255, 165, 0, 0.1);
  color: #ffa500;
}

.project-stat-card .stat-icon.budget {
  background: rgba(22, 165, 113, 0.1);
  color: var(--thm-teal);
}

.project-stat-card .stat-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-stat-card .stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--thm-black) !important;
  line-height: 1;
  margin-bottom: 5px;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}

.project-stat-card .stat-label {
  font-size: 14px;
  color: var(--thm-body-font-color) !important;
  font-weight: 500;
  display: block;
  opacity: 1;
  visibility: visible;
}

.project-detail-card {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  border: 2px solid rgba(22, 165, 113, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.project-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 35px rgba(22, 165, 113, 0.15);
}

.project-card-header {
  margin-bottom: 20px;
}

.project-title-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.project-title-section h4 {
  color: var(--thm-black);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.project-status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.project-status-badge.completed {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.project-description {
  color: var(--thm-body-font-color);
  font-size: 14px;
  line-height: 1.6;
}

.project-progress-section {
  margin-bottom: 20px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.progress-percentage {
  color: var(--thm-teal);
  font-weight: 600;
}

.project-milestones {
  margin-bottom: 20px;
}

.project-milestones h6 {
  margin-bottom: 12px;
  font-size: 14px;
}

.milestone-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
}

.milestone-item i {
  font-size: 16px;
}

.milestone-item.completed i {
  color: var(--thm-teal);
}

.milestone-item.active i {
  color: #ffa500;
}

.milestone-item.pending i {
  color: #ccc;
}

.project-meta-section {
  margin-bottom: 20px;
  padding: 15px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
}

.project-meta-section .meta-item {
  display: flex;
  gap: 12px;
  padding: 8px 0;
}

.project-meta-section .meta-item i {
  color: var(--thm-teal);
  font-size: 18px;
  width: 20px;
}

.meta-label {
  display: block;
  font-size: 12px;
  color: var(--thm-body-font-color);
}

.meta-value {
  display: block;
  font-size: 14px;
  color: var(--thm-black);
  font-weight: 600;
}

.project-card-footer {
  display: flex;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid rgba(56, 56, 56, 0.1);
}

.btn-secondary {
  display: inline-block;
  padding: 8px 16px;
  background: var(--thm-bg-ling-green);
  color: var(--thm-black);
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid rgba(22, 165, 113, 0.2);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--thm-teal);
  color: var(--thm-white);
  border-color: var(--thm-teal);
}

/* Documents Page Styles */
.document-search-bar {
  display: flex;
  gap: 10px;
  background: var(--thm-white);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
}

.search-input-group {
  position: relative;
  flex: 1;
}

.search-input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--thm-teal);
}

.search-input-group input {
  width: 100%;
  padding: 12px 45px;
  border: 2px solid rgba(22, 165, 113, 0.2);
  border-radius: 10px;
  font-size: 14px;
}

.upload-btn {
  white-space: nowrap;
}

.document-categories-nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  background: var(--thm-white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
}

.category-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 20px;
  background: var(--thm-bg-ling-green);
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.category-nav-btn:hover {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.category-nav-btn.active {
  background: var(--thm-teal);
  color: var(--thm-white);
  border-color: var(--thm-teal);
}

.category-nav-btn i {
  font-size: 24px;
  margin-bottom: 8px;
}

.category-nav-btn .count {
  font-size: 12px;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin-top: 5px;
}

.document-section {
  margin-bottom: 40px;
}

.section-title {
  color: var(--thm-black);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title i {
  color: var(--thm-teal);
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.document-card {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  border: 2px solid rgba(22, 165, 113, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.3s ease;
}

.document-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 35px rgba(22, 165, 113, 0.15);
}

.document-icon {
  width: 50px;
  height: 50px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.document-icon i {
  font-size: 24px;
  color: var(--thm-teal);
}

.document-icon.pdf i {
  color: #ff6b6b;
}

.document-icon.word i {
  color: #2b579a;
}

.document-icon.excel i {
  color: #217346;
}

.document-icon.exe i {
  color: #666;
}

.document-card h5 {
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.document-meta {
  font-size: 12px;
  color: var(--thm-body-font-color);
}

.document-date {
  font-size: 12px;
  color: var(--thm-teal);
}

.document-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.action-icon {
  width: 35px;
  height: 35px;
  background: var(--thm-bg-ling-green);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-icon:hover {
  background: var(--thm-teal);
  color: var(--thm-white);
}

/* Billing Page Styles */
.billing-stat-card {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  border: 2px solid rgba(22, 165, 113, 0.1);
  text-align: center;
  height: 100%;
}

.billing-stat-card .stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.billing-stat-card .stat-icon.current {
  background: rgba(255, 165, 0, 0.1);
  color: #ffa500;
}

.billing-stat-card .stat-icon.paid {
  background: rgba(22, 165, 113, 0.1);
  color: var(--thm-teal);
}

.billing-stat-card .stat-icon.due {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
}

.billing-stat-card .stat-icon.total {
  background: rgba(22, 165, 113, 0.1);
  color: var(--thm-teal);
}

.billing-stat-card .stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.billing-stat-card .stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--thm-black) !important;
  line-height: 1;
  margin: 10px 0 5px 0;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}

.billing-stat-card .stat-label {
  font-size: 14px;
  color: var(--thm-body-font-color) !important;
  font-weight: 500;
  display: block;
  opacity: 1;
  visibility: visible;
  margin-bottom: 5px;
}

.stat-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}

.stat-badge.due {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
}

.stat-date {
  font-size: 12px;
  color: var(--thm-body-font-color);
}

.badge-due {
  padding: 6px 12px;
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.invoice-detail-card {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
}

.invoice-header-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(56, 56, 56, 0.1);
}

.invoice-header-row h4 {
  margin: 0 0 5px 0;
}

.invoice-date {
  font-size: 14px;
  color: var(--thm-body-font-color);
}

.invoice-amount-section {
  text-align: right;
}

.amount-label {
  display: block;
  font-size: 12px;
  color: var(--thm-body-font-color);
  margin-bottom: 5px;
}

.amount-value {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--thm-black);
}

.invoice-items {
  margin-bottom: 30px;
}

.item-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(56, 56, 56, 0.1);
}

.item-description strong {
  display: block;
  color: var(--thm-black);
  margin-bottom: 5px;
}

.item-description p {
  font-size: 13px;
  color: var(--thm-body-font-color);
  margin: 0;
}

.item-amount {
  font-size: 18px;
  font-weight: 600;
  color: var(--thm-black);
}

.invoice-total-section {
  padding: 20px 0;
  margin-bottom: 25px;
  border-top: 2px solid rgba(56, 56, 56, 0.1);
}

.total-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 16px;
}

.total-row.grand-total {
  font-size: 20px;
  font-weight: 700;
  color: var(--thm-black);
  padding-top: 15px;
  border-top: 2px solid var(--thm-teal);
}

.invoice-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.history-invoice-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  margin-bottom: 10px;
}

.invoice-info-col {
  display: flex;
  flex-direction: column;
  min-width: 100px;
}

.invoice-number {
  color: var(--thm-teal);
  font-weight: 600;
  font-size: 14px;
}

.invoice-services {
  flex: 1;
  padding: 0 15px;
}

.invoice-amount-col {
  font-size: 16px;
  font-weight: 600;
  color: var(--thm-black);
  min-width: 100px;
  text-align: right;
}

.invoice-status-col {
  min-width: 80px;
  text-align: center;
}

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}

.status-badge.paid {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.invoice-actions-col {
  display: flex;
  gap: 8px;
  margin-left: 15px;
}

.payment-method-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  margin-bottom: 10px;
  border: 2px solid transparent;
}

.payment-method-item.active {
  border-color: var(--thm-teal);
}

.payment-icon {
  font-size: 32px;
  color: var(--thm-teal);
}

.payment-info {
  flex: 1;
}

.payment-info strong {
  display: block;
  margin-bottom: 3px;
}

.payment-info span {
  font-size: 13px;
  color: var(--thm-body-font-color);
}

.primary-badge {
  padding: 4px 10px;
  background: var(--thm-teal);
  color: var(--thm-white);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}

.billing-info-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(56, 56, 56, 0.1);
}

.billing-info-item:last-child {
  border-bottom: none;
}

.quick-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-link {
  color: var(--thm-teal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.btn-link:hover {
  text-decoration: underline;
}

/* Reports Page Styles */
.report-metric-card {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  border: 2px solid rgba(22, 165, 113, 0.1);
  text-align: center;
}

.report-metric-card .metric-icon {
  width: 60px;
  height: 60px;
  background: rgba(22, 165, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--thm-teal);
}

.report-metric-card .metric-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--thm-black);
  margin-bottom: 5px;
}

.report-metric-card .metric-label {
  font-size: 14px;
  color: var(--thm-body-font-color);
  margin-bottom: 10px;
}

.metric-trend {
  font-size: 13px;
  font-weight: 500;
}

.metric-trend.positive {
  color: var(--thm-teal);
}

.metric-trend.warning {
  color: #ffa500;
}

.metric-trend.neutral {
  color: var(--thm-body-font-color);
}

.filter-select {
  padding: 8px 15px;
  border: 2px solid rgba(22, 165, 113, 0.2);
  border-radius: 8px;
  font-size: 14px;
}

.performance-chart-section {
  margin-bottom: 30px;
}

.chart-placeholder {
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  padding: 20px;
  height: 200px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 160px;
  gap: 10px;
}

.bar-item {
  flex: 1;
  background: var(--thm-teal);
  border-radius: 8px 8px 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px;
  min-height: 50px;
}

.bar-label {
  font-size: 12px;
  color: var(--thm-black);
  margin-top: 10px;
}

.bar-value {
  font-size: 11px;
  color: var(--thm-white);
  font-weight: 600;
}

.performance-metrics-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.metric-grid-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.metric-name {
  min-width: 120px;
  font-size: 14px;
  color: var(--thm-black);
}

.metric-bar-container {
  flex: 1;
  height: 8px;
  background: rgba(22, 165, 113, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.metric-bar {
  height: 100%;
  background: var(--thm-teal);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.metric-percent {
  min-width: 50px;
  text-align: right;
  font-weight: 600;
  color: var(--thm-teal);
}

.ticket-summary-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
  gap: 15px;
}

.summary-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--thm-white);
  margin-bottom: 10px;
}

.open-circle {
  background: #ff6b6b;
}

.progress-circle {
  background: #ffa500;
}

.resolved-circle {
  background: var(--thm-teal);
}

.avg-circle {
  background: var(--thm-green);
  font-size: 18px;
}

/* Ensure stat-circle content is always visible */
.stat-circle span {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
  color: var(--thm-white) !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}

.ticket-summary-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.summary-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.summary-stat-item .stat-label {
  font-size: 14px;
  color: var(--thm-body-font-color);
  font-weight: 500;
  margin-top: 5px;
}

.ticket-category-breakdown {
  padding-top: 25px;
  border-top: 2px solid rgba(56, 56, 56, 0.1);
}

.ticket-category-breakdown h6 {
  margin-bottom: 20px;
}

.category-bar-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.category-name {
  min-width: 140px;
  font-size: 14px;
  color: var(--thm-black);
}

.category-bar-bg {
  flex: 1;
  height: 8px;
  background: rgba(22, 165, 113, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.category-bar-fill {
  height: 100%;
  background: var(--thm-teal);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.category-count {
  min-width: 50px;
  text-align: right;
  font-weight: 600;
  color: var(--thm-teal);
}

.bandwidth-summary {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
  gap: 15px;
}

.bandwidth-stat {
  text-align: center;
  padding: 15px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  flex: 1;
}

.bandwidth-stat .stat-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--thm-teal);
  margin-bottom: 5px;
}

.bandwidth-stat .stat-label {
  font-size: 14px;
  color: var(--thm-body-font-color);
}

.bandwidth-chart {
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  padding: 20px;
  height: 150px;
}

.chart-line {
  height: 110px;
}

.line-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 100%;
  gap: 8px;
}

.line-bar {
  flex: 1;
  background: var(--thm-teal);
  border-radius: 4px 4px 0 0;
  min-height: 20px;
}

.security-status-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(56, 56, 56, 0.1);
}

.security-status-item:last-child {
  border-bottom: none;
}

.security-status-item .status-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-status-item .status-icon.active {
  background: rgba(22, 165, 113, 0.1);
  color: var(--thm-teal);
}

.security-status-item .status-icon.warning {
  background: rgba(255, 165, 0, 0.1);
  color: #ffa500;
}

.status-info {
  flex: 1;
}

.status-info strong {
  display: block;
  margin-bottom: 3px;
}

.status-text {
  font-size: 13px;
}

.status-text.active {
  color: var(--thm-teal);
}

.status-text.warning {
  color: #ffa500;
}

.backup-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(56, 56, 56, 0.1);
}

.backup-item:last-child {
  border-bottom: none;
}

.backup-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.backup-item.success .backup-icon {
  background: rgba(22, 165, 113, 0.1);
  color: var(--thm-teal);
}

.backup-info {
  flex: 1;
}

.backup-info strong {
  display: block;
  margin-bottom: 3px;
}

.backup-info span {
  display: block;
  font-size: 12px;
  color: var(--thm-body-font-color);
}

.backup-size {
  color: var(--thm-teal);
  font-weight: 600;
}

.download-report-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.report-download-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: var(--thm-bg-ling-green);
  border: 2px solid rgba(22, 165, 113, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.report-download-btn:hover {
  background: var(--thm-teal);
  color: var(--thm-white);
  border-color: var(--thm-teal);
}

.report-download-btn i {
  color: var(--thm-teal);
}

.report-download-btn:hover i {
  color: var(--thm-white);
}

/* Settings Page Styles */
.settings-nav {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
}

.settings-nav .nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 5px;
}

.settings-nav .nav-item:hover {
  background: var(--thm-bg-ling-green);
}

.settings-nav .nav-item.active {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.settings-nav .nav-item i {
  color: var(--thm-teal);
}

.settings-nav .nav-item.active i {
  color: var(--thm-white);
}

.settings-section {
  display: none;
}

.settings-section.active {
  display: block;
}

.profile-photo-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.current-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.current-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-actions {
  display: flex;
  gap: 10px;
}

.two-fa-status {
  padding: 20px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
}

.status-badge-large {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(22, 165, 113, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
}

.status-badge-large.enabled {
  background: rgba(22, 165, 113, 0.1);
  color: var(--thm-teal);
}

.status-badge-large i {
  font-size: 24px;
}

.session-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  margin-bottom: 10px;
}

.session-icon {
  width: 45px;
  height: 45px;
  background: var(--thm-teal);
  color: var(--thm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.session-info {
  flex: 1;
}

.session-info strong {
  display: block;
  margin-bottom: 3px;
}

.session-info span {
  display: block;
  font-size: 12px;
  color: var(--thm-body-font-color);
}

.current-badge {
  padding: 4px 10px;
  background: var(--thm-teal);
  color: var(--thm-white);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}

.btn-danger-small {
  padding: 6px 12px;
  background: #ff6b6b;
  color: var(--thm-white);
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

#inviteModal{
  z-index: 9999;
}

/* ==========================================
   28. Portal Project Details Specific Styles
   ========================================== */

/* Portal Project Details Specific Styles */
.portal-project-details-sec {
    padding: 60px 0;
}

.project-status {
    display: flex;
    gap: 10px;
    align-items: center;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.in-progress {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-badge.completed {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-badge.pending {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.priority-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.priority-badge.medium {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.project-overview h6 {
    color: var(--thm-black);
    font-weight: 600;
    margin-bottom: 15px;
}

.project-description {
    margin-bottom: 30px;
}

.project-description p {
    color: var(--thm-body-font-color);
    line-height: 1.6;
}

.project-timeline {
    margin-top: 30px;
}

.timeline-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(22, 165, 113, 0.1);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-date {
    min-width: 120px;
    font-weight: 600;
    color: var(--thm-black);
}

.timeline-content {
    flex: 1;
    margin: 0 20px;
    color: var(--thm-body-font-color);
}

.timeline-status {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.timeline-status.completed {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.timeline-status.current {
    background: rgba(22, 165, 113, 0.1);
    color: var(--thm-teal);
}

.timeline-status.pending {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.progress-overview {
    space-y: 20px;
}

.progress-item {
    margin-bottom: 20px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.progress-bar {
    height: 8px;
    background: rgba(22, 165, 113, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--thm-teal);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.project-files {
    space-y: 15px;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--thm-bg-ling-green);
    border-radius: 10px;
    margin-bottom: 15px;
}

.file-icon {
    width: 40px;
    height: 40px;
    background: var(--thm-teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    margin-right: 15px;
}

.file-info {
    flex: 1;
}

.file-name {
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 4px;
}

.file-meta {
    font-size: 12px;
    color: var(--thm-body-font-color);
}

.project-info {
    space-y: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(22, 165, 113, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: var(--thm-body-font-color);
}

.info-value {
    font-weight: 600;
    color: var(--thm-black);
}

.team-members {
    space-y: 15px;
}

.team-member {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.member-avatar {
    width: 40px;
    height: 40px;
    background: var(--thm-bg-ling-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-teal);
    margin-right: 15px;
}

.member-name {
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 2px;
}

.member-role {
    font-size: 12px;
    color: var(--thm-body-font-color);
}

.updates-list {
    space-y: 15px;
}

.update-item {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(22, 165, 113, 0.1);
}

.update-item:last-child {
    border-bottom: none;
}

.update-icon {
    width: 30px;
    height: 30px;
    background: var(--thm-bg-ling-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-teal);
    margin-right: 15px;
    flex-shrink: 0;
}

.update-text {
    font-size: 14px;
    color: var(--thm-black);
    margin-bottom: 4px;
}

.update-time {
    font-size: 12px;
    color: var(--thm-body-font-color);
}

/* Task Management Styles */
.project-tasks {
    space-y: 15px;
}

.task-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--thm-bg-ling-green);
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.task-item:hover {
    background: rgba(22, 165, 113, 0.05);
}

.task-checkbox {
    margin-right: 15px;
}

.task-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--thm-teal);
}

.task-content {
    flex: 1;
}

.task-title {
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 5px;
}

.task-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--thm-body-font-color);
}

.task-assignee {
    display: flex;
    align-items: center;
    gap: 5px;
}

.task-status {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.task-status.completed {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.task-status.in-progress {
    background: rgba(22, 165, 113, 0.1);
    color: var(--thm-teal);
}

.task-status.pending {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* Milestones Timeline Styles */
.milestones-timeline {
    position: relative;
    padding-left: 30px;
}

.milestones-timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(22, 165, 113, 0.2);
}

.milestone-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.milestone-icon {
    position: absolute;
    left: -22px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--thm-white);
    z-index: 2;
}

.milestone-item.completed .milestone-icon {
    background: #28a745;
}

.milestone-item.current .milestone-icon {
    background: var(--thm-teal);
}

.milestone-item.pending .milestone-icon {
    background: #6c757d;
}

.milestone-content {
    flex: 1;
}

.milestone-title {
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 5px;
    margin-left: 14px;
}

.milestone-date {
    font-size: 12px;
    color: var(--thm-body-font-color);
    margin-bottom: 8px;
}

.milestone-description {
    font-size: 14px;
    color: var(--thm-body-font-color);
    line-height: 1.5;
}

/* Project Statistics Styles */
.project-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--thm-bg-ling-green);
    border-radius: 10px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--thm-teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    margin-right: 15px;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--thm-teal);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--thm-body-font-color);
    margin-top: 2px;
}

/* Budget Overview Styles */
.budget-overview {
    space-y: 15px;
}

.budget-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(22, 165, 113, 0.1);
}

.budget-item:last-of-type {
    border-bottom: none;
}

.budget-label {
    font-weight: 500;
    color: var(--thm-body-font-color);
}

.budget-amount {
    font-weight: 700;
    color: var(--thm-black);
    font-size: 16px;
}

.budget-progress {
    margin-top: 15px;
}

.progress-text {
    text-align: center;
    font-size: 12px;
    color: var(--thm-body-font-color);
    margin-top: 8px;
}

/* Project Risks Styles */
.risks-list {
    space-y: 15px;
}

.risk-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.risk-item.low {
    background: rgba(40, 167, 69, 0.05);
    border-left: 4px solid #28a745;
}

.risk-item.medium {
    background: rgba(255, 193, 7, 0.05);
    border-left: 4px solid #ffc107;
}

.risk-item.high {
    background: rgba(220, 53, 69, 0.05);
    border-left: 4px solid #dc3545;
}

.risk-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.risk-item.low .risk-icon {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.risk-item.medium .risk-icon {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.risk-item.high .risk-icon {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.risk-title {
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 5px;
}

.risk-description {
    font-size: 12px;
    color: var(--thm-body-font-color);
    line-height: 1.4;
}

/* ==========================================
   29. Homepage V2 Styles
   ========================================== */

/* Modern Hero Section V2 */
.hero-sec-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('assets/images/newsletter/bg.jpg');
    overflow: hidden;
}

.hero-sec-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2316a571" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.01"/><circle cx="10" cy="90" r="1" fill="%23ffffff" opacity="0.01"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

/* Subtle floating circles for hero */
.hero-sec-v2 .floating-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.hero-sec-v2 .circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    opacity: 0.05;
    animation: gentleFloat 20s ease-in-out infinite;
}

.hero-sec-v2 .circle-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.hero-sec-v2 .circle-2 {
    width: 40px;
    height: 40px;
    top: 70%;
    right: 20%;
    animation-delay: 7s;
}

.hero-sec-v2 .circle-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 80%;
    animation-delay: 14s;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content-v2 {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(22, 165, 113, 0.1);
    border: 1px solid rgba(22, 165, 113, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--thm-teal);
}

.badge-icon {
    font-size: 16px;
}

.hero-title-v2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--thm-white);
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.thm-btn-v2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    color: var(--thm-white);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.thm-btn-v2:hover::before {
    left: 100%;
}

.thm-btn-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(22, 165, 113, 0.3);
    color: var(--thm-white);
}

.play-btn-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--thm-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.play-btn-v2:hover {
    color: var(--thm-teal);
    transform: translateY(-2px);
}

.play-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--thm-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-btn-v2:hover .play-icon {
    border-color: var(--thm-teal);
    background: var(--thm-teal);
}

.play-text {
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    background: rgba(22, 165, 113, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px 15px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    display: block !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    /* color: var(--thm-white) !important; */
    line-height: 1 !important;
    margin-bottom: 5px !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
}

.stat-label {
    font-size: 14px;
    color: var(--thm-teal);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.hero-main-image {
    position: relative;
    z-index: 2;
}

.hero-main-image img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(22, 165, 113, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--thm-black);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.floating-card i {
    font-size: 20px;
    color: var(--thm-white);
}
.hero-image-wrapper .floating-card i {
    color: var(--thm-teal);
}

.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: 5%;
    animation-delay: 1s;
}

.card-3 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Enhanced About Section V2 */
/* About Section V3 - Modern Design */
.about-sec-v3 {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-sec-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(22, 165, 113, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(22, 165, 113, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-header {
    margin-bottom: 60px;
}

.about-header .section-description {
    font-size: 18px;
    color: var(--thm-body-font-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Statistics Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.about-stats .stat-item {
    text-align: center;
    padding: 25px 20px;
    background: var(--thm-white);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(22, 165, 113, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(22, 165, 113, 0.15);
    border-color: var(--thm-teal);
}

.about-stats .stat-number {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--thm-teal) !important;
    line-height: 1 !important;
    margin-bottom: 8px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: all 0.3s ease !important;
    order: 1;
}

.about-stats .stat-label {
    font-size: 14px;
    color: var(--thm-body-font-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    order: 2;
}

/* Feature Cards */
.about-features-v3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--thm-white);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(22, 165, 113, 0.1);
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(22, 165, 113, 0.15);
    border-color: var(--thm-teal);
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--thm-teal);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(22, 165, 113, 0.3);
}

.feature-card .feature-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 8px;
}

.feature-card .feature-content p {
    color: var(--thm-body-font-color);
    line-height: 1.6;
    margin: 0;
}

/* Visual Section */
.about-visual-v3 {
    position: relative;
}

.about-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--thm-white);
    padding: 20px;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 8px 32px rgba(22, 165, 113, 0.15), 
                0 0 20px rgba(22, 165, 113, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(22, 165, 113, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 6s ease-in-out infinite;
    min-width: 160px;
    max-height: 70px;
    overflow: hidden;
}

.floating-card .card-icon {
    width: 40px;
    height: 40px;
    background: var(--thm-teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(22, 165, 113, 0.4),
                0 0 10px rgba(22, 165, 113, 0.2);
}

.floating-card .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40px;
}

.floating-card .card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 2px;
    line-height: 1.2;
}

.floating-card .card-desc {
    font-size: 11px;
    color: var(--thm-body-font-color);
    line-height: 1.2;
    opacity: 0.8;
}

.floating-card.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 50%;
    left: -15%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 15%;
    right: -5%;
    animation-delay: 4s;
}


@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.floating-card:hover {
    animation-play-state: paused;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(22, 165, 113, 0.25), 
                0 0 25px rgba(22, 165, 113, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(22, 165, 113, 0.5);
    background: rgba(255, 255, 255, 0.98);
}

/* CTA Section */
.about-cta {
    margin-top: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.about-cta .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--thm-white);
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .thm-btn {
    background: var(--thm-white);
    color: var(--thm-white);
    border: 2px solid var(--thm-white);
}

.cta-buttons .thm-btn:hover {
    background: transparent;
    color: var(--thm-teal);
    border-color: var(--thm-teal);
}

.cta-buttons .thm-btn-outline {
    background: transparent;
    color: var(--thm-teal);
    border: 2px solid var(--thm-teal);
}

.cta-buttons .thm-btn-outline:hover {
    background: var(--thm-white);
    color: var(--thm-teal);
    border-color: var(--thm-teal);
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-stats .stat-item {
        padding: 20px 15px;
    }
    
    .about-stats .stat-number {
        font-size: 2rem;
    }
    
    .about-visual-v3 .floating-cards {
        display: block !important;
    }
    
    .about-visual-v3 .floating-card {
        display: block !important;
        animation: gentleFloat 6s ease-in-out infinite !important;
    }
    
    .about-cta {
        padding: 40px 20px;
    }
    
    .about-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .thm-btn,
    .cta-buttons .thm-btn-outline {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .about-sec-v3 {
        padding: 60px 0;
    }
    
    .about-stats {
       
        gap: 15px;
    }
    .about-actions{
      justify-content: center;
    }
    .about-stats .stat-item {
        padding: 15px;
    }
    
    .about-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .about-visual-v3 .floating-cards {
        display: block !important;
    }
    .about-visual-v3 .floating-cards .floating-card .card-content {
      display: none !important;

      }
    
    .about-visual-v3 .floating-card {
        display: block !important;
        animation: gentleFloat 6s ease-in-out infinite !important;
        position: absolute !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(22, 165, 113, 0.3) !important;
        border-radius: 12px !important;
        padding: 12px !important;
        box-shadow: 0 8px 32px rgba(22, 165, 113, 0.15) !important;
        min-width: 120px !important;
    }
    
    .feature-card {
        padding: 20px;
        gap: 15px;
    }
    
    .feature-card .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .feature-card .feature-content h5 {
        font-size: 16px;
    }
    
    .about-cta {
        padding: 30px 15px;
    }
    
    .about-cta h3 {
        font-size: 1.3rem;
    }
    
    .about-cta p {
        font-size: 16px;
    }

    .featured-blog-post{
      flex-direction: column-reverse;
    }
    .featured-blog-post .featured-meta{
      justify-content: flex-end !important;
    }
    .featured-blog-post .featured-title{
      margin-top: 12px;
    }
    .featured-blog-post .featured-footer{
      flex-wrap: wrap;
      justify-content: center;
    }
}

.section-badge {
    display: inline-block;
    background: rgba(22, 165, 113, 0.1);
    color: var(--thm-teal);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title-v2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--thm-black);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--thm-body-font-color);
    margin-bottom: 30px;
}

.about-features {
    margin-bottom: 30px;
}

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

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    font-size: 16px;
    flex-shrink: 0;
}

.feature-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 14px;
    color: var(--thm-body-font-color);
    margin: 0;
}

.about-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thm-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border: 2px solid var(--thm-teal);
    color: var(--thm-teal);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.thm-btn-outline:hover {
    background: var(--thm-teal);
    color: var(--thm-white);
    transform: translateY(-2px);
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-main-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    color: var(--thm-white);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(22, 165, 113, 0.3);
    z-index: 3;
}

.exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    font-weight: 500;
}

/* Modern Services Section V2 */
/* Services Section V3 - Modern Design */
.service-sec-v3 {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf4 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.service-sec-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2316a571" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

/* Subtle floating circles for services */
.service-sec-v3 .floating-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.service-sec-v3 .circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    opacity: 0.04;
    animation: gentleFloat 25s ease-in-out infinite;
}

.service-sec-v3 .circle-1 {
    width: 50px;
    height: 50px;
    top: 15%;
    left: 10%;
    animation-delay: 3s;
}

.service-sec-v3 .circle-2 {
    width: 70px;
    height: 70px;
    top: 60%;
    right: 15%;
    animation-delay: 10s;
}

.service-sec-v3 .circle-3 {
    width: 35px;
    height: 35px;
    top: 85%;
    left: 25%;
    animation-delay: 17s;
}

/* Services Header */
.services-header {
    margin-bottom: 60px;
}

.services-header .section-description {
    font-size: 18px;
    color: var(--thm-body-font-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Service Cards */
.featured-service-card {
    background: var(--thm-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(22, 165, 113, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.featured-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--thm-teal) 0%, var(--thm-green) 100%);
}

.featured-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(22, 165, 113, 0.15);
    border-color: var(--thm-teal);
}

.service-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(22, 165, 113, 0.1);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--thm-teal);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(22, 165, 113, 0.3);
}

.service-stats {
    display: flex;
    gap: 20px;
}

.service-stats .stat-item {
    text-align: center;
}

.service-stats .stat-number {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--thm-teal) !important;
    display: block !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.service-stats .stat-label {
    font-size: 12px !important;
    color: var(--thm-body-font-color) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-weight: 500 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.featured-service-card .service-content {
    position: relative;
    z-index: 2;
}

.featured-service-card .service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-service-card .service-description {
    color: var(--thm-body-font-color);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 16px;
}

.featured-service-card .service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.featured-service-card .feature-tag {
    background: rgba(22, 165, 113, 0.15) !important;
    color: var(--thm-teal) !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    border: 1px solid rgba(22, 165, 113, 0.3) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card-v3 {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(22, 165, 113, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-v3:hover::before {
    transform: scaleX(1);
}

.service-card-v3:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(22, 165, 113, 0.15);
    border-color: var(--thm-teal);
}

.service-card-v3 .service-icon {
    width: 60px;
    height: 60px;
    background: var(--thm-teal);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(22, 165, 113, 0.3);
}

.service-card-v3 .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-v3 .service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-v3 .service-description {
    color: var(--thm-body-font-color);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.service-card-v3 .service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.service-card-v3 .feature-tag {
    background: rgba(22, 165, 113, 0.15) !important;
    color: var(--thm-teal) !important;
    padding: 4px 10px !important;
    border-radius: 15px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    border: 1px solid rgba(22, 165, 113, 0.3) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card-v3 .service-link {
    align-self: flex-start;
    width: 45px;
    height: 45px;
    background: rgba(22, 165, 113, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-teal);
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(22, 165, 113, 0.2);
}

.service-card-v3 .service-link:hover {
    background: var(--thm-teal);
    color: var(--thm-white);
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(22, 165, 113, 0.3);
}

/* Services CTA */
.services-cta {
    margin-top: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--thm-white) 0%, rgba(22, 165, 113, 0.02) 100%);
    border-radius: 24px;
    border: 1px solid rgba(22, 165, 113, 0.1);
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%2316a571" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.services-cta .cta-content {
    position: relative;
    z-index: 2;
}

.services-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 15px;
}

.services-cta p {
    font-size: 18px;
    color: var(--thm-body-font-color);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 991px) {
    .featured-service-card {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .service-visual {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .service-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .services-cta {
        padding: 40px 20px;
    }
    
    .services-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .thm-btn,
    .cta-buttons .thm-btn-outline {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .service-sec-v3 {
        padding: 60px 0;
    }
    
    .featured-service-card {
        padding: 25px;
    }
    
    .featured-service-card .service-title {
        font-size: 1.5rem;
    }
    
    .service-icon-large {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .service-stats {
        gap: 15px;
    }
    
    .service-stats .stat-number {
        font-size: 1.3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card-v3 {
        padding: 25px;
    }
    
    .service-card-v3 .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .service-card-v3 .service-title {
        font-size: 1.2rem;
    }
    
    .services-cta {
        padding: 30px 15px;
    }
    
    .services-cta h3 {
        font-size: 1.3rem;
    }
    
    .services-cta p {
        font-size: 16px;
    }
}

/* Legacy Service Card V2 Styles */
.service-card-v2 {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(22, 165, 113, 0.1);
    height: 100%;
}

.service-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(22, 165, 113, 0.15);
    border-color: var(--thm-teal);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--thm-white);
    font-size: 2rem;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 15px;
}

.service-description {
    color: var(--thm-body-font-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-tag {
    background: rgba(22, 165, 113, 0.1);
    color: var(--thm-teal);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--thm-teal);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: var(--thm-green);
}

/* Enhanced Newsletter Section V2 */
.newsletter-sec-v2 {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 15px;
    line-height: 1.3;
}

.newsletter-description {
    color: var(--thm-body-font-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.newsletter-form {
    position: relative;
}

.newsletter-form-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    background: var(--thm-white);
    border-radius: 50px;
    padding: 8px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); */
    max-width: 500px;
    margin: 0 auto;
    flex-direction: column;
}

.form-group input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    background: transparent;
}

.form-group input::placeholder {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    color: var(--thm-white);
    border: none;
    border-radius: 50px;
    padding: 18px 35px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(22, 165, 113, 0.4);
}

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

.newsletter-note {
    color: #6c757d;
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 0;
    text-align: center;
}

/* Modern Projects Section V2 - Masonry Grid */
.project-sec-v2 {
    background: var(--thm-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.project-sec-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2316a571" stroke-width="0.5" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

/* Subtle floating circles for projects */
.project-sec-v2 .floating-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.project-sec-v2 .circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    opacity: 0.04;
    animation: gentleFloat 28s ease-in-out infinite;
}

.project-sec-v2 .circle-1 {
    width: 55px;
    height: 55px;
    top: 20%;
    left: 20%;
    animation-delay: 2s;
}

.project-sec-v2 .circle-2 {
    width: 40px;
    height: 40px;
    top: 70%;
    right: 25%;
    animation-delay: 12s;
}

.project-sec-v2 .circle-3 {
    width: 65px;
    height: 65px;
    top: 45%;
    left: 80%;
    animation-delay: 22s;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    position: relative;
    z-index: 4;
}

.filter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px 20px;
    border-radius: 12px;
    position: relative;
    min-width: 120px;
    z-index: 4;
}

.filter-item:hover {
    background: rgba(22, 165, 113, 0.05);
}

.filter-item.active {
    background: rgba(22, 165, 113, 0.1);
}

.filter-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--thm-teal);
    border-radius: 2px;
}

.filter-icon {
    width: 40px;
    height: 40px;
    background: rgba(22, 165, 113, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--thm-teal);
    transition: all 0.3s ease;
}

.filter-item.active .filter-icon {
    background: var(--thm-teal);
    color: var(--thm-white);
}

.filter-content {
    text-align: center;
}

.filter-content h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--thm-black);
    transition: all 0.3s ease;
}

.filter-item.active .filter-content h6 {
    color: var(--thm-teal);
}

.filter-content span {
    font-size: 14px;
    color: var(--thm-body-font-color);
    font-weight: 400;
}

/* Masonry Grid Layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    grid-auto-flow: dense;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
}

.project-card-v2 {
    background: var(--thm-white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(22, 165, 113, 0.1);
    position: relative;
    cursor: pointer;
    min-height: 240px;
    z-index: 3;
}

.project-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Grid Span Variations */
.project-card-v2.span-2 {
    grid-row: span 2;
    min-height: 500px;
}

.project-card-v2.tall {
    grid-row: span 2;
    min-height: 500px;
}

.project-card-v2.wide {
    grid-column: span 2;
}

/* Project Image */
.project-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 240px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}

.project-card-v2:hover .project-image img {
    transform: scale(1.05);
}

/* Make entire card clickable */
.project-card-v2 {
    text-decoration: none;
    color: inherit;
}

.project-card-v2:hover {
    text-decoration: none;
    color: inherit;
}

/* Project Content */
.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 25px 25px;
    color: var(--thm-white);
    z-index: 3;
}

.project-category {
    color: var(--thm-white);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.project-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--thm-white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.project-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 0;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--thm-white);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Enhanced Business Process Section V2 */
.process-step-v2 {
    text-align: center;
    padding: 40px 30px;
    background: var(--thm-white);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.process-step-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(22, 165, 113, 0.1), transparent);
    transition: all 0.6s ease;
}

.process-step-v2:hover::before {
    left: 100%;
}

.process-step-v2:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(22, 165, 113, 0.2);
    border-color: var(--thm-teal);
    background: linear-gradient(135deg, var(--thm-white) 0%, rgba(22, 165, 113, 0.02) 100%);
}


.step-icon {
    width: 90px;
    height: 90px;
    background: rgba(22, 165, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: var(--thm-teal);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.process-step-v2:hover .step-icon::before {
    width: 100%;
    height: 100%;
}

.process-step-v2:hover .step-icon {
    color: var(--thm-white);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(22, 165, 113, 0.3);
}

.step-icon i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step-v2:hover .step-icon i {
    transform: scale(1.1);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.process-step-v2:hover .step-title {
    color: var(--thm-teal);
    transform: translateY(-2px);
}

.step-description {
    color: var(--thm-body-font-color);
    line-height: 1.7;
    margin-bottom: 0;
    transition: all 0.3s ease;
    position: relative;
}

.process-step-v2:hover .step-description {
    color: var(--thm-black);
    transform: translateY(-1px);
}

/* Enhanced Company Info Section V2 */
.company-info-sec-v2 {
    background: linear-gradient(135deg, var(--thm-bg-ling-green) 0%, rgba(22, 165, 113, 0.05) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.company-info-sec-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2316a571" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.company-info-content {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

.info-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.info-title .gradient-text {
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-description {
    font-size: 1.2rem;
    color: var(--thm-body-font-color);
    line-height: 1.7;
    margin-bottom: 40px;
}

.info-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.info-stats .stat-item {
    text-align: left;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
}

.info-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(22, 165, 113, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.info-stats .stat-number {
    color: var(--thm-teal) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    display: block !important;
    line-height: 1 !important;
    margin-bottom: 5px !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
}

.info-stats .stat-label {
    color: var(--thm-black);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-info-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.info-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(22, 165, 113, 0.25);
    background: linear-gradient(135deg, var(--thm-bg-ling-green) 0%, rgba(22, 165, 113, 0.1) 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.info-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(22, 165, 113, 0.1) 50%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

.info-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 2;
}

.info-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.info-image:hover img {
    transform: scale(1.08) rotate(2deg);
}

.info-image:hover::after {
    transform: scale(1.2);
    opacity: 0.3;
}

/* Modern decorative shapes */
.info-image .shape-decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    opacity: 0.1;
    z-index: 2;
}

.info-image .shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.info-image .shape-2 {
    width: 40px;
    height: 40px;
    bottom: 15%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.info-image .shape-3 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 5%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 2s;
}

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

/* Newslater 4 */
.newsletter-sec-v4{
  background-image: url(assets/images/newsletter/bg.jpg);
}


/* Modern Pricing Section V2 */
.pricing-sec-v2 {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
}

.pricing-header-section {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--thm-body-font-color);
    margin-bottom: 40px;
}

/* Pricing Toggle */
.pricing-toggle {
    display: inline-flex;
    background: var(--thm-white);
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.toggle-option {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    color: var(--thm-body-font-color);
    min-width: 100px;
}

.toggle-option.active {
    background: var(--thm-teal);
    color: var(--thm-white);
    box-shadow: 0 2px 10px rgba(22, 165, 113, 0.3);
}

.toggle-option:hover:not(.active) {
    color: var(--thm-teal);
}

/* Pricing Cards */
.pricing-card-v2 {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(22, 165, 113, 0.1);
    height: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(22, 165, 113, 0.15);
}

.pricing-featured {
    background: var(--thm-teal);
    border-color: var(--thm-teal);
    transform: scale(1.05);
    color: var(--thm-white);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    right: -3px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--thm-teal);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-featured .pricing-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--thm-white);
}

.pricing-header {
    margin-bottom: 30px;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 15px;
}

.pricing-featured .plan-name {
    color: var(--thm-white);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--thm-teal);
}

.pricing-featured .currency {
    color: var(--thm-white);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--thm-black);
}

.pricing-featured .amount {
    color: var(--thm-white);
}

.period {
    font-size: 1rem;
    color: var(--thm-body-font-color);
}

.pricing-featured .period {
    color: rgba(255, 255, 255, 0.8);
}

.plan-description {
    color: var(--thm-body-font-color);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.pricing-featured .plan-description {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    margin-bottom: 40px;
}

.pricing-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    justify-content: flex-start;
}

.pricing-features .feature-item i {
    color: var(--thm-teal);
    font-size: 16px;
}

.pricing-featured .pricing-features .feature-item i {
    color: var(--thm-white);
}

.pricing-featured .pricing-features .feature-item span {
    color: var(--thm-white);
}

.pricing-featured  .pricing-features .feature-item span {
    color: var(--thm-body-font-color);
    font-weight: 500;
    font-size: 15px;
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    background: var(--thm-white);
    color: var(--thm-teal);
    border: 2px solid var(--thm-teal);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 15px;
}

.pricing-btn:hover {
    background: var(--thm-teal);
    color: var(--thm-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(22, 165, 113, 0.3);
}

.pricing-featured .pricing-btn {
    background: var(--thm-white);
    color: var(--thm-teal);
    border-color: var(--thm-white);
}

.pricing-featured .pricing-btn:hover {
    background: var(--thm-dark-green);
    border-color: var(--thm-dark-green);
    color: var(--thm-white);
}

/* Modern Blog Section V2 */
.blog-sec-v2 {
    background: var(--thm-bg-ling-green);
    position: relative;
    overflow: hidden;
}

.blog-sec-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2316a571" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

/* Subtle floating circles for blog */
.blog-sec-v2 .floating-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.blog-sec-v2 .circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    opacity: 0.05;
    animation: gentleFloat 26s ease-in-out infinite;
}

.blog-sec-v2 .circle-1 {
    width: 45px;
    height: 45px;
    top: 25%;
    left: 10%;
    animation-delay: 6s;
}

.blog-sec-v2 .circle-2 {
    width: 60px;
    height: 60px;
    top: 65%;
    right: 15%;
    animation-delay: 16s;
}

.blog-sec-v2 .circle-3 {
    width: 35px;
    height: 35px;
    top: 85%;
    left: 30%;
    animation-delay: 26s;
}

/* Modern Brand Section V2 */
.brand-sec-v2 {
    background: linear-gradient(135deg, var(--thm-dark-green) 0%, var(--thm-teal) 100%);
    position: relative;
    overflow: hidden;
}

.brand-sec-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

/* Subtle floating circles for brand */
.brand-sec-v2 .floating-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.brand-sec-v2 .circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0.3;
    animation: gentleFloat 22s ease-in-out infinite;
}

.brand-sec-v2 .circle-1 {
    width: 50px;
    height: 50px;
    top: 30%;
    left: 15%;
    animation-delay: 4s;
}

.brand-sec-v2 .circle-2 {
    width: 35px;
    height: 35px;
    top: 60%;
    right: 20%;
    animation-delay: 11s;
}

.brand-sec-v2 .circle-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 70%;
    animation-delay: 18s;
}

.brand-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--thm-white);
    margin-bottom: 15px;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.brand-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.brand-item {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.brand-item:hover {
    opacity: 1;
}

.brand-item img {
    max-height: 50px;
    width: auto;
}

/* Redesigned Brand Section V3 */
.brand-sec-v3 {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.brand-sec-v3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2316a571" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.brand-sec-v3 .floating-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.brand-sec-v3 .circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(22, 165, 113, 0.1) 0%, rgba(22, 165, 113, 0.05) 100%);
    opacity: 0.3;
    animation: gentleFloat 22s ease-in-out infinite;
}

.brand-sec-v3 .circle-1 {
    width: 50px;
    height: 50px;
    top: 30%;
    left: 15%;
    animation-delay: 4s;
}

.brand-sec-v3 .circle-2 {
    width: 35px;
    height: 35px;
    top: 60%;
    right: 20%;
    animation-delay: 11s;
}

.brand-sec-v3 .circle-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 70%;
    animation-delay: 18s;
}

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

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 30px;
    position: relative;
    z-index: 3;
}

.brand-card {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(22, 165, 113, 0.1);
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(22, 165, 113, 0.1), transparent);
    transition: left 0.6s ease;
}

.brand-card:hover::before {
    left: 100%;
}

.brand-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(22, 165, 113, 0.15);
    border-color: var(--thm-teal);
}

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

.brand-logo img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.3s ease;
}

.brand-card:hover .brand-logo img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.brand-info h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--thm-dark-green);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.brand-card:hover .brand-info h5 {
    color: var(--thm-teal);
}

.brand-info p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    transition: color 0.3s ease;
}

.brand-card:hover .brand-info p {
    color: var(--thm-dark-green);
}

.brand-stat {
    text-align: center;
    padding: 20px;
    background: var(--thm-white);
    border-radius: 15px;
    border: 1px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
}

.brand-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(22, 165, 113, 0.1);
    border-color: var(--thm-teal);
}

.brand-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--thm-teal);
    margin-bottom: 10px;
    display: block;
}

.brand-stat .stat-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

/* Enhanced Testimonial Section V2 - Overlapping Cards */
.testimonial-sec-v2 {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card-v2 {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(22, 165, 113, 0.1);
    width: 100%;
    max-width: 350px;
    will-change: transform, box-shadow, z-index;
    opacity: 0;
    animation: testimonialFadeIn 0.6s ease-out forwards;
}

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

/* Animation delays and positioning */
.testimonial-card-v2:nth-child(1) {
    animation-delay: 0.1s;
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 1;
}

.testimonial-card-v2:nth-child(2) {
    animation-delay: 0.2s;
    position: absolute;
    top: 150px;
    right: 100px;
    z-index: 3;
    transform: translateX(30px);
}

.testimonial-card-v2:nth-child(3) {
    animation-delay: 0.3s;
    position: absolute;
    top: 280px;
    left: 150px;
    z-index: 2;
    transform: translateX(-40px);
}

.testimonial-card-v2:nth-child(4) {
    animation-delay: 0.4s;
    position: absolute;
    top: 420px;
    right: 200px;
    z-index: 1;
    transform: translateX(20px);
}

.testimonial-card-v2:nth-child(5) {
    animation-delay: 0.5s;
    position: absolute;
    top: 550px;
    left: 80px;
    z-index: 2;
    transform: translateX(-50px);
}

.testimonial-card-v2:nth-child(6) {
    animation-delay: 0.6s;
    position: absolute;
    top: 200px;
    left: 300px;
    z-index: 1;
    transform: translateX(-20px);
}

.testimonial-card-v2:nth-child(7) {
    animation-delay: 0.7s;
    position: absolute;
    top: 380px;
    right: 50px;
    z-index: 2;
    transform: translateX(40px);
}

.testimonial-card-v2:nth-child(8) {
    animation-delay: 0.8s;
    position: absolute;
    top: 500px;
    left: 250px;
    z-index: 1;
    transform: translateX(-30px);
}

.testimonial-card-v2:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 30px 80px rgba(22, 165, 113, 0.25);
    z-index: 10 !important;
    transition-delay: 0.1s;
}


/* Testimonial Badge */
.testimonial-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(22, 165, 113, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--thm-teal);
}

.testimonial-badge i {
    font-size: 14px;
    color: var(--thm-teal);
}

/* Author Image */
.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--thm-teal);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Author Info */
.author-info {
    text-align: center;
    margin-bottom: 20px;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 5px;
}

.author-position {
    font-size: 14px;
    color: var(--thm-body-font-color);
    font-weight: 500;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--thm-body-font-color);
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
}

/* Star Rating */
.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 0;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 16px;
}

/* Container height for overlapping */
.testimonial-container {
    height: 800px;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Mobile Slider Styles */
.testimonial-mobile-slider {
    display: none;
}

/* Hide navigation buttons on testimonials */
.testimonial-mobile-slider .owl-nav {
    display: none !important;
}

.testimonial-mobile-slider .owl-nav button {
    display: none !important;
}

/* Hide any pagination dots if present */
.testimonial-mobile-slider .owl-dots {
    display: none !important;
}

.testimonial-mobile-slider .owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.testimonial-mobile-slider .owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}

.testimonial-mobile-slider .testimonial-card-v2 {
    position: relative !important;
    transform: none !important;
    margin: 0 auto;
    max-width: 350px;
}

/* Hide navigation buttons completely */
.testimonial-mobile-slider .owl-nav {
    display: none !important;
}

.testimonial-mobile-slider .owl-nav button {
    display: none !important;
}

/* Hide pagination dots */
.testimonial-mobile-slider .owl-dots {
    display: none !important;
}

.testimonial-mobile-slider .owl-dots .owl-dot {
    display: none !important;
}

/* Mobile Responsive for Testimonials */
@media (max-width: 768px) {
    .testimonial-container {
        display: none !important;
    }
    
    .testimonial-mobile-slider {
        display: block !important;
        padding: 0 15px !important;
    }
    
    .testimonial-card-v2 {
        position: relative !important;
        transform: none !important;
        max-width: 100% !important;
        margin: 0 auto 20px auto !important;
        opacity: 1 !important;
        animation: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        animation-delay: 0s !important;
    }
    
    .testimonial-mobile-slider .owl-carousel {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .testimonial-mobile-slider .owl-carousel .owl-stage-outer {
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
    }
    
    .testimonial-mobile-slider .owl-carousel .owl-stage {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .testimonial-mobile-slider .owl-carousel .owl-item {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 0 10px !important;
    }
    
    .testimonial-mobile-slider .testimonial-card-v2 {
        position: relative !important;
        transform: none !important;
        margin: 0 auto !important;
        max-width: 350px !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    /* Fix bottom content cutoff */
    .testimonial-sec-v2 {
        padding-bottom: 60px !important;
        margin-bottom: 0px !important;
    }
    
    .testimonial-mobile-slider {
        margin-bottom: 40px !important;
        padding-bottom: 20px !important;
    }
    
    /* Ensure proper spacing for next section */
    .blog-sec-v2 {
        padding-top: 60px !important;
        margin-top: 0px !important;
    }
    
    /* General mobile spacing fixes */
    .sec-ptb {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Fix any overflow issues */
    body {
        overflow-x: hidden !important;
    }
    
    .testimonial-sec-v2 .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Enhanced Blog Section V2 */
.blog-card-v2 {
    background: var(--thm-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(22, 165, 113, 0.1);
    height: 100%;
}

.blog-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card-v2:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--thm-teal);
    color: var(--thm-white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--thm-body-font-color);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--thm-body-font-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--thm-teal);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-link:hover {
    gap: 12px;
    color: var(--thm-green);
}

/* Redesigned Blog Section V3 */
.blog-sec-v3 {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.blog-sec-v3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2316a571" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.blog-sec-v3 .floating-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.blog-sec-v3 .circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(22, 165, 113, 0.1) 0%, rgba(22, 165, 113, 0.05) 100%);
    opacity: 0.3;
    animation: gentleFloat 22s ease-in-out infinite;
}

.blog-sec-v3 .circle-1 {
    width: 50px;
    height: 50px;
    top: 30%;
    left: 15%;
    animation-delay: 4s;
}

.blog-sec-v3 .circle-2 {
    width: 35px;
    height: 35px;
    top: 60%;
    right: 20%;
    animation-delay: 11s;
}

.blog-sec-v3 .circle-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 70%;
    animation-delay: 18s;
}

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

/* Featured Blog Post - Now as a regular blog card */
.featured-blog-post {
    background: var(--thm-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(22, 165, 113, 0.1);
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(22, 165, 113, 0.15);
    border-color: var(--thm-teal);
}

.featured-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-blog-post:hover .featured-image img {
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--thm-teal);
    color: var(--thm-white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.featured-content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
    color: #6b7280;
}

.featured-badge {
    background: var(--thm-teal);
    color: var(--thm-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-date {
    color: #6b7280;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 114px;
}

.featured-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--thm-dark-green);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.featured-blog-post:hover .featured-title {
    color: var(--thm-teal);
}

.featured-excerpt {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-author .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    font-weight: 700;
    font-size: 16px;
}

.featured-author .author-info .author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--thm-dark-green);
    margin-bottom: 2px;
}

.featured-author .author-info .author-role {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

.featured-btn {
    background: var(--thm-teal);
    color: var(--thm-white);
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.featured-btn:hover {
    background: var(--thm-dark-green);
    color: var(--thm-white);
    transform: translateY(-2px);
}




.featured-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.read-time {
    background: rgba(0, 0, 0, 0.7);
    color: var(--thm-white);
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Blog Cards V3 */
.blog-card-v3 {
    background: var(--thm-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(22, 165, 113, 0.1);
    position: relative;
    z-index: 3;
}

.blog-card-v3:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(22, 165, 113, 0.15);
    border-color: var(--thm-teal);
}

.blog-card-v3 .blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-card-v3 .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-v3:hover .blog-image img {
    transform: scale(1.1);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 165, 113, 0.9) 0%, rgba(22, 165, 113, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card-v3:hover .blog-overlay {
    opacity: 1;
}

.read-btn {
    background: var(--thm-white);
    color: var(--thm-teal);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-btn:hover {
    background: var(--thm-dark-green);
    color: var(--thm-white);
    transform: scale(1.1);
}

.blog-card-v3 .blog-content {
    padding: 25px;
}

.blog-card-v3 .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
    color: #6b7280;
}

.blog-card-v3 .blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-v3 .blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--thm-dark-green);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card-v3:hover .blog-title {
    color: var(--thm-teal);
}

.blog-card-v3 .blog-excerpt {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
}

.blog-author img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid var(--thm-teal);
}

.blog-stats {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #6b7280;
}

.blog-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Blog CTA */
.blog-cta {
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    border-radius: 25px;
    padding: 50px 40px;
    color: var(--thm-white);
    position: relative;
    z-index: 3;
    margin-top: 60px;
}

.blog-cta h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.blog-cta .thm-btn {
    background: var(--thm-white);
    color: var(--thm-white);
    border: 2px solid var(--thm-white);
}

.blog-cta .thm-btn:hover {
    background: transparent;
    color: var(--thm-white);
    border-color: var(--thm-white);
}

/* Responsive Design for Homepage V2 */
@media (max-width: 768px) {
   
    .hero-title-v2 {
        font-size: 2.5rem;
    }
    
    .section-title-v2 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .floating-card {
        display: none;
    }
    
    /* Hero Section Mobile Enhancements */
    .hero-sec-v2 {
        min-height: 100vh;
        padding: 80px 0 60px 0;
    }
    
    .hero-title-v2 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }
    
    .hero-description-v2 {
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
    }
    
    .hero-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
        margin-bottom: 40px !important;
    }
    
    .hero-actions .thm-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 15px 20px !important;
        font-size: 16px !important;
    }
    
    .hero-actions .play-btn-v2 {
        width: 100% !important;
        justify-content: center !important;
        padding: 15px 20px !important;
        font-size: 16px !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
    }
    
    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 3px !important;
        align-items: stretch !important;
    }
    
    .hero-stats .stat-item {
        text-align: center !important;
        padding: 15px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 12px !important;
        border: 1px solid rgba(22, 165, 113, 0.2) !important;
        
    }
    .stat-item{
      flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    }

    
    .hero-stats .stat-number {
        font-size: 1.8rem !important;
        margin-bottom: 5px !important;
    }
    
    .hero-stats .stat-label {
        font-size: 12px !important;
    }
    
    .hero-badge {
        font-size: 12px !important;
        padding: 6px 15px !important;
        margin-bottom: 15px !important;
    }
    
    .hero-sec-v2 .floating-circles {
        display: none !important;
    }
    
    /* Show floating cards on mobile with simplified design */
    .hero-image-wrapper .floating-card {
        display: block !important;
        position: absolute !important;
        animation: gentleFloat 6s ease-in-out infinite !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(22, 165, 113, 0.3) !important;
        border-radius: 15px !important;
        padding: 15px 20px !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        color: var(--thm-black) !important;
        font-weight: 600 !important;
        font-size: 14px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
        min-width: 140px !important;
    }
    
    .hero-image-wrapper .floating-card.card-1 {
        top: 10% !important;
        right: -5% !important;
        animation-delay: 0s !important;
    }
    
    .hero-image-wrapper .floating-card.card-2 {
        top: 50% !important;
        left: -10% !important;
        animation-delay: 2s !important;
    }
    
    .hero-image-wrapper .floating-card.card-3 {
        bottom: 15% !important;
        right: -5% !important;
        animation-delay: 4s !important;
    }
    
    /* Hero Image Mobile */
    .hero-image-wrapper {
        margin-top: 40px !important;
        text-align: center !important;
    }
    
    .hero-main-image img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .experience-badge {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        margin: 20px auto 0 auto !important;
        display: inline-block !important;
    }
}

/* Tablet Layout */
@media (min-width: 769px) and (max-width: 991px) {
    .hero-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }
    
    .hero-actions .thm-btn,
    .hero-actions .play-btn-v2 {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
    
    .hero-stats .stat-item {
        padding: 20px 15px !important;
    }
    
    /* Show floating cards on tablet */
    .hero-image-wrapper .floating-card {
        display: block !important;
        animation: gentleFloat 6s ease-in-out infinite !important;
    }
    
    .hero-image-wrapper .floating-card.card-1 {
        top: 10% !important;
        right: -10% !important;
        animation-delay: 0s !important;
    }
    
    .hero-image-wrapper .floating-card.card-2 {
        top: 50% !important;
        left: -15% !important;
        animation-delay: 2s !important;
    }
    
    .hero-image-wrapper .floating-card.card-3 {
        bottom: 15% !important;
        right: -5% !important;
        animation-delay: 4s !important;
    }
}

/* Desktop Layout */
@media (min-width: 992px) {
    .hero-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 25px !important;
    }
    
    .hero-actions .thm-btn,
    .hero-actions .play-btn-v2 {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px !important;
    }
    
    .hero-stats .stat-item {
        padding: 25px 20px !important;
    }
    
    /* Show floating cards on desktop */
    .hero-image-wrapper .floating-card {
        display: block !important;
        animation: gentleFloat 6s ease-in-out infinite !important;
    }
    
    .hero-image-wrapper .floating-card.card-1 {
        top: 10% !important;
        right: -10% !important;
        animation-delay: 0s !important;
    }
    
    .hero-image-wrapper .floating-card.card-2 {
        top: 50% !important;
        left: -15% !important;
        animation-delay: 2s !important;
    }
    
    .hero-image-wrapper .floating-card.card-3 {
        bottom: 15% !important;
        right: -5% !important;
        animation-delay: 4s !important;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-sec-v2 {
        padding: 60px 0 40px 0;
    }
    
    .hero-title-v2 {
        font-size: 1.8rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-description-v2 {
        font-size: 14px !important;
        margin-bottom: 25px !important;
    }
    
    .hero-actions .thm-btn,
    .hero-actions .play-btn-v2 {
        padding: 12px 15px !important;
        font-size: 12px !important;
    }
    
    /* Show floating cards on extra small mobile with compact design */
    .hero-image-wrapper .floating-card {
        display: block !important;
        position: absolute !important;
        animation: gentleFloat 6s ease-in-out infinite !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(22, 165, 113, 0.3) !important;
        border-radius: 12px !important;
        padding: 12px 15px !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        color: var(--thm-black) !important;
        font-weight: 600 !important;
        font-size: 12px !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
        min-width: 120px !important;
    }
    
    .hero-image-wrapper .floating-card.card-1 {
        top: 5% !important;
        right: -3% !important;
        animation-delay: 0s !important;
    }
    
    .hero-image-wrapper .floating-card.card-2 {
        top: 50% !important;
        left: -8% !important;
        animation-delay: 2s !important;
    }
    
    .hero-image-wrapper .floating-card.card-3 {
        bottom: 10% !important;
        right: -3% !important;
        animation-delay: 4s !important;
    }
    
    .hero-stats .stat-item {
        padding: 12px !important;
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem !important;
    }
    
    .hero-stats .stat-label {
        font-size: 11px !important;
    }
    
    .hero-badge {
        font-size: 11px !important;
        padding: 5px 12px !important;
    }
    
    .hero-main-image {
        margin-top: 30px !important;
    }
    
    .experience-badge {
        margin: 15px auto 0 auto !important;
        padding: 10px 15px !important;
        font-size: 12px !important;
    }
}

    .info-stats {
        gap: 20px;
    }
    
    .brand-slider {
        gap: 20px;
    }
    
    /* Brand Section V3 Mobile */
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .brand-card {
        padding: 15px;
        min-height: auto;
    }
    
    .brand-logo {
        margin-bottom: 15px;
    }
    
    .brand-logo img {
        max-height: 40px;
    }
    
    .brand-info h5 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .brand-info p {
        font-size: 0.8rem;
    }
    
    .brand-stat {
        padding: 15px;
    }
    
    .brand-stat .stat-number {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .brand-stat .stat-label {
        font-size: 0.9rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .brand-card {
        padding: 12px;
    }
    
    .brand-logo {
        margin-bottom: 10px;
    }
    
    .brand-logo img {
        max-height: 35px;
    }
    
    .brand-info h5 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .brand-info p {
        font-size: 0.75rem;
    }
    
    .brand-stat {
        padding: 12px;
    }
    
    .brand-stat .stat-number {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .brand-stat .stat-label {
        font-size: 0.8rem;
    }
    
    /* Blog Section V3 Mobile */
    .blog-sec-v3 {
        padding: 60px 0;
    }
    
    .featured-blog-post {
        margin-bottom: 20px;
    }
    
    .featured-content {
        padding: 20px;
    }
    
    .featured-title {
        font-size: 1.1rem;
    }
    
    .featured-excerpt {
        font-size: 14px;
    }
    
    .featured-image {
        height: 180px;
    }
    
    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card-v3 .blog-image {
        height: 180px;
    }
    
    .blog-card-v3 .blog-content {
        padding: 20px;
    }
    
    .blog-card-v3 .blog-title {
        font-size: 1.1rem;
    }
    
    .blog-card-v3 .blog-excerpt {
        font-size: 14px;
    }
    
    .blog-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .blog-sec-v3 {
        padding: 40px 0;
    }
    
    .featured-blog-post {
        margin-bottom: 15px;
    }
    
    .featured-content {
        padding: 15px;
    }
    
    .featured-title {
        font-size: 1rem;
    }
    
    .featured-excerpt {
        font-size: 13px;
    }
    
    .featured-image {
        height: 160px;
    }
    
    .blog-card-v3 .blog-content {
        padding: 15px;
    }
    
    .blog-card-v3 .blog-title {
        font-size: 1rem;
    }
    
    .blog-card-v3 .blog-excerpt {
        font-size: 13px;
    }
    
    .blog-cta h4 {
        font-size: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image-wrapper {
        margin-top: 30px;
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }
    
    .company-info-visual {
        margin-top: 30px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .project-filters {
        gap: 20px;
    }
    
    .filter-item {
        min-width: 100px;
        padding: 10px 15px;
    }
    
    .filter-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .filter-content h6 {
        font-size: 14px;
    }
    
    .filter-content span {
        font-size: 12px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 15px;
    }
    
    .project-card-v2 {
        min-height: 200px;
    }
    
    .project-card-v2.tall {
        min-height: 300px;
    }
    
    .project-content {
        padding: 20px 15px 15px;
    }
    
    .project-title {
        font-size: 18px;
    }
    
    .company-info-sec-v2 {
        padding: 60px 0;
    }
    
    .info-title {
        font-size: 2.2rem;
    }
    
    .info-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .info-stats .stat-item {
        text-align: center;
        padding: 15px 20px;
    }
    
    .company-info-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .info-image {
        padding: 20px;
        min-height: 300px;
    }
    
    .info-image .shape-decoration {
        display: none;
    }
    
    .shape {
        display: none;
    }
    
    .floating-circles {
        display: none;
    }
    
    .pricing-main-title {
        font-size: 2.2rem;
    }
    
    .pricing-toggle {
        margin-bottom: 40px;
    }
    
    .toggle-option {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 80px;
    }
    
    .testimonial-container {
        display: none;
    }
    
    .testimonial-mobile-slider {
        display: block;
    }
}
.notification-group {
  margin-bottom: 30px;
}

.notification-group h6 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(56, 56, 56, 0.1);
}

.notification-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  margin-bottom: 10px;
}

.notification-info {
  flex: 1;
}

.notification-info strong {
  display: block;
  margin-bottom: 3px;
}

.notification-info span {
  font-size: 13px;
  color: var(--thm-body-font-color);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--thm-teal);
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.team-member-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  margin-bottom: 10px;
}

.team-member-item img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.member-info {
  flex: 1;
}

.member-info strong {
  display: block;
  margin-bottom: 3px;
}

.member-info span {
  display: block;
  font-size: 12px;
  color: var(--thm-body-font-color);
}

.member-role {
  color: var(--thm-teal);
  font-weight: 600;
}

.you-badge {
  padding: 4px 10px;
  background: var(--thm-teal);
  color: var(--thm-white);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}

.btn-secondary-small {
  padding: 6px 12px;
  background: var(--thm-bg-ling-green);
  border: 2px solid rgba(22, 165, 113, 0.2);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.preference-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  margin-bottom: 10px;
}

.preference-info {
  flex: 1;
}

.preference-info strong {
  display: block;
  margin-bottom: 3px;
}

.preference-info span {
  font-size: 13px;
  color: var(--thm-body-font-color);
}

.preference-select {
  width: 200px;
  padding: 8px 12px;
  border: 2px solid rgba(22, 165, 113, 0.2);
  border-radius: 8px;
}

/* Notifications Page Styles */
.notification-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn .badge {
  display: inline-block;
  padding: 2px 6px;
  background: var(--thm-teal);
  color: var(--thm-white);
  border-radius: 10px;
  font-size: 10px;
  margin-left: 5px;
}

.notifications-container {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
}

.notification-time-group {
  margin-bottom: 35px;
}

.time-group-title {
  color: var(--thm-black);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(56, 56, 56, 0.1);
}

.notification-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.notification-item.unread {
  background: var(--thm-white);
  border-color: var(--thm-teal);
  box-shadow: 0px 4px 15px rgba(22, 165, 113, 0.08);
}

.notification-item:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 20px rgba(22, 165, 113, 0.1);
}

.notification-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ticket-icon {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
}

.project-icon {
  background: rgba(22, 165, 113, 0.1);
  color: var(--thm-teal);
}

.billing-icon {
  background: rgba(255, 165, 0, 0.1);
  color: #ffa500;
}

.system-icon {
  background: rgba(22, 165, 113, 0.1);
  color: var(--thm-teal);
}

.document-icon {
  background: rgba(22, 165, 113, 0.1);
  color: var(--thm-teal);
}

.notification-content {
  flex: 1;
}

.notification-content h6 {
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.notification-content p {
  color: var(--thm-body-font-color);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.notification-time {
  font-size: 12px;
  color: var(--thm-teal);
  font-weight: 500;
}

.notification-actions {
  display: flex;
  gap: 5px;
  align-items: center;
}

.action-btn-icon {
  width: 35px;
  height: 35px;
  background: var(--thm-bg-ling-green);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn-icon:hover {
  background: var(--thm-teal);
  color: var(--thm-white);
}

/* Knowledge Base Page Styles */
.kb-search-bar {
  display: flex;
  gap: 10px;
  background: var(--thm-white);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  position: relative;
}

.kb-search-bar i {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--thm-teal);
  font-size: 18px;
}

.kb-search-bar input {
  flex: 1;
  padding: 15px 50px;
  border: 2px solid rgba(22, 165, 113, 0.2);
  border-radius: 10px;
  font-size: 16px;
}

.search-btn {
  white-space: nowrap;
}

.section-heading {
  color: var(--thm-black);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}

.popular-topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.topic-card {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  border: 2px solid rgba(22, 165, 113, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 35px rgba(22, 165, 113, 0.15);
  border-color: var(--thm-teal);
}

.topic-icon {
  width: 70px;
  height: 70px;
  background: var(--thm-teal);
  color: var(--thm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.topic-card h5 {
  color: var(--thm-black);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.topic-card p {
  color: var(--thm-body-font-color);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.article-count {
  display: inline-block;
  padding: 4px 12px;
  background: var(--thm-bg-ling-green);
  color: var(--thm-teal);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.kb-category-section {
  margin-bottom: 40px;
}

.kb-category-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 25px;
  padding: 25px;
  background: var(--thm-white);
  border-radius: 15px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
}

.kb-category-header .category-icon {
  width: 60px;
  height: 60px;
  background: var(--thm-teal);
  color: var(--thm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.category-info h4 {
  margin-bottom: 8px;
}

.category-info p {
  color: var(--thm-body-font-color);
  font-size: 14px;
  margin: 0;
}

.kb-articles-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kb-article-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--thm-white);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 15px rgba(22, 165, 113, 0.08);
  border: 2px solid transparent;
}

.kb-article-item:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 20px rgba(22, 165, 113, 0.12);
  border-color: var(--thm-teal);
}

.kb-article-item .article-icon {
  width: 40px;
  height: 40px;
  background: var(--thm-bg-ling-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kb-article-item .article-icon i {
  color: var(--thm-teal);
}

.article-info {
  flex: 1;
}

.article-info h6 {
  color: var(--thm-black);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.article-info p {
  color: var(--thm-body-font-color);
  font-size: 13px;
  margin: 0;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.article-meta .views {
  color: var(--thm-body-font-color);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-meta i.fa-chevron-right {
  color: var(--thm-teal);
}

.help-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.help-action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  text-decoration: none;
  color: var(--thm-black);
  font-weight: 500;
  transition: all 0.3s ease;
}

.help-action-btn:hover {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.help-action-btn.emergency {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
}

.help-action-btn.emergency:hover {
  background: #ff6b6b;
  color: var(--thm-white);
}

.featured-article {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(56, 56, 56, 0.1);
}

.featured-article:last-child {
  border-bottom: none;
}

.featured-article i {
  color: #ffa500;
  flex-shrink: 0;
}

.featured-article a {
  color: var(--thm-black);
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-bottom: 3px;
}

.featured-article a:hover {
  color: var(--thm-teal);
}

.featured-article span {
  font-size: 12px;
  color: var(--thm-body-font-color);
}

.video-tutorial-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(56, 56, 56, 0.1);
}

.video-tutorial-item:last-child {
  border-bottom: none;
}

.video-thumbnail {
  width: 60px;
  height: 60px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.video-thumbnail i {
  color: var(--thm-teal);
  font-size: 24px;
}

.video-info {
  flex: 1;
}

.video-info a {
  color: var(--thm-black);
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-bottom: 3px;
}

.video-info a:hover {
  color: var(--thm-teal);
}

.video-info span {
  font-size: 12px;
  color: var(--thm-body-font-color);
}

/* Responsive for all portal pages */
@media (max-width: 991px) {
  .settings-nav {
    margin-bottom: 30px;
  }
  
  .popular-topics-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 767px) {
  .ticket-filters,
  .notification-filters {
    flex-direction: column;
  }
  
  .support-ticket-item,
  .ticket-detail-card,
  .notification-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .ticket-footer,
  .notification-actions {
    width: 100%;
    margin-top: 10px;
  }
  
  .document-search-bar,
  .kb-search-bar {
    flex-direction: column;
  }
  
  .popular-topics-grid {
    grid-template-columns: 1fr;
  }
  
  .invoice-header-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .invoice-amount-section {
    text-align: left;
  }
  
  .history-invoice-item {
    flex-direction: column;
    gap: 10px;
  }
  
  .invoice-actions-col {
    margin-left: 0;
  }
}

/*=============================
	28. Authentication Pages CSS
===============================*/

/* Auth Form Input Styling */
.auth-field .input-group {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.contact-field .input-group {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.contact-field .input-icon {
  position: absolute;
  left: 15px;
  z-index: 2;
  color: var(--thm-teal);
  font-size: 16px;
  pointer-events: none;
}

.contact-field label {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--thm-black);
  font-size: 16px;
}

.auth-field label {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--thm-black);
  font-size: 16px;
}

.contact-field {
  margin-bottom: 25px;
}

.auth-field {
  margin-bottom: 25px;
}

.auth-field .input-icon {
  position: absolute;
  left: 15px;
  z-index: 2;
  color: var(--thm-teal);
  font-size: 16px;
  pointer-events: none;
}

.auth-field .input-group input,
.auth-field .input-group input[type="text"],
.auth-field .input-group input[type="email"],
.auth-field .input-group input[type="password"],
.auth-field .input-group input[type="tel"],
.contact-field .input-group input,
.contact-field .input-group input[type="text"],
.contact-field .input-group input[type="email"],
.contact-field .input-group input[type="password"],
.contact-field .input-group input[type="tel"] {
  padding-left: 45px;
  padding-right: 45px;
  height: 55px;
  border: 2px solid rgba(56, 56, 56, 0.12);
  border-radius: 10px !important;
  font-size: 16px;
  transition: all 0.3s linear;
  background: #fff;
  width: 100%;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
}

.auth-field .input-group input:focus,
.contact-field .input-group input:focus {
  border-color: var(--thm-teal);
  box-shadow: 0 0 0 0.25rem rgba(22, 165, 113, 0.15);
  outline: none;
}

.contact-field .input-group textarea {
  padding-left: 45px;
  padding-right: 45px;
  padding-top: 15px;
  padding-bottom: 15px;
  border: 2px solid rgba(56, 56, 56, 0.12);
  border-radius: 10px !important;
  font-size: 16px;
  transition: all 0.3s linear;
  background: #fff;
  width: 100%;
  min-height: 120px;
  resize: vertical;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
}

.contact-field .input-group textarea:focus {
  border-color: var(--thm-teal);
  box-shadow: 0 0 0 0.25rem rgba(22, 165, 113, 0.15);
  outline: none;
}

.contact-field .input-group select {
  padding-left: 45px;
  padding-right: 45px;
  height: 55px;
  border: 2px solid rgba(56, 56, 56, 0.12);
  border-radius: 10px !important;
  font-size: 16px;
  transition: all 0.3s linear;
  background: #fff;
  width: 100%;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
}

.contact-field .input-group select:focus {
  border-color: var(--thm-teal);
  box-shadow: 0 0 0 0.25rem rgba(22, 165, 113, 0.15);
  outline: none;
}

/* Modal specific styling */
.modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.15);
}

.modal-header {
  background: var(--thm-bg-ling-green);
  border-bottom: 2px solid rgba(22, 165, 113, 0.1);
  border-radius: 15px 15px 0 0;
  padding: 20px 25px;
}

.modal-title {
  color: var(--thm-black);
  font-size: 20px;
  font-weight: 600;
}

.modal-body {
  padding: 30px 25px;
}

.modal-footer {
  background: var(--thm-bg-ling-green);
  border-top: 2px solid rgba(22, 165, 113, 0.1);
  border-radius: 0 0 15px 15px;
  padding: 20px 25px;
}

/* Form controls in modal */
.modal-body .form-control {
  border: 2px solid rgba(22, 165, 113, 0.2);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
  width: 100%;
}

.modal-body .form-control:focus {
  border-color: var(--thm-teal);
  box-shadow: 0px 0px 0px 3px rgba(22, 165, 113, 0.1);
  outline: none;
}

.modal-body textarea.form-control {
  min-height: 120px;
  resize: vertical;
  font-family: var(--thm-body-font);
}

.modal-body select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2316A571' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.modal-body .form-text {
  font-size: 12px;
  color: var(--thm-body-font-color);
  margin-top: 5px;
}

/* Auth field styling for modals */
.modal-body .auth-field {
  margin-bottom: 20px;
}

.modal-body .auth-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--thm-black);
  font-size: 14px;
}

.modal-body .auth-field .input-group {
  position: relative;
}

.modal-body .auth-field .input-group .input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--thm-teal);
  font-size: 16px;
  z-index: 2;
  pointer-events: none;
}

.modal-body .auth-field .input-group input,
.modal-body .auth-field .input-group textarea,
.modal-body .auth-field .input-group select {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 2px solid rgba(22, 165, 113, 0.2);
  border-radius: 10px;
  font-size: 14px;
  color: var(--thm-black);
  background: var(--thm-white);
  transition: all 0.3s ease;
  font-family: var(--thm-body-font);
}

.modal-body .auth-field .input-group input:focus,
.modal-body .auth-field .input-group textarea:focus,
.modal-body .auth-field .input-group select:focus {
  outline: none;
  border-color: var(--thm-teal);
  box-shadow: 0px 0px 0px 3px rgba(22, 165, 113, 0.1);
}

.modal-body .auth-field .input-group textarea {
  min-height: 100px;
  resize: vertical;
}

.modal-body .auth-field .input-group select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2316A571' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Support ticket modal specific styling */
#newTicketModal{
  z-index: 999999;
}
.support-ticket-modal .modal-dialog {
  max-width: 600px;
}

.support-ticket-modal .modal-body {
  padding: 25px;
}

.support-ticket-modal .auth-field {
  margin-bottom: 20px;
}

.support-ticket-modal .auth-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--thm-black);
  font-size: 14px;
}

.support-ticket-modal .auth-field .input-group {
  position: relative;
}

.support-ticket-modal .auth-field .input-group .input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--thm-teal);
  font-size: 16px;
  z-index: 2;
  pointer-events: none;
}

.support-ticket-modal .auth-field .input-group input,
.support-ticket-modal .auth-field .input-group textarea,
.support-ticket-modal .auth-field .input-group select {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 2px solid rgba(22, 165, 113, 0.2);
  border-radius: 10px;
  font-size: 14px;
  color: var(--thm-black);
  background: var(--thm-white);
  transition: all 0.3s ease;
  font-family: var(--thm-body-font);
}

.support-ticket-modal .auth-field .input-group input:focus,
.support-ticket-modal .auth-field .input-group textarea:focus,
.support-ticket-modal .auth-field .input-group select:focus {
  outline: none;
  border-color: var(--thm-teal);
  box-shadow: 0px 0px 0px 3px rgba(22, 165, 113, 0.1);
}

.support-ticket-modal .auth-field .input-group textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 15px;
}

.support-ticket-modal .auth-field .input-group select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2316A571' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.support-ticket-modal .form-text {
  font-size: 12px;
  color: var(--thm-body-font-color);
  margin-top: 5px;
}

.support-ticket-modal .btn-submit-ticket {
  background: var(--thm-teal);
  color: var(--thm-white);
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.support-ticket-modal .btn-submit-ticket:hover {
  background: var(--thm-dark-green);
  transform: translateY(-2px);
}

/* File upload styling */
.file-upload-area {
  border: 2px dashed rgba(22, 165, 113, 0.3);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  background: var(--thm-bg-ling-green);
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload-area:hover {
  border-color: var(--thm-teal);
  background: rgba(22, 165, 113, 0.05);
}

.file-upload-area input[type="file"] {
  display: none;
}

.file-upload-text {
  color: var(--thm-body-font-color);
  font-size: 14px;
  margin-bottom: 10px;
}

.file-upload-btn {
  background: var(--thm-teal);
  color: var(--thm-white);
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload-btn:hover {
  background: var(--thm-dark-green);
}

/* Response Box Styling */
.response-form {
  background: var(--thm-white);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
  border: 2px solid rgba(22, 165, 113, 0.1);
}

.response-form h5 {
  color: var(--thm-black);
  font-weight: 600;
  margin-bottom: 20px;
}

.response-textarea {
  width: 100%;
  min-height: 120px;
  padding: 15px;
  border: 2px solid rgba(22, 165, 113, 0.2);
  border-radius: 10px;
  font-size: 14px;
  color: var(--thm-black);
  background: var(--thm-white);
  transition: all 0.3s ease;
  font-family: var(--thm-body-font);
  resize: vertical;
}

.response-textarea:focus {
  outline: none;
  border-color: var(--thm-teal);
  box-shadow: 0px 0px 0px 3px rgba(22, 165, 113, 0.1);
}

.response-textarea::placeholder {
  color: var(--thm-body-font-color);
}

.response-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.attach-btn {
  background: transparent;
  color: var(--thm-body-font-color);
  border: 2px solid rgba(22, 165, 113, 0.2);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.attach-btn:hover {
  background: var(--thm-bg-ling-green);
  border-color: var(--thm-teal);
  color: var(--thm-teal);
}

.send-btn {
  background: var(--thm-teal);
  color: var(--thm-white);
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.send-btn:hover {
  background: var(--thm-teal);
  transform: translateY(-2px);
}

/* Filter Button Styles */
.ticket-filters,
.project-filters,
.document-filters,
.billing-filters,
.report-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--thm-teal);
  background: transparent;
  color: var(--thm-teal);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.filter-btn:hover {
  background: var(--thm-teal);
  color: var(--thm-white);
  text-decoration: none;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.filter-btn.active:hover {
  background: var(--thm-dark-green);
}

/* Stat Link Styling */
.stat-link {
  position: absolute;
  bottom: 15px;
  right: 20px;
  color: var(--thm-teal);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  opacity: 0;
  transition: all 0.3s ease;
}

.portal-stat-card {
  position: relative;
}

.portal-stat-card:hover .stat-link {
  opacity: 1;
}

.stat-link:hover {
  color: var(--thm-dark-green);
  text-decoration: none;
}

/* Welcome Section */
.welcome-section h2 {
  color: var(--thm-black);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.welcome-subtitle {
  color: var(--thm-body-font-color);
  font-size: 16px;
  margin: 0;
}

/* Portal Navigation Links */
.portal-nav a.nav-item {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.portal-nav a.nav-item:hover {
  background: var(--thm-bg-ling-green);
  border-color: rgba(22, 165, 113, 0.2);
  text-decoration: none;
  color: inherit;
  transform: translateY(-2px);
}

.portal-nav a.nav-item .nav-icon {
  color: var(--thm-teal);
}

.portal-nav a.nav-item:hover .nav-icon {
  color: var(--thm-dark-green);
}

/* Portal Content Sidebar */
.portal-floating-sidebar {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: var(--thm-white);
  border-radius: 15px;
  box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.15);
  border: 2px solid rgba(22, 165, 113, 0.1);
  z-index: 1000;
  padding: 20px 0;
  min-width: 70px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.portal-floating-sidebar:hover {
  min-width: 250px;
  box-shadow: 0px 20px 50px rgba(22, 165, 113, 0.2);
}

/* Alternative: Content-contained sidebar */
.portal-content-sidebar {
  position: sticky;
  top: 20px;
  background: var(--thm-white);
  border-radius: 15px;
  box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.15);
  border: 2px solid rgba(22, 165, 113, 0.1);
  padding: 0 0;
  height: fit-content;
  margin-right: 20px;
}

/* Mobile Toggle Button */
.sidebar-mobile-toggle {
  display: none;
  width: 100%;
  border-bottom: 1px solid rgba(22, 165, 113, 0.1);
}

.sidebar-toggle-btn {
  width: 100%;
  background: var(--thm-teal);
  color: var(--thm-white);
  border: none;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 15px 15px 0 0;
}

.sidebar-toggle-btn:hover {
  background: var(--thm-teal);
}

.sidebar-toggle-btn i {
  font-size: 14px;
}

.toggle-icon {
  transition: transform 0.3s ease;
}

.sidebar-toggle-btn.active .toggle-icon {
  transform: rotate(180deg);
}

/* Sidebar Content */
.sidebar-content {
  padding: 20px 0;
}

.portal-content-sidebar .sidebar-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  margin: 5px 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--thm-body-font-color);
  position: relative;
  overflow: hidden;
}

.portal-content-sidebar .sidebar-item:hover {
  background: var(--thm-bg-ling-green);
  color: var(--thm-teal);
  text-decoration: none;
  transform: translateX(-5px);
}

.portal-content-sidebar .sidebar-item.active {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.portal-content-sidebar .sidebar-item .sidebar-icon {
  width: 40px;
  height: 40px;
  background: rgba(22, 165, 113, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.portal-content-sidebar .sidebar-item:hover .sidebar-icon {
  background: rgba(22, 165, 113, 0.2);
}

.portal-content-sidebar .sidebar-item.active .sidebar-icon {
  background: rgba(255, 255, 255, 0.2);
}

.portal-content-sidebar .sidebar-item .sidebar-text {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.portal-content-sidebar .sidebar-divider {
  height: 1px;
  background: rgba(22, 165, 113, 0.1);
  margin: 10px 20px;
}

.portal-floating-sidebar .sidebar-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  margin: 5px 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--thm-body-font-color);
  position: relative;
  overflow: hidden;
}

.portal-floating-sidebar .sidebar-item:hover {
  background: var(--thm-bg-ling-green);
  color: var(--thm-teal);
  text-decoration: none;
  transform: translateX(-5px);
}

.portal-floating-sidebar .sidebar-item.active {
  background: var(--thm-teal);
  color: var(--thm-white);
}

.portal-floating-sidebar .sidebar-item .sidebar-icon {
  width: 40px;
  height: 40px;
  background: rgba(22, 165, 113, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.portal-floating-sidebar .sidebar-item:hover .sidebar-icon {
  background: rgba(22, 165, 113, 0.2);
}

.portal-floating-sidebar .sidebar-item.active .sidebar-icon {
  background: rgba(255, 255, 255, 0.2);
}

.portal-floating-sidebar .sidebar-item .sidebar-text {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(-10px);
}

.portal-floating-sidebar:hover .sidebar-item .sidebar-text {
  opacity: 1;
  transform: translateX(0);
}

.portal-floating-sidebar .sidebar-item.active .sidebar-text {
  opacity: 1;
  transform: translateX(0);
}

.portal-floating-sidebar .sidebar-divider {
  height: 1px;
  background: rgba(22, 165, 113, 0.1);
  margin: 10px 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .portal-floating-sidebar {
    display: none;
  }
  
  .portal-content-sidebar {
    position: relative;
    top: auto;
    margin: 0 0 20px 0;
    order: -1;
  }
  
  /* Show mobile toggle button */
  .sidebar-mobile-toggle {
    display: block;
  }
  
  /* Hide sidebar content by default on mobile */
  .sidebar-content {
    display: none;
    padding: 0;
  }
  
  /* Show sidebar content when active */
  .portal-content-sidebar.active .sidebar-content {
    display: block;
    padding: 20px 0;
  }
  
  .portal-content-sidebar .sidebar-item {
    padding: 15px 20px;
    margin: 2px 10px;
  }
  
  .portal-content-sidebar .sidebar-item .sidebar-icon {
    width: 35px;
    height: 35px;
    margin-right: 12px;
  }
  
  .portal-content-sidebar .sidebar-item .sidebar-text {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .portal-content-sidebar {
    margin-left: 0;
    margin-top: 20px;
  }
}

/* Enhanced Dashboard Styles */
.welcome-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.welcome-stat-item {
  text-align: center;
}

.welcome-stat-item .stat-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--thm-teal);
  margin-bottom: 5px;
}

.welcome-stat-item .stat-label {
  font-size: 14px;
  color: var(--thm-body-font-color);
  font-weight: 500;
}

/* System Status Overview */
.status-indicator {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-indicator.online {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

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

.status-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--thm-bg-ling-green);
  border-radius: 12px;
  border: 2px solid rgba(22, 165, 113, 0.1);
  transition: all 0.3s ease;
}

.status-item:hover {
  border-color: var(--thm-teal);
  transform: translateY(-2px);
}

.status-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 20px;
}

.status-icon.email {
  background: rgba(52, 144, 220, 0.1);
  color: #3490dc;
}

.status-icon.server {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}

.status-icon.database {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.status-icon.backup {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.status-info {
  flex: 1;
}

.status-name {
  font-weight: 600;
  color: var(--thm-black);
  margin-bottom: 4px;
}

.status-detail {
  font-size: 12px;
  color: var(--thm-body-font-color);
}

.status-badge {
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.online {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

/* Performance Metrics */
.metric-period {
  display: flex;
  align-items: center;
}

.period-select {
  padding: 8px 15px;
  border: 2px solid rgba(22, 165, 113, 0.2);
  border-radius: 8px;
  background: var(--thm-white);
  color: var(--thm-black);
  font-size: 14px;
  cursor: pointer;
}

.period-select:focus {
  outline: none;
  border-color: var(--thm-teal);
}

.metrics-chart {
  margin-top: 20px;
}

.chart-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.metric-item {
  text-align: center;
  padding: 15px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
}

.metric-label {
  display: block;
  font-size: 12px;
  color: var(--thm-body-font-color);
  margin-bottom: 5px;
}

.metric-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--thm-teal);
}

.chart-visualization {
  margin-top: 20px;
}

/* Security Overview */
.security-overview {
  space-y: 15px;
}

.security-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: var(--thm-bg-ling-green);
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.security-item:hover {
  background: rgba(22, 165, 113, 0.05);
}

.security-icon {
  width: 40px;
  height: 40px;
  background: rgba(22, 165, 113, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-teal);
  margin-right: 15px;
}

.security-info {
  flex: 1;
}

.security-name {
  font-weight: 600;
  color: var(--thm-black);
  margin-bottom: 4px;
}

.security-status {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.security-status.active {
  color: #28a745;
}

.auth-field .password-toggle {
  position: absolute;
  right: 15px;
  z-index: 2;
  color: #383838;
  cursor: pointer;
  font-size: 16px;
  transition: color 0.3s linear;
}

.auth-field .password-toggle:hover {
  color: var(--thm-teal);
}

/* Auth Form Wrapper Styling */
.login-form-wrapper,
.register-form-wrapper,
.forgot-password-wrapper {
  background: #fff;
  padding: 50px 40px;
  border-radius: 10px;
  box-shadow: 0px 10px 50px 0px rgba(22, 165, 113, 0.15);
}

/* Social Login Buttons */
.social-login-btn:hover {
  background: #e3f9f5;
  border-color: var(--thm-teal) !important;
}

/* Form Checkbox Styling */
.form-check-input:checked {
  background-color: var(--thm-teal);
  border-color: var(--thm-teal);
}

.form-check-input:focus {
  border-color: var(--thm-teal);
  box-shadow: 0 0 0 0.25rem rgba(22, 165, 113, 0.25);
}

/* Header Button Box - Multiple Buttons */
.btn-box {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  flex-wrap: nowrap !important;
}

.btn-box .thm-btn {
  white-space: nowrap !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}

/* Header Auth Links - Improved Alignment */
.header-auth-links {
  display: inline-flex;
  align-items: center;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

.header-auth-links .auth-link {
  color: var(--thm-white);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s linear;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  height: 30px;
  line-height: 1;
  white-space: nowrap;
}

.header-auth-links .auth-link i {
  margin-right: 6px;
  font-size: 13px;
  opacity: 0.9;
}

.header-auth-links .auth-link:hover {
  color: var(--thm-white);
  background: rgba(22, 165, 113, 0.2);
  transform: translateY(-1px);
}

.header-auth-links .auth-separator {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 6px;
  font-weight: 300;
  font-size: 14px;
}

/* User Account Button in Main Header */
.user-account-box {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.user-account-btn {
  height: 50px;
  width: 50px;
  background: #e3f9f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-teal);
  font-size: 20px;
  transition: all 0.3s linear;
  border: 2px solid transparent;
}

.user-account-btn:hover {
    background: var(--thm-teal);
  color: var(--thm-white);
  border-color: var(--thm-teal);
  transform: translateY(-2px);
}

/* Mobile Auth Links - Better Integration */
.mobile-auth-links {
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.mobile-auth-header {
  margin-bottom: 15px;
  text-align: center;
}

.mobile-auth-header h4 {
  color: var(--thm-teal);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  opacity: 0.9;
}

.mobile-auth-buttons {
  display: flex;
  gap: 12px;
  padding: 0 20px;
}

.mobile-auth-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s linear;
  font-weight: 500;
  font-size: 14px;
  min-height: 44px;
  text-align: center;
  white-space: nowrap;
}

.mobile-auth-btn i {
  margin-right: 6px;
  font-size: 14px;
}

.mobile-auth-btn.login-btn {
  background: transparent;
  color: var(--thm-teal);
  border: 2px solid var(--thm-teal);
}

.mobile-auth-btn.register-btn {
  background: var(--thm-teal);
  color: var(--thm-white);
  border: 2px solid var(--thm-teal);
}

.mobile-auth-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.mobile-auth-btn.login-btn:hover {
  background: var(--thm-teal);
  color: var(--thm-white);
  border-color: var(--thm-teal);
}

.mobile-auth-btn.register-btn:hover {
  background: var(--thm-teal);
  border-color: var(--thm-teal);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .header-auth-links {
    margin-left: 15px;
    padding-left: 15px;
  }
  
  .header-auth-links .auth-link {
    font-size: 13px;
    padding: 6px 12px;
  }
}

@media (max-width: 991px) {
  .header-auth-links {
    display: none;
  }
}

@media (max-width: 767px) {
  .login-form-wrapper,
  .register-form-wrapper,
  .forgot-password-wrapper {
    padding: 30px 20px;
  }
  
  .auth-field .input-group input,
  .auth-field .input-group input[type="text"],
  .auth-field .input-group input[type="email"],
  .auth-field .input-group input[type="password"],
  .auth-field .input-group input[type="tel"] {
    height: 50px;
    font-size: 15px;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
  }
  
  .auth-field .input-icon,
  .auth-field .password-toggle {
    font-size: 15px;
  }
  
  .auth-field .input-icon {
    left: 12px;
  }
  
  .auth-field .password-toggle {
    right: 12px;
  }
  
  .mobile-auth-links {
    margin: 15px 0;
    padding: 15px 0;
  }
  
  .mobile-auth-buttons {
    gap: 8px;
    padding: 0 15px;
  }
  
  .mobile-auth-btn {
    padding: 10px 12px;
    font-size: 13px;
    min-height: 40px;
  }
  
  .mobile-auth-btn i {
    margin-right: 5px;
    font-size: 13px;
  }
  
  .mobile-auth-header h4 {
    font-size: 15px;
  }
}

/* ===================================
   Newsletter Pages Styles
   =================================== */

/* Newsletter Page Styles */
.newsletter-page-sec {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
    position: relative;
}

.newsletter-page-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2316a571" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.newsletter-page-sec .container {
    position: relative;
    z-index: 2;
}

/* Newsletter Form */
.newsletter-form-wrapper {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.12);
    border: 2px solid rgba(22, 165, 113, 0.1);
    max-width: 100%;
}

.newsletter-form .contact-field {
    margin-bottom: 25px;
}

.newsletter-form .contact-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--thm-black);
    font-size: 16px;
}

.newsletter-form .contact-field input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(22, 165, 113, 0.1);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--thm-white);
}

.newsletter-form .contact-field input:focus {
    outline: none;
    border-color: var(--thm-teal);
    box-shadow: 0 0 0 3px rgba(22, 165, 113, 0.1);
}

/* Newsletter Preferences */
.newsletter-preferences {
    margin: 30px 0;
    padding: 25px;
    background: var(--thm-bg-ling-green);
    border-radius: 15px;
}

.newsletter-preferences h5 {
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.preference-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    gap: 15px;
}

.preference-item {
    position: relative;
}

.preference-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.preference-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 15px;
    background: var(--thm-white);
    border-radius: 10px;
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

.preference-item label:hover {
    border-color: var(--thm-teal);
    background: rgba(22, 165, 113, 0.05);
}

.preference-item input[type="checkbox"]:checked + label {
    background: var(--thm-teal);
    color: var(--thm-white);
    border-color: var(--thm-teal);
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--thm-teal);
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.preference-item input[type="checkbox"]:checked + label .checkmark {
    background: var(--thm-white);
    border-color: var(--thm-white);
}

.checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid var(--thm-teal);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.preference-item input[type="checkbox"]:checked + label .checkmark::after {
    display: block;
}

/* Privacy Notice */
.privacy-notice {
    margin: 30px 0;
    padding: 20px;
    background: var(--thm-bg-ling-green);
    border-radius: 10px;
    border: 2px solid rgba(22, 165, 113, 0.1);
}

.privacy-checkbox {
    position: relative;
}

.privacy-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.privacy-checkbox label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

.privacy-checkbox label a {
    color: var(--thm-teal);
    text-decoration: none;
    font-weight: 600;
}

.privacy-checkbox label a:hover {
    text-decoration: underline;
}

/* Form Submit */
.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* Newsletter Sidebar */
.newsletter-sidebar {
    position: sticky;
    top: 100px;
}

.newsletter-sidebar .sidebar-item {
    margin-bottom: 30px;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--thm-white);
    border-radius: 15px;
    box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0px 15px 35px rgba(22, 165, 113, 0.15);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--thm-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: var(--thm-white);
    font-size: 20px;
}

.benefit-content h5 {
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--thm-body-font-color);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Recent Newsletters */
.newsletter-preview-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-preview-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--thm-white);
    border-radius: 10px;
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
}

.newsletter-preview-item:hover {
    border-color: var(--thm-teal);
    transform: translateY(-2px);
}

.preview-date {
    text-align: center;
    flex-shrink: 0;
    width: 50px;
}

.preview-date .day {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--thm-teal);
    line-height: 1;
}

.preview-date .month {
    display: block;
    font-size: 12px;
    color: var(--thm-body-font-color);
    text-transform: uppercase;
    font-weight: 500;
}

.preview-content h6 {
    margin-bottom: 5px;
}

.preview-content h6 a {
    color: var(--thm-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.preview-content h6 a:hover {
    color: var(--thm-teal);
}

.preview-content p {
    color: var(--thm-body-font-color);
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Newsletter Stats */
.newsletter-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.newsletter-stats .stat-item {
    text-align: center;
    padding: 20px 15px;
    background: var(--thm-white);
    border-radius: 15px;
    box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.08);
    border: 2px solid rgba(22, 165, 113, 0.1);
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-stats .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--thm-teal);
    line-height: 1;
    margin-bottom: 5px;
}

.newsletter-stats .stat-label {
    font-size: 12px;
    color: var(--thm-body-font-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Newsletter Archive Section */
.newsletter-archive-sec {
    background: var(--thm-white);
    padding-top: 25px;
}

.newsletter-archive-item {
    background: var(--thm-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.12);
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.newsletter-archive-item:hover {
    transform: translateY(-8px);
    box-shadow: 0px 25px 60px rgba(22, 165, 113, 0.2);
}

.archive-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.newsletter-archive-item:hover .archive-image img {
    transform: scale(1.1);
}

.archive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 165, 113, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.newsletter-archive-item:hover .archive-overlay {
    opacity: 1;
}

.read-btn {
    width: 60px;
    height: 60px;
    background: var(--thm-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-teal);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-btn:hover {
    background: var(--thm-teal);
    color: var(--thm-white);
    transform: scale(1.1);
}

.archive-content {
    padding: 25px;
}

.archive-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.archive-date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--thm-body-font-color);
    font-size: 13px;
}

.archive-date i {
    color: var(--thm-teal);
}

.archive-category {
    background: var(--thm-bg-ling-green);
    color: var(--thm-teal);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.archive-content h5 {
    margin-bottom: 12px;
}

.archive-content h5 a {
    color: var(--thm-black);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.archive-content h5 a:hover {
    color: var(--thm-teal);
}

.archive-content p {
    color: var(--thm-body-font-color);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: var(--thm-teal);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--thm-dark-green);
    gap: 8px;
}

.read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: scaleUp 0.5s ease-out 0.2s both;
}

@keyframes scaleUp {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-icon i {
    color: var(--thm-white);
    font-size: 40px;
}

.success-message h4 {
    color: #155724;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-message p {
    color: #155724;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===================================
   Newsletter Single Page Styles
   =================================== */

/* Newsletter Single Section */
.newsletter-single-sec {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
    position: relative;
}

.newsletter-single-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid2" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2316a571" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid2)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.newsletter-single-sec .container {
    position: relative;
    z-index: 2;
}

/* Newsletter Content */
.newsletter-single-content {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.12);
    border: 2px solid rgba(22, 165, 113, 0.1);
}

/* Newsletter Header */
.newsletter-header {
    margin-bottom: 30px;
}

.newsletter-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(22, 165, 113, 0.1);
}

.newsletter-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--thm-body-font-color);
    font-size: 14px;
    font-weight: 500;
}

.newsletter-meta span i {
    color: var(--thm-teal);
    font-size: 16px;
}

.newsletter-category {
    background: var(--thm-bg-ling-green);
    color: var(--thm-teal) !important;
    padding: 6px 15px;
    border-radius: 15px;
    font-weight: 600 !important;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--thm-black);
    line-height: 1.3;
    margin-bottom: 15px;
}

.newsletter-excerpt {
    font-size: 1.1rem;
    color: var(--thm-body-font-color);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Featured Image */
.newsletter-featured-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
}

.newsletter-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Newsletter Body */
.newsletter-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--thm-teal);
}

.newsletter-body h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--thm-black);
    margin-top: 35px;
    margin-bottom: 15px;
}

.newsletter-body h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--thm-dark-green);
    margin-top: 25px;
    margin-bottom: 12px;
}

.newsletter-body p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--thm-body-font-color);
    margin-bottom: 20px;
}

.newsletter-body ul,
.newsletter-body ol {
    margin: 20px 0 20px 20px;
    padding-left: 20px;
}

.newsletter-body ul li,
.newsletter-body ol li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--thm-body-font-color);
    margin-bottom: 12px;
}

.newsletter-body ul li {
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}

.newsletter-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--thm-teal);
    border-radius: 50%;
}

.newsletter-body ol li {
    padding-left: 10px;
}

.newsletter-body strong {
    color: var(--thm-black);
    font-weight: 600;
}

/* Newsletter Images */
.newsletter-image {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(22, 165, 113, 0.15);
}

.newsletter-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    background: var(--thm-bg-ling-green);
    color: var(--thm-dark-green);
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* Blockquote */
.newsletter-single-content blockquote {
    background: linear-gradient(135deg, var(--thm-bg-ling-green) 0%, rgba(22, 165, 113, 0.05) 100%);
    border-left: 5px solid var(--thm-teal);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 10px;
    position: relative;
}

.newsletter-single-content blockquote i {
    color: var(--thm-teal);
    font-size: 30px;
    opacity: 0.3;
    margin-bottom: 15px;
    display: block;
}

.newsletter-single-content blockquote p {
    font-size: 18px;
    font-style: italic;
    color: var(--thm-black);
    line-height: 1.7;
    margin-bottom: 10px;
}

.newsletter-single-content blockquote cite {
    color: var(--thm-teal);
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
}

/* Info Box */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-left: 5px solid #ffa726;
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
}

.info-box-icon {
    width: 50px;
    height: 50px;
    background: #ff9800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-box-icon i {
    color: var(--thm-white);
    font-size: 24px;
}

.info-box-content h5 {
    color: #e65100;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-box-content p {
    color: #5d4037;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Newsletter Tags */
.newsletter-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(22, 165, 113, 0.1);
}

.newsletter-tags h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 15px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: var(--thm-bg-ling-green);
    color: var(--thm-teal);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(22, 165, 113, 0.2);
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: var(--thm-teal);
    color: var(--thm-white);
    border-color: var(--thm-teal);
    transform: translateY(-2px);
}

/* Newsletter Share */
.newsletter-share {
    margin-top: 30px;
    padding: 25px;
    background: var(--thm-bg-ling-green);
    border-radius: 15px;
}

.newsletter-share h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.email {
    background: #ea4335;
}

.share-btn.print {
    background: #5f6368;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Newsletter Navigation */
.newsletter-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(22, 165, 113, 0.1);
}

.nav-item a {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: var(--thm-bg-ling-green);
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
}

.nav-item a:hover {
    background: var(--thm-white);
    border-color: var(--thm-teal);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(22, 165, 113, 0.2);
}

.nav-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--thm-teal);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.next-newsletter .nav-label {
    justify-content: flex-end;
    text-align: right;
}

.nav-title {
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

/* Related Newsletters */
.related-newsletters {
    margin-top: 50px;
}

.related-newsletters h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--thm-teal);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.related-item {
    background: var(--thm-white);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(22, 165, 113, 0.15);
    border-color: var(--thm-teal);
}

.related-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-item:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 20px;
}

.related-date {
    display: inline-block;
    color: var(--thm-teal);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.related-content h5 {
    margin-bottom: 10px;
}

.related-content h5 a {
    color: var(--thm-black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.related-content h5 a:hover {
    color: var(--thm-teal);
}

.related-content p {
    color: var(--thm-body-font-color);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Subscribe Card */
.subscribe-card {
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    color: var(--thm-white);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.3);
}

.subscribe-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.subscribe-icon i {
    font-size: 32px;
    color: var(--thm-white);
}

.subscribe-card h4 {
    color: var(--thm-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.subscribe-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.subscribe-card .thm-btn {
    background: var(--thm-white);
    color: var(--thm-white);
}

.subscribe-card .thm-btn:hover {
    background: var(--thm-black);
    color: var(--thm-white);
}

/* Widget Title */
.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--thm-teal);
}

/* Categories Widget */
.categories-widget {
    background: var(--thm-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(22, 165, 113, 0.1);
    border: 2px solid rgba(22, 165, 113, 0.1);
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 12px;
}

.categories-list li:last-child {
    margin-bottom: 0;
}

.categories-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--thm-bg-ling-green);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(22, 165, 113, 0.1);
}

.categories-list li a:hover {
    background: var(--thm-teal);
    border-color: var(--thm-teal);
    transform: translateX(5px);
}

.cat-name {
    color: var(--thm-black);
    font-weight: 500;
    font-size: 15px;
}

.categories-list li a:hover .cat-name {
    color: var(--thm-white);
}

.cat-count {
    background: var(--thm-white);
    color: var(--thm-teal);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

/* Popular Newsletters */
.popular-newsletters {
    background: var(--thm-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(22, 165, 113, 0.1);
    border: 2px solid rgba(22, 165, 113, 0.1);
}

.popular-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--thm-bg-ling-green);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(22, 165, 113, 0.1);
}

.popular-item:hover {
    background: var(--thm-white);
    border-color: var(--thm-teal);
    box-shadow: 0 5px 15px rgba(22, 165, 113, 0.15);
}

.popular-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-content h6 {
    margin-bottom: 8px;
}

.popular-content h6 a {
    color: var(--thm-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.popular-content h6 a:hover {
    color: var(--thm-teal);
}

.popular-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--thm-body-font-color);
    font-size: 12px;
    font-weight: 500;
}

.popular-meta i {
    color: var(--thm-teal);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--thm-dark-green) 0%, var(--thm-black) 100%);
    color: var(--thm-white);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.cta-box h4 {
    color: var(--thm-white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-box .thm-btn {
    background: var(--thm-teal);
    color: var(--thm-white);
}

.cta-box .thm-btn:hover {
    background: var(--thm-white);
    color: var(--thm-teal);
}

/* Newsletter Pages Responsive Design */
@media (max-width: 991px) {
    .newsletter-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .preference-options {
        grid-template-columns: 1fr;
    }
    
    .newsletter-stats .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .newsletter-navigation {
        grid-template-columns: 1fr;
    }

    .next-newsletter .nav-label {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .newsletter-form-wrapper {
        padding: 25px;
    }
    
    .newsletter-preferences {
        padding: 20px;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
    }
    
    .benefit-icon i {
        font-size: 16px;
    }
    
    .newsletter-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .newsletter-stats .stat-item {
        padding: 15px 10px;
    }
    
    .newsletter-stats .stat-number {
        font-size: 20px;
    }
    
    .archive-content {
        padding: 20px;
    }
    
    .archive-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .newsletter-single-content {
        padding: 30px 25px;
    }

    .newsletter-title {
        font-size: 1.8rem;
    }

    .newsletter-excerpt {
        font-size: 1rem;
    }

    .newsletter-body h2 {
        font-size: 1.6rem;
    }

    .newsletter-body h3 {
        font-size: 1.4rem;
    }

    .newsletter-body h4 {
        font-size: 1.2rem;
    }

    .newsletter-meta {
        gap: 10px;
    }

    .info-box {
        flex-direction: column;
        text-align: center;
    }

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

    .categories-widget,
    .popular-newsletters {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .newsletter-form-wrapper {
        padding: 20px;
    }
    
    .newsletter-form .contact-field input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-preview-item {
        flex-direction: column;
        text-align: center;
    }
    
    .preview-date {
        width: auto;
    }

    .newsletter-single-content {
        padding: 25px 20px;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .newsletter-body h2 {
        font-size: 1.4rem;
    }

    .newsletter-body h3 {
        font-size: 1.2rem;
    }

    .newsletter-meta {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-meta span {
        width: 100%;
    }

    .share-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===================================
   Privacy Policy & Terms Pages Styles
   =================================== */

/* Common Styles for Privacy and Terms Pages */
.privacy-policy-sec,
.terms-service-sec {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
    position: relative;
}

.privacy-policy-sec::before,
.terms-service-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="legal-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2316a571" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23legal-grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.privacy-policy-sec .container,
.terms-service-sec .container {
    position: relative;
    z-index: 2;
}

/* Main Content */
.policy-content,
.terms-content {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.12);
    border: 2px solid rgba(22, 165, 113, 0.1);
}

/* Introduction */
.policy-intro,
.terms-intro {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--thm-teal);
}

.policy-intro h2,
.terms-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 15px;
}

.policy-date,
.terms-date {
    color: var(--thm-teal);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.policy-intro p,
.terms-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--thm-body-font-color);
}

/* Table of Contents */
.policy-toc,
.terms-toc {
    background: var(--thm-bg-ling-green);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 2px solid rgba(22, 165, 113, 0.1);
}

.policy-toc h3,
.terms-toc h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 20px;
}

.policy-toc ol,
.terms-toc ol {
    counter-reset: toc-counter;
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-toc ol li,
.terms-toc ol li {
    counter-increment: toc-counter;
    margin-bottom: 12px;
}

.policy-toc ol li a,
.terms-toc ol li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: var(--thm-white);
    border-radius: 10px;
    text-decoration: none;
    color: var(--thm-black);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(22, 165, 113, 0.1);
}

.policy-toc ol li a::before,
.terms-toc ol li a::before {
    content: counter(toc-counter) ".";
    color: var(--thm-teal);
    font-weight: 700;
    margin-right: 12px;
    min-width: 25px;
}

.policy-toc ol li a:hover,
.terms-toc ol li a:hover {
    background: var(--thm-teal);
    color: var(--thm-white);
    transform: translateX(5px);
    border-color: var(--thm-teal);
}

.policy-toc ol li a:hover::before,
.terms-toc ol li a:hover::before {
    color: var(--thm-white);
}

/* Policy/Terms Sections */
.policy-section,
.terms-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(22, 165, 113, 0.1);
}

.policy-section:last-child,
.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h3,
.terms-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 20px;
    scroll-margin-top: 100px;
}

.policy-section h4,
.terms-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--thm-dark-green);
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-section h5,
.terms-section h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 10px;
}

.policy-section p,
.terms-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--thm-body-font-color);
    margin-bottom: 15px;
}

.policy-section ul,
.policy-section ol,
.terms-section ul,
.terms-section ol {
    margin: 20px 0 20px 20px;
    padding-left: 20px;
}

.policy-section ul li,
.policy-section ol li,
.terms-section ul li,
.terms-section ol li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--thm-body-font-color);
    margin-bottom: 12px;
}

.policy-section ul li,
.terms-section ul li {
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}

.policy-section ul li::before,
.terms-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--thm-teal);
    border-radius: 50%;
}

.policy-section ol li,
.terms-section ol li {
    padding-left: 10px;
}

.policy-section strong,
.terms-section strong {
    color: var(--thm-black);
    font-weight: 600;
}

/* Security Features Grid */
.security-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--thm-bg-ling-green);
    border-radius: 12px;
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
}

.security-item:hover {
    background: var(--thm-white);
    border-color: var(--thm-teal);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(22, 165, 113, 0.15);
}

.security-item i {
    font-size: 32px;
    color: var(--thm-teal);
    flex-shrink: 0;
}

.security-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 8px;
}

.security-content p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--thm-body-font-color);
    margin-bottom: 0;
}

/* Prohibited List */
.prohibited-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.prohibited-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #fff3f3;
    border-radius: 10px;
    border: 2px solid #ffcdd2;
}

.prohibited-item i {
    font-size: 24px;
    color: #d32f2f;
    flex-shrink: 0;
}

.prohibited-item p {
    font-size: 14px;
    color: #c62828;
    margin-bottom: 0;
    font-weight: 500;
}

/* Warranty Box */
.warranty-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 5px solid #2196f3;
    padding: 25px;
    margin: 25px 0;
    border-radius: 10px;
}

.warranty-box h4 {
    color: #1565c0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.warranty-box p {
    color: #0d47a1;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Acknowledgment Box */
.acknowledgment-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 2px solid #ffa726;
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

.acknowledgment-box i {
    font-size: 32px;
    color: #f57c00;
    flex-shrink: 0;
}

.acknowledgment-box p {
    color: #e65100;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--thm-bg-ling-green);
    border-radius: 12px;
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: var(--thm-white);
    border-color: var(--thm-teal);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(22, 165, 113, 0.15);
}

.contact-method i {
    font-size: 28px;
    color: var(--thm-teal);
    flex-shrink: 0;
}

.contact-method h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 5px;
}

.contact-method p {
    font-size: 15px;
    color: var(--thm-body-font-color);
    margin-bottom: 0;
}

.contact-method a {
    color: var(--thm-teal);
    text-decoration: none;
    font-weight: 600;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* Sidebar Widgets */
.policy-sidebar,
.terms-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--thm-white);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0px 10px 30px rgba(22, 165, 113, 0.1);
    border: 2px solid rgba(22, 165, 113, 0.1);
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--thm-teal);
}

/* Quick Links */
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links li:last-child {
    margin-bottom: 0;
}

.quick-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--thm-bg-ling-green);
    border-radius: 8px;
    text-decoration: none;
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(22, 165, 113, 0.1);
}

.quick-links li a:hover {
    background: var(--thm-teal);
    color: var(--thm-white);
    transform: translateX(5px);
    border-color: var(--thm-teal);
}

.quick-links li a i {
    font-size: 10px;
    color: var(--thm-teal);
    transition: color 0.3s ease;
}

.quick-links li a:hover i {
    color: var(--thm-white);
}

/* Related Links */
.related-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--thm-bg-ling-green);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(22, 165, 113, 0.1);
}

.related-link-item:hover {
    background: var(--thm-white);
    border-color: var(--thm-teal);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(22, 165, 113, 0.15);
}

.related-link-item i {
    font-size: 24px;
    color: var(--thm-teal);
    flex-shrink: 0;
}

.related-link-item span {
    color: var(--thm-black);
    font-weight: 600;
    font-size: 15px;
}

.related-link-item:hover span {
    color: var(--thm-teal);
}

/* Help Card */
.help-card {
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    color: var(--thm-white);
    text-align: center;
    box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.3);
}

.help-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.help-icon i {
    font-size: 32px;
    color: var(--thm-white);
}

.help-card h4 {
    color: var(--thm-white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    border-bottom: none;
    padding-bottom: 0;
}

.help-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.help-card .thm-btn {
    background: var(--thm-white);
    color: var(--thm-white);
}

.help-card .thm-btn:hover {
    background: var(--thm-black);
    color: var(--thm-white);
}

/* Notice Card */
.notice-card {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 2px solid #ffa726;
}

.notice-icon {
    width: 70px;
    height: 70px;
    background: #ff9800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.notice-icon i {
    font-size: 32px;
    color: var(--thm-white);
}

.notice-card h4 {
    color: #e65100;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    border-bottom: none;
    padding-bottom: 0;
}

.notice-card p {
    color: #5d4037;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .policy-sidebar,
    .terms-sidebar {
        position: static;
        margin-top: 40px;
    }

    .security-features,
    .prohibited-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .policy-content,
    .terms-content {
        padding: 30px 25px;
    }

    .policy-intro h2,
    .terms-intro h2 {
        font-size: 2rem;
    }

    .policy-section h3,
    .terms-section h3 {
        font-size: 1.5rem;
    }

    .policy-section h4,
    .terms-section h4 {
        font-size: 1.2rem;
    }

    .policy-toc,
    .terms-toc {
        padding: 20px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .security-features,
    .prohibited-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .policy-content,
    .terms-content {
        padding: 25px 20px;
    }

    .policy-intro h2,
    .terms-intro h2 {
        font-size: 1.6rem;
    }

    .policy-section h3,
    .terms-section h3 {
        font-size: 1.3rem;
    }

    .policy-toc,
    .terms-toc {
        padding: 15px;
    }

    .sidebar-widget {
        padding: 20px;
    }
}

/* ===================================
   Case Studies Page Styles
   =================================== */

.case-studies-sec {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

/* Featured Case Study */
.case-study-featured {
    background: var(--thm-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.12);
    border: 2px solid rgba(22, 165, 113, 0.1);
    margin-bottom: 60px;
    padding: 40px;
}

.case-study-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: auto;
    display: block;
}

.case-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--thm-teal);
    color: var(--thm-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.case-study-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 20px;
}

.case-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.case-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--thm-body-font-color);
    font-size: 14px;
    font-weight: 500;
}

.case-meta i {
    color: var(--thm-teal);
}

.case-challenge,
.case-results {
    margin: 25px 0;
}

.case-challenge h5,
.case-results h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-challenge i {
    color: #ff9800;
}

.case-results i {
    color: #4caf50;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.result-item {
    text-align: center;
    padding: 20px;
    background: var(--thm-bg-ling-green);
    border-radius: 12px;
    border: 2px solid rgba(22, 165, 113, 0.1);
}

.result-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--thm-teal);
    line-height: 1;
    margin-bottom: 8px;
}

.result-label {
    font-size: 13px;
    color: var(--thm-body-font-color);
    font-weight: 500;
}

/* Case Study Cards */
.case-study-card {
    background: var(--thm-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.12);
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 25px 60px rgba(22, 165, 113, 0.2);
}

.case-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.case-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-card-image img {
    transform: scale(1.1);
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 165, 113, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.case-study-card:hover .case-overlay {
    opacity: 1;
}

.case-link {
    width: 60px;
    height: 60px;
    background: var(--thm-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-teal);
    font-size: 20px;
    text-decoration: none;
}

.case-link:hover {
    transform: scale(1.1);
}

.case-card-content {
    padding: 25px;
}

.case-card-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.industry-tag,
.duration-tag {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.industry-tag {
    background: var(--thm-bg-ling-green);
    color: var(--thm-teal);
}

.duration-tag {
    background: #e3f2fd;
    color: #1976d2;
}

.case-card-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.case-card-content h4 a {
    color: var(--thm-black);
    text-decoration: none;
}

.case-card-content h4 a:hover {
    color: var(--thm-teal);
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.metric {
    text-align: center;
    padding: 15px;
    background: var(--thm-bg-ling-green);
    border-radius: 10px;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--thm-teal);
    margin-bottom: 5px;
}

.metric-label {
    display: block;
    font-size: 12px;
    color: var(--thm-body-font-color);
    font-weight: 500;
}

/* Case Stats Section */
.case-stats-sec {
    background: var(--thm-white);
}

.case-stats-wrapper {
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    border-radius: 20px;
    padding: 50px 30px;
}

.stat-box {
    text-align: center;
}

.stat-box .stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-box .stat-icon i {
    font-size: 32px;
    color: var(--thm-white);
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--thm-white);
    margin-bottom: 10px;
}

.stat-box .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Case CTA Section */
.case-cta-sec {
    padding: 60px 0;
    background: var(--thm-white);
}

.case-cta-wrapper {
    background: linear-gradient(135deg, var(--thm-dark-green) 0%, var(--thm-black) 100%);
    border-radius: 20px;
    padding: 50px 40px;
}

.case-cta-wrapper h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--thm-white);
    margin-bottom: 10px;
}

.case-cta-wrapper p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ===================================
   Industries Page Styles
   =================================== */

.industries-sec {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

.industry-card {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.12);
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 25px 60px rgba(22, 165, 113, 0.2);
    border-color: var(--thm-teal);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.industry-icon i {
    font-size: 40px;
    color: var(--thm-white);
}

.industry-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 15px;
}

.industry-card > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--thm-body-font-color);
    margin-bottom: 25px;
}

.industry-features {
    margin-bottom: 25px;
}

.industry-features h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 15px;
}

.industry-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-features ul li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--thm-body-font-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.industry-features ul li i {
    color: var(--thm-teal);
    font-size: 14px;
}

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

.industry-stats .stat {
    background: var(--thm-bg-ling-green);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    color: var(--thm-body-font-color);
}

.industry-stats .stat-num {
    font-weight: 700;
    color: var(--thm-teal);
}

.industry-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--thm-teal);
    color: var(--thm-white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.industry-btn:hover {
    background: var(--thm-dark-green);
    gap: 12px;
}

/* Industry Why Section */
.industry-why-sec {
    background: var(--thm-white);
}

.advantage-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--thm-white);
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(22, 165, 113, 0.1);
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px rgba(22, 165, 113, 0.15);
    border-color: var(--thm-teal);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: var(--thm-bg-ling-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-icon i {
    font-size: 32px;
    color: var(--thm-teal);
}

.advantage-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--thm-body-font-color);
    margin-bottom: 0;
}

/* ===================================
   Careers Page Styles
   =================================== */

.careers-hero-sec {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

.careers-hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 20px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--thm-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(22, 165, 113, 0.1);
}

.feature-item i {
    font-size: 24px;
    color: var(--thm-teal);
}

.feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--thm-black);
}

.careers-hero-image img {
    width: 100%;
    height: 380px;
    border-radius: 20px;

}

/* Benefits Section */
.careers-benefits-sec {
    background: var(--thm-white);
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--thm-white);
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(22, 165, 113, 0.1);
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px rgba(22, 165, 113, 0.15);
    border-color: var(--thm-teal);
}

.benefit-card .benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--thm-bg-ling-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-card .benefit-icon i {
    font-size: 32px;
    color: var(--thm-teal);
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--thm-body-font-color);
    margin-bottom: 0;
}

/* Open Positions Section */
.open-positions-sec {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

.job-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: var(--thm-white);
    color: var(--thm-black);
    border: 2px solid rgba(22, 165, 113, 0.1);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--thm-teal);
    color: var(--thm-white);
    border-color: var(--thm-teal);
}

.jobs-list {
    max-width: 1000px;
    margin: 0 auto;
}

.job-card {
    background: var(--thm-white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0px 10px 30px rgba(22, 165, 113, 0.1);
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 20px 50px rgba(22, 165, 113, 0.15);
    border-color: var(--thm-teal);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 20px;
}

.job-title-group h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--thm-body-font-color);
}

.job-meta i {
    color: var(--thm-teal);
}

.job-salary {
    text-align: right;
    flex-shrink: 0;
}

.salary-range {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--thm-teal);
}

.salary-period {
    font-size: 13px;
    color: var(--thm-body-font-color);
}

.job-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--thm-body-font-color);
    margin-bottom: 20px;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.job-tag {
    padding: 6px 15px;
    background: var(--thm-bg-ling-green);
    color: var(--thm-teal);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid rgba(22, 165, 113, 0.1);
}

.job-posted {
    font-size: 13px;
    color: var(--thm-body-font-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-posted i {
    color: var(--thm-teal);
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--thm-teal);
    color: var(--thm-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: var(--thm-dark-green);
    gap: 12px;
}

/* Application Modal */
.application-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.application-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    background: var(--thm-white);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10000;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid rgba(22, 165, 113, 0.1);
}

.modal-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--thm-black);
    margin: 0;
}

.modal-close {
    width: 40px;
    height: 40px;
    background: var(--thm-bg-ling-green);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--thm-teal);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--thm-teal);
    color: var(--thm-white);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.application-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.application-form .form-group {
    margin-bottom: 20px;
}

.application-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--thm-black);
    font-size: 14px;
}

.application-form input,
.application-form select,
.application-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(22, 165, 113, 0.1);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    outline: none;
    border-color: var(--thm-teal);
    box-shadow: 0 0 0 3px rgba(22, 165, 113, 0.1);
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border: 2px dashed rgba(22, 165, 113, 0.3);
    border-radius: 10px;
    background: var(--thm-bg-ling-green);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.file-upload-label:hover {
    border-color: var(--thm-teal);
    background: rgba(22, 165, 113, 0.1);
}

.file-upload-label i {
    font-size: 40px;
    color: var(--thm-teal);
    margin-bottom: 10px;
}

.file-upload-label span {
    font-size: 14px;
    color: var(--thm-body-font-color);
}

/* Company Culture */
.company-culture-sec {
    background: var(--thm-white);
}

.culture-card {
    background: var(--thm-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(22, 165, 113, 0.1);
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px rgba(22, 165, 113, 0.15);
}

.culture-image {
    height: 200px;
    overflow: hidden;
}

.culture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.culture-card:hover .culture-image img {
    transform: scale(1.1);
}

.culture-content {
    padding: 25px;
    text-align: center;
}

.culture-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 12px;
}

.culture-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--thm-body-font-color);
    margin-bottom: 0;
}

/* ===================================
   Partners Page Styles
   =================================== */

.partners-sec {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

.partner-card {
    background: var(--thm-white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0px 10px 30px rgba(22, 165, 113, 0.1);
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px rgba(22, 165, 113, 0.15);
    border-color: var(--thm-teal);
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 8px;
}

.partner-level {
    font-size: 14px;
    color: var(--thm-teal);
    font-weight: 600;
    margin-bottom: 15px;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--thm-bg-ling-green);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--thm-dark-green);
}

.partner-badge i {
    color: var(--thm-teal);
}

/* Certifications Section */
.certifications-sec {
    background: var(--thm-white);
}

.cert-category-card {
    background: var(--thm-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0px 10px 30px rgba(22, 165, 113, 0.1);
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.cert-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px rgba(22, 165, 113, 0.15);
    border-color: var(--thm-teal);
}

.cert-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(22, 165, 113, 0.1);
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-icon i {
    font-size: 28px;
    color: var(--thm-white);
}

.cert-category-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--thm-black);
    margin: 0;
}

.cert-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cert-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--thm-body-font-color);
    border-bottom: 1px solid rgba(22, 165, 113, 0.1);
}

.cert-list li:last-child {
    border-bottom: none;
}

.cert-list li i {
    color: var(--thm-teal);
    font-size: 18px;
}

/* Memberships Section */
.memberships-sec {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

.membership-card {
    background: var(--thm-white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0px 10px 30px rgba(22, 165, 113, 0.1);
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px rgba(22, 165, 113, 0.15);
    border-color: var(--thm-teal);
}

.membership-icon {
    width: 70px;
    height: 70px;
    background: var(--thm-bg-ling-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.membership-icon i {
    font-size: 32px;
    color: var(--thm-teal);
}

.membership-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 10px;
}

.membership-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--thm-body-font-color);
    margin-bottom: 15px;
}

.membership-status {
    display: inline-block;
    padding: 6px 15px;
    background: var(--thm-bg-ling-green);
    color: var(--thm-teal);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Awards Section */
.awards-sec {
    background: var(--thm-white);
}

.award-card {
    background: var(--thm-white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0px 10px 30px rgba(22, 165, 113, 0.1);
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px rgba(22, 165, 113, 0.15);
    border-color: var(--thm-teal);
}

.award-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.award-icon i {
    font-size: 32px;
    color: var(--thm-white);
}

.award-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 10px;
}

.award-card p {
    font-size: 14px;
    color: var(--thm-body-font-color);
    margin-bottom: 12px;
}

.award-year {
    display: inline-block;
    padding: 5px 15px;
    background: var(--thm-bg-ling-green);
    color: var(--thm-teal);
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
}

/* Partner CTA Section */
.partner-cta-sec {
    padding: 60px 0;
    background: var(--thm-white);
}

.partner-cta-wrapper {
    background: linear-gradient(135deg, var(--thm-dark-green) 0%, var(--thm-black) 100%);
    border-radius: 20px;
    padding: 50px 40px;
}

.partner-cta-wrapper h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--thm-white);
    margin-bottom: 10px;
}

.partner-cta-wrapper p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Responsive Design for New Pages */
@media (max-width: 991px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .case-study-featured {
        padding: 30px 25px;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .result-item {
        padding: 15px 10px;
    }

    .result-number {
        font-size: 1.5rem;
    }

    .case-metrics {
        grid-template-columns: 1fr;
    }

    .job-header {
        flex-direction: column;
    }

    .job-salary {
        text-align: left;
    }

    .job-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .modal-container {
        margin: 20px;
    }

    .modal-header,
    .modal-body {
        padding: 20px;
    }

    .application-form .form-row {
        grid-template-columns: 1fr;
    }

    .industry-stats {
        grid-template-columns: 1fr;
    }

    .security-features {
        grid-template-columns: 1fr;
    }

    .prohibited-list {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .case-study-featured {
        padding: 20px;
    }

    .case-study-content h3 {
        font-size: 1.5rem;
    }

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

    .job-card {
        padding: 20px;
    }

    .job-title-group h4 {
        font-size: 1.1rem;
    }

    .stat-box .stat-number {
        font-size: 2rem;
    }

    .case-cta-wrapper,
    .partner-cta-wrapper {
        padding: 30px 20px;
    }

    .case-cta-wrapper h3,
    .partner-cta-wrapper h3 {
        font-size: 1.5rem;
    }
}

/* ===================================
   Case Study Single Page Styles
   =================================== */

.case-study-single-sec {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

.case-single-content {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.12);
    border: 2px solid rgba(22, 165, 113, 0.1);
}

/* Case Single Header */
.case-single-header {
    margin-bottom: 30px;
}

.case-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(22, 165, 113, 0.1);
}

.case-single-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--thm-body-font-color);
    font-size: 14px;
    font-weight: 500;
}

.case-single-meta span i {
    color: var(--thm-teal);
}

.case-category {
    background: var(--thm-bg-ling-green);
    color: var(--thm-teal) !important;
    padding: 6px 15px;
    border-radius: 15px;
    font-weight: 600 !important;
}

.case-single-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--thm-black);
    line-height: 1.3;
    margin-bottom: 15px;
}

.case-single-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--thm-body-font-color);
    margin-bottom: 0;
}

/* Featured Image */
.case-featured-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
}

.case-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Quick Results */
.quick-results {
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

.quick-result-item {
    text-align: center;
}

.qr-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--thm-white);
    margin-bottom: 8px;
}

.qr-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Case Sections */
.case-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(22, 165, 113, 0.1);
}

.case-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.case-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--thm-teal);
}

.case-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--thm-body-font-color);
    margin-bottom: 20px;
}

/* Challenge List */
.challenge-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.challenge-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #fff8e1;
    border-radius: 12px;
    border: 2px solid #ffa726;
}

.challenge-icon {
    width: 50px;
    height: 50px;
    background: #ff9800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.challenge-icon i {
    font-size: 24px;
    color: var(--thm-white);
}

.challenge-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e65100;
    margin-bottom: 8px;
}

.challenge-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #5d4037;
    margin-bottom: 0;
}

/* Solution Phases */
.solution-phase {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 25px;
    background: var(--thm-bg-ling-green);
    border-radius: 12px;
    border-left: 4px solid var(--thm-teal);
}

.phase-number {
    width: 60px;
    height: 60px;
    background: var(--thm-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--thm-white);
    flex-shrink: 0;
}

.phase-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 10px;
}

.phase-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--thm-body-font-color);
    margin-bottom: 0;
}

/* Case Image Section */
.case-image-section {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(22, 165, 113, 0.15);
}

.case-image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.case-image-section .image-caption {
    background: var(--thm-bg-ling-green);
    color: var(--thm-dark-green);
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* Tech Stack */
.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tech-category h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 12px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    padding: 8px 18px;
    background: var(--thm-bg-ling-green);
    color: var(--thm-teal);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(22, 165, 113, 0.2);
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.impact-card {
    padding: 25px;
    background: var(--thm-bg-ling-green);
    border-radius: 12px;
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
}

.impact-card:hover {
    background: var(--thm-white);
    border-color: var(--thm-teal);
    box-shadow: 0 5px 15px rgba(22, 165, 113, 0.15);
}

.impact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.impact-icon.success {
    background: #4caf50;
}

.impact-icon i {
    font-size: 28px;
    color: var(--thm-white);
}

.impact-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 10px;
}

.impact-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--thm-body-font-color);
    margin-bottom: 0;
}

/* Case Testimonial */
.case-testimonial {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    position: relative;
}

.testimonial-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 50px;
    color: rgba(33, 150, 243, 0.2);
}

.case-testimonial blockquote {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

.case-testimonial blockquote p {
    font-size: 1.1rem;
    font-style: italic;
    color: #0d47a1;
    line-height: 1.8;
    margin-bottom: 20px;
}

.case-testimonial cite {
    display: block;
    font-style: normal;
    margin-top: 15px;
}

.case-testimonial cite strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 5px;
}

.case-testimonial cite span {
    font-size: 14px;
    color: #1976d2;
    font-weight: 500;
}

/* Key Takeaways */
.takeaway-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.takeaway-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--thm-bg-ling-green);
    border-radius: 12px;
    border: 2px solid rgba(22, 165, 113, 0.1);
}

.takeaway-item i {
    font-size: 24px;
    color: var(--thm-teal);
    flex-shrink: 0;
    margin-top: 3px;
}

.takeaway-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--thm-body-font-color);
    margin-bottom: 0;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 50px;
    margin-top: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 7px;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--thm-teal), var(--thm-green));
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -37px;
    top: 5px;
    width: 40px;
    height: 40px;
    background: var(--thm-white);
    border: 3px solid var(--thm-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-marker i {
    font-size: 12px;
    color: var(--thm-teal);
}

.timeline-content {
    background: var(--thm-bg-ling-green);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(22, 165, 113, 0.1);
}

.timeline-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--thm-body-font-color);
    margin-bottom: 0;
}

/* Case Share */
.case-share {
    margin-top: 40px;
    padding: 25px;
    background: var(--thm-bg-ling-green);
    border-radius: 15px;
}

.case-share h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 15px;
}

/* Related Cases */
.related-cases {
    margin-top: 50px;
}

.related-cases h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--thm-teal);
}

.related-case-card {
    background: var(--thm-white);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(22, 165, 113, 0.1);
    transition: all 0.3s ease;
}

.related-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(22, 165, 113, 0.15);
    border-color: var(--thm-teal);
}

.related-case-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.related-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-case-card:hover .related-case-image img {
    transform: scale(1.1);
}

.related-case-content {
    padding: 20px;
}

.related-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--thm-bg-ling-green);
    color: var(--thm-teal);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.related-case-content h5 {
    margin-bottom: 10px;
}

.related-case-content h5 a {
    color: var(--thm-black);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.related-case-content h5 a:hover {
    color: var(--thm-teal);
}

.related-case-content p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--thm-body-font-color);
    margin-bottom: 0;
}

/* Case Sidebar */
.case-sidebar {
    position: sticky;
    top: 100px;
}

.project-info-widget {
    background: var(--thm-white);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0px 10px 30px rgba(22, 165, 113, 0.1);
    border: 2px solid rgba(22, 165, 113, 0.1);
}

.project-info-widget h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--thm-teal);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(22, 165, 113, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--thm-black);
}

.info-value {
    font-size: 14px;
    color: var(--thm-body-font-color);
}

/* Services Widget */
.services-widget {
    background: var(--thm-white);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0px 10px 30px rgba(22, 165, 113, 0.1);
    border: 2px solid rgba(22, 165, 113, 0.1);
}

.services-widget h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--thm-teal);
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--thm-body-font-color);
    border-bottom: 1px solid rgba(22, 165, 113, 0.1);
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li i {
    color: var(--thm-teal);
    font-size: 16px;
}

/* Download Widget */
.download-widget {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 15px;
    padding: 30px 25px;
    margin-bottom: 25px;
    text-align: center;
    border: 2px solid #2196f3;
}

.download-icon {
    width: 70px;
    height: 70px;
    background: #2196f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.download-icon i {
    font-size: 32px;
    color: var(--thm-white);
}

.download-widget h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 12px;
}

.download-widget p {
    font-size: 14px;
    color: #1565c0;
    margin-bottom: 20px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #2196f3;
    color: var(--thm-white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #1565c0;
    gap: 15px;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    color: var(--thm-white);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.3);
}

.cta-widget h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--thm-white);
    margin-bottom: 12px;
}

.cta-widget p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.cta-widget .thm-btn {
    background: var(--thm-white);
    color: var(--thm-white);
}

.cta-widget .thm-btn:hover {
    background: var(--thm-black);
    color: var(--thm-white);
}

/* Responsive for Case Study Single */
@media (max-width: 991px) {
    .case-sidebar {
        position: static;
        margin-top: 40px;
    }

    .challenge-list,
    .impact-grid,
    .takeaway-grid {
        grid-template-columns: 1fr;
    }

    .quick-results .row > div {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .case-single-content {
        padding: 30px 25px;
    }

    .case-single-title {
        font-size: 1.8rem;
    }

    .case-section h2 {
        font-size: 1.6rem;
    }

    .challenge-list,
    .impact-grid,
    .takeaway-grid {
        grid-template-columns: 1fr;
    }

    .solution-phase {
        flex-direction: column;
        text-align: center;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-marker {
        left: -27px;
        width: 35px;
        height: 35px;
    }

    .quick-results {
        padding: 20px;
    }

    .qr-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .case-single-content {
        padding: 25px 20px;
    }

    .case-single-title {
        font-size: 1.5rem;
    }

    .case-single-meta {
        flex-direction: column;
        gap: 10px;
    }

    .case-testimonial {
        padding: 25px 20px;
    }

    .testimonial-icon {
        font-size: 35px;
        top: 15px;
        left: 20px;
    }
}

/* ===================================
   Career Application Page Styles
   =================================== */

.career-application-sec {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
    overflow: visible;
    min-height: auto;
    height: auto;
}

.application-form-wrapper {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.12);
    border: 2px solid rgba(22, 165, 113, 0.1);
    overflow: visible;
    min-height: auto;
    height: auto;
}

.application-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--thm-teal);
}

.application-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 15px;
}

.application-header p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--thm-body-font-color);
    margin-bottom: 0;
}

/* Success Message */
.application-success {
    text-align: center;
    padding: 60px 40px;
    animation: slideDown 0.5s ease-out;
}

.application-success .success-icon {
    width: 100px;
    height: 100px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: scaleUp 0.5s ease-out 0.2s both;
}

.application-success .success-icon i {
    font-size: 50px;
    color: var(--thm-white);
}

.application-success h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 15px;
}

.application-success p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--thm-body-font-color);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(22, 165, 113, 0.1);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 25px;
    background: var(--thm-teal);
    border-radius: 2px;
}

/* Form Rows and Groups */
.career-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.career-form .form-group {
    margin-bottom: 25px;
}

.career-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--thm-black);
    font-size: 15px;
}

.career-form input[type="text"],
.career-form input[type="email"],
.career-form input[type="tel"],
.career-form input[type="url"],
.career-form select,
.career-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(22, 165, 113, 0.1);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--thm-white);
    font-family: inherit;
}

.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus {
    outline: none;
    border-color: var(--thm-teal);
    box-shadow: 0 0 0 4px rgba(22, 165, 113, 0.1);
}

.career-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    display: block;
    font-size: 13px;
    color: var(--thm-body-font-color);
    margin-top: 5px;
    font-weight: 400;
}

/* File Upload Area */
.file-upload-area {
    position: relative;
}

.file-upload-area input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-upload-area .file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    border: 3px dashed rgba(22, 165, 113, 0.3);
    border-radius: 15px;
    background: var(--thm-bg-ling-green);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.file-upload-area .file-upload-label:hover {
    border-color: var(--thm-teal);
    background: rgba(22, 165, 113, 0.15);
}

.file-upload-area .file-upload-label i {
    font-size: 48px;
    color: var(--thm-teal);
    margin-bottom: 15px;
}

.upload-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 5px;
}

.upload-hint {
    font-size: 13px;
    color: var(--thm-body-font-color);
}

.file-name {
    display: none;
    padding: 12px 15px;
    background: var(--thm-bg-ling-green);
    border-radius: 8px;
    color: var(--thm-teal);
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--thm-teal);
}

.checkbox-item label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--thm-teal);
}

.radio-item label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

/* Form Submit */
.form-submit {
    text-align: center;
    margin-top: 40px;
}

.submit-note {
    font-size: 14px;
    color: var(--thm-body-font-color);
    margin-top: 15px;
    margin-bottom: 0;
}

/* Application Sidebar */
.application-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--thm-white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0px 10px 30px rgba(22, 165, 113, 0.1);
    border: 2px solid rgba(22, 165, 113, 0.1);
}

.sidebar-card .card-icon {
    width: 70px;
    height: 70px;
    background: var(--thm-bg-ling-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sidebar-card .card-icon i {
    font-size: 32px;
    color: var(--thm-teal);
}

.sidebar-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 20px;
    text-align: center;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--thm-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--thm-white);
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 5px;
}

.step-content p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--thm-body-font-color);
    margin-bottom: 0;
}

/* Tips Card */
.tips-card {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-color: #ffa726;
}

.tips-card .card-icon {
    background: #ff9800;
}

.tips-card .card-icon i {
    color: var(--thm-white);
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: #5d4037;
    border-bottom: 1px solid rgba(255, 152, 0, 0.2);
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li i {
    color: #f57c00;
    font-size: 16px;
    margin-top: 2px;
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    color: var(--thm-white);
}

.contact-card .card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-card .card-icon i {
    color: var(--thm-white);
}

.contact-card h4 {
    color: var(--thm-white);
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.25);
}

.contact-item i {
    color: var(--thm-white);
    font-size: 18px;
}

.contact-item a {
    color: var(--thm-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* Back Card */
.back-card {
    background: var(--thm-bg-ling-green);
    border-color: var(--thm-teal);
}

.back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    color: var(--thm-teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--thm-dark-green);
    gap: 15px;
}

.back-link i {
    font-size: 16px;
}

/* Responsive for Career Application */
@media (max-width: 991px) {
    .application-sidebar {
        position: static;
        margin-top: 40px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .application-form-wrapper {
        padding: 30px 25px;
    }

    .application-header h2 {
        font-size: 1.8rem;
    }

    .career-form .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .radio-group {
        flex-direction: column;
        gap: 12px;
    }

    .application-success {
        padding: 40px 20px;
    }

    .application-success h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .application-form-wrapper {
        padding: 25px 20px;
    }

    .application-header h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .file-upload-area .file-upload-label {
        padding: 40px 20px;
    }

    .file-upload-area .file-upload-label i {
        font-size: 36px;
    }

    .sidebar-card {
        padding: 25px 20px;
    }

    .application-success .success-icon {
        width: 80px;
        height: 80px;
    }

    .application-success .success-icon i {
        font-size: 40px;
    }
}

/* ===================================
   Career Application Form V2 Styles
   =================================== */

/* Form V2 Container */
.career-form-v2 {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

/* Form Section V2 */
.form-section-v2 {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 8px 32px rgba(22, 165, 113, 0.08);
    border: 2px solid rgba(22, 165, 113, 0.06);
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
    min-height: auto;
}

.form-section-v2:hover {
    box-shadow: 0px 12px 48px rgba(22, 165, 113, 0.12);
    border-color: rgba(22, 165, 113, 0.15);
    transform: translateY(-2px);
}


/* Section Header V2 */
.section-header-v2 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(22, 165, 113, 0.1);
}

.section-icon-v2 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 16px rgba(22, 165, 113, 0.3);
}

.section-icon-v2 i {
    font-size: 22px;
    color: var(--thm-white);
}

.section-title-v2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--thm-black);
    margin: 0;
}

/* Form Row V2 */
.form-row-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
    width: 100%;
    box-sizing: border-box;
}

.form-row-v2:last-child {
    margin-bottom: 0;
}

/* Form Group V2 */
.form-group-v2 {
    margin-bottom: 25px;
    width: 100%;
    display: block;
}

.form-group-v2:last-child {
    margin-bottom: 0;
}

/* Form Label V2 */
.form-label-v2 {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--thm-black);
    font-size: 15px;
    line-height: 1.4;
}

.required {
    color: #ef4444;
    font-weight: 700;
}

/* Input Wrapper V2 */
.input-wrapper-v2 {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.input-icon-v2 {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--thm-teal);
    z-index: 2;
    transition: all 0.3s ease;
}

/* Form Input V2 */
.form-input-v2 {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid rgba(22, 165, 113, 0.15);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--thm-white);
    font-family: inherit;
    color: var(--thm-black);
    box-shadow: 0px 2px 8px rgba(22, 165, 113, 0.05);
    height: auto;
    min-height: 54px;
    box-sizing: border-box;
}

.form-input-v2:focus {
    outline: none;
    border-color: var(--thm-teal);
    box-shadow: 0px 4px 16px rgba(22, 165, 113, 0.15);
    transform: translateY(-1px);
}

.form-input-v2:focus + .input-icon-v2,
.input-wrapper-v2:focus-within .input-icon-v2 {
    color: var(--thm-green);
    transform: translateY(-50%) scale(1.1);
}

.form-input-v2::placeholder {
    color: #9ca3af;
    opacity: 1;
}

/* Select Wrapper V2 */
.select-wrapper-v2 {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.select-icon-v2 {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--thm-teal);
    pointer-events: none;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Form Select V2 */
.form-select-v2 {
    width: 100%;
    padding: 6px 50px 6px 20px;
    border: 2px solid rgba(22, 165, 113, 0.15);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--thm-white);
    font-family: inherit;
    color: var(--thm-black);
    box-shadow: 0px 2px 8px rgba(22, 165, 113, 0.05);
    appearance: none;
    cursor: pointer;
    height: auto;
    min-height: 54px;
    box-sizing: border-box;
}

.form-select-v2:focus {
    outline: none;
    border-color: var(--thm-teal);
    box-shadow: 0px 4px 16px rgba(22, 165, 113, 0.15);
    transform: translateY(-1px);
}

.form-select-v2:focus + .select-icon-v2 {
    color: var(--thm-green);
    transform: translateY(-50%) rotate(180deg);
}

.form-select-v2 option {
    padding: 10px;
    color: var(--thm-black);
}

/* Textarea Wrapper V2 */
.textarea-wrapper-v2 {
    position: relative;
}

.textarea-icon-v2 {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 18px;
    color: var(--thm-teal);
    opacity: 0.6;
    z-index: 2;
}

/* Form Textarea V2 */
.form-textarea-v2 {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 2px solid rgba(22, 165, 113, 0.15);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--thm-white);
    font-family: inherit;
    color: var(--thm-black);
    box-shadow: 0px 2px 8px rgba(22, 165, 113, 0.05);
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-textarea-v2:focus {
    outline: none;
    border-color: var(--thm-teal);
    box-shadow: 0px 4px 16px rgba(22, 165, 113, 0.15);
    transform: translateY(-1px);
}

.form-textarea-v2:focus + .textarea-icon-v2 {
    color: var(--thm-green);
    opacity: 1;
}

.form-textarea-v2::placeholder {
    color: #9ca3af;
    opacity: 1;
}

/* Form Hint V2 */
.form-hint-v2 {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
    font-weight: 400;
    line-height: 1.4;
}

/* Checkbox Group V2 */
.checkbox-group-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

/* Checkbox Item V2 */
.checkbox-item-v2 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(22, 165, 113, 0.03);
    border: 2px solid rgba(22, 165, 113, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.checkbox-item-v2:hover {
    background: rgba(22, 165, 113, 0.08);
    border-color: rgba(22, 165, 113, 0.2);
    transform: translateY(-1px);
}

.checkbox-input-v2 {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-label-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    width: 100%;
    margin: 0;
}

.checkbox-custom-v2 {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(22, 165, 113, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: var(--thm-white);
    flex-shrink: 0;
}

.checkbox-input-v2:checked + .checkbox-label-v2 .checkbox-custom-v2 {
    background: var(--thm-teal);
    border-color: var(--thm-teal);
    box-shadow: 0px 2px 8px rgba(22, 165, 113, 0.3);
}

.checkbox-input-v2:checked + .checkbox-label-v2 .checkbox-custom-v2::after {
    content: '✓';
    color: var(--thm-white);
    font-size: 14px;
    font-weight: 700;
}

.checkbox-text-v2 {
    font-size: 14px;
    font-weight: 500;
    color: var(--thm-black);
    line-height: 1.4;
}

/* Radio Group V2 */
.radio-group-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

/* Radio Item V2 */
.radio-item-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(22, 165, 113, 0.03);
    border: 2px solid rgba(22, 165, 113, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    min-width: 120px;
}

.radio-item-v2:hover {
    background: rgba(22, 165, 113, 0.08);
    border-color: rgba(22, 165, 113, 0.2);
    transform: translateY(-1px);
}

.radio-input-v2 {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-label-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    width: 100%;
    margin: 0;
}

.radio-custom-v2 {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(22, 165, 113, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: var(--thm-white);
    flex-shrink: 0;
}

.radio-input-v2:checked + .radio-label-v2 .radio-custom-v2 {
    background: var(--thm-teal);
    border-color: var(--thm-teal);
    box-shadow: 0px 2px 8px rgba(22, 165, 113, 0.3);
}

.radio-input-v2:checked + .radio-label-v2 .radio-custom-v2::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--thm-white);
    border-radius: 50%;
}

.radio-text-v2 {
    font-size: 14px;
    font-weight: 500;
    color: var(--thm-black);
    line-height: 1.4;
}

/* File Upload Area V2 */
.file-upload-area-v2 {
    position: relative;
}

.file-input-v2 {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    border: 3px dashed rgba(22, 165, 113, 0.3);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(22, 165, 113, 0.05) 0%, rgba(22, 165, 113, 0.1) 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    min-height: 160px;
    position: relative;
    overflow: hidden;
}

.file-upload-label-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(22, 165, 113, 0.1), transparent);
    transition: left 0.5s ease;
}

.file-upload-label-v2:hover {
    border-color: var(--thm-teal);
    background: linear-gradient(135deg, rgba(22, 165, 113, 0.1) 0%, rgba(22, 165, 113, 0.15) 100%);
    transform: translateY(-2px);
    box-shadow: 0px 8px 24px rgba(22, 165, 113, 0.2);
}

.file-upload-label-v2:hover::before {
    left: 100%;
}

.upload-icon-v2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0px 4px 16px rgba(22, 165, 113, 0.3);
    transition: all 0.3s ease;
}

.file-upload-label-v2:hover .upload-icon-v2 {
    transform: scale(1.1);
    box-shadow: 0px 6px 20px rgba(22, 165, 113, 0.4);
}

.upload-icon-v2 i {
    font-size: 28px;
    color: var(--thm-white);
}

.upload-text-v2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 8px;
    text-align: center;
}

.upload-hint-v2 {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
}

.file-name-v2 {
    display: none;
    padding: 12px 16px;
    background: rgba(22, 165, 113, 0.1);
    border: 1px solid rgba(22, 165, 113, 0.2);
    border-radius: 8px;
    color: var(--thm-teal);
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

/* Link V2 */
.link-v2 {
    color: var(--thm-teal);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-v2:hover {
    color: var(--thm-green);
    text-decoration: underline;
}

/* Form Submit V2 */
.form-submit-v2 {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(22, 165, 113, 0.1);
}

.submit-btn-v2 {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 16px rgba(22, 165, 113, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 24px rgba(22, 165, 113, 0.4);
}

.submit-btn-v2 .btn-text {
    margin-right: 8px;
}

.submit-btn-v2 .btn-icon {
    font-size: 16px;
}

.submit-note-v2 {
    font-size: 14px;
    color: #6b7280;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Responsive for Form V2 */
@media (max-width: 768px) {
    .form-section-v2 {
        padding: 30px 25px;
        margin-bottom: 25px;
        overflow: visible;
    }

    .section-header-v2 {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .section-icon-v2 {
        width: 45px;
        height: 45px;
    }

    .section-icon-v2 i {
        font-size: 20px;
    }

    .section-title-v2 {
        font-size: 1.4rem;
    }

    .form-row-v2 {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .form-group-v2 {
        margin-bottom: 20px;
        width: 100%;
    }

    .form-input-v2,
    .form-select-v2 {
        padding: 14px 18px 14px 45px;
        font-size: 14px;
        min-height: 50px;
        width: 100%;
        box-sizing: border-box;
    }

    .input-icon-v2 {
        left: 16px;
        font-size: 16px;
    }

    .checkbox-group-v2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .checkbox-item-v2 {
        padding: 12px;
    }

    .radio-group-v2 {
        flex-direction: column;
        gap: 12px;
    }

    .radio-item-v2 {
        min-width: auto;
        padding: 12px 16px;
    }

    .file-upload-label-v2 {
        padding: 40px 20px;
        min-height: 140px;
    }

    .upload-icon-v2 {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .upload-icon-v2 i {
        font-size: 24px;
    }

    .upload-text-v2 {
        font-size: 14px;
    }

    .upload-hint-v2 {
        font-size: 12px;
    }

    .form-textarea-v2 {
        padding: 14px 45px 14px 18px;
        min-height: 120px;
    }

    .textarea-icon-v2 {
        top: 16px;
        right: 16px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .form-section-v2 {
        padding: 25px 20px;
        margin-bottom: 20px;
        overflow: visible;
    }

    .section-header-v2 {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .section-icon-v2 {
        width: 40px;
        height: 40px;
    }

    .section-icon-v2 i {
        font-size: 18px;
    }

    .section-title-v2 {
        font-size: 1.2rem;
    }

    .form-input-v2,
    .form-select-v2 {
        padding: 12px 16px 12px 40px;
        font-size: 14px;
        min-height: 48px;
        width: 100%;
        box-sizing: border-box;
    }

    .input-icon-v2 {
        left: 14px;
        font-size: 14px;
    }

    .file-upload-label-v2 {
        padding: 35px 15px;
        min-height: 120px;
    }

    .upload-icon-v2 {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .upload-icon-v2 i {
        font-size: 20px;
    }

    .submit-btn-v2 {
        padding: 16px 30px;
        font-size: 15px;
    }
}

/* ===================================
   Sidebar Cards V2 Styles
   =================================== */

/* Process Card V2 */
.process-card-v2 {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border: 2px solid rgba(22, 165, 113, 0.1);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0px 10px 40px rgba(22, 165, 113, 0.08);
    position: relative;
    overflow: hidden;
}

.process-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--thm-teal) 0%, var(--thm-green) 100%);
}

/* Card Header V2 */
.card-header-v2 {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(22, 165, 113, 0.1);
}

.card-icon-v2 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.3);
    position: relative;
}

.card-icon-v2::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
    filter: blur(8px);
}

.card-icon-v2 i {
    font-size: 32px;
    color: var(--thm-white);
}

.card-title-v2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 8px;
}

.card-subtitle-v2 {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

/* Process Timeline V2 */
.process-timeline-v2 {
    position: relative;
    padding-left: 0;
}

.timeline-item-v2 {
    position: relative;
    margin-bottom: 35px;
    display: flex;
    gap: 20px;
}

.timeline-item-v2:last-child {
    margin-bottom: 0;
}

/* Timeline Marker V2 */
.timeline-marker-v2 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.timeline-number-v2 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--thm-white);
    box-shadow: 0px 6px 20px rgba(22, 165, 113, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-number-v2::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(6px);
}

.timeline-line-v2 {
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, var(--thm-teal) 0%, rgba(22, 165, 113, 0.3) 100%);
    margin-top: 10px;
    border-radius: 2px;
}

.timeline-item-v2:last-child .timeline-line-v2 {
    display: none;
}

/* Timeline Content V2 */
.timeline-content-v2 {
    flex: 1;
    padding-top: 5px;
}

.timeline-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 15px;
}

.timeline-title-v2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--thm-black);
    margin: 0;
    line-height: 1.3;
}

.timeline-duration-v2 {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(22, 165, 113, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--thm-teal);
    white-space: nowrap;
    flex-shrink: 0;
}

.timeline-duration-v2 i {
    font-size: 11px;
}

.timeline-description-v2 {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 15px;
    margin-top: 0;
}

/* Timeline Features V2 */
.timeline-features-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag-v2 {
    background: rgba(22, 165, 113, 0.08);
    color: var(--thm-teal);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(22, 165, 113, 0.15);
    transition: all 0.3s ease;
}

.feature-tag-v2:hover {
    background: rgba(22, 165, 113, 0.15);
    transform: translateY(-1px);
}

/* Responsive for Timeline V2 */
@media (max-width: 768px) {
    .process-card-v2 {
        padding: 25px 20px;
        margin-bottom: 25px;
    }

    .card-header-v2 {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .card-icon-v2 {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .card-icon-v2 i {
        font-size: 28px;
    }

    .card-title-v2 {
        font-size: 1.5rem;
    }

    .card-subtitle-v2 {
        font-size: 14px;
    }

    .timeline-item-v2 {
        margin-bottom: 25px;
        gap: 15px;
    }

    .timeline-number-v2 {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .timeline-line-v2 {
        height: 50px;
    }

    .timeline-header-v2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .timeline-title-v2 {
        font-size: 1rem;
    }

    .timeline-duration-v2 {
        font-size: 11px;
        padding: 4px 8px;
    }

    .timeline-description-v2 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .feature-tag-v2 {
        font-size: 10px;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .process-card-v2 {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .card-header-v2 {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .card-icon-v2 {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }

    .card-icon-v2 i {
        font-size: 24px;
    }

    .card-title-v2 {
        font-size: 1.3rem;
    }

    .timeline-item-v2 {
        margin-bottom: 20px;
        gap: 12px;
    }

    .timeline-number-v2 {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .timeline-line-v2 {
        height: 45px;
    }

    .timeline-content-v2 {
        padding-top: 2px;
    }

    .timeline-description-v2 {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

/* ===================================
   Resources Hub Page Styles
   =================================== */

/* Resources Hero Section */
.resources-hero-sec {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.resources-hero-content {
    position: relative;
    z-index: 3;
}

.resources-hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22, 165, 113, 0.1);
    color: var(--thm-teal);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(22, 165, 113, 0.2);
}

.resources-hero-content .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.resources-hero-content .hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--thm-body-font-color);
    margin-bottom: 35px;
}

.resources-hero-content .hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.resources-hero-content .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--thm-teal);
    font-weight: 600;
    font-size: 15px;
}

.resources-hero-content .feature-item i {
    font-size: 20px;
}

/* Resources Hero Image */
.resources-hero-image {
    position: relative;
    z-index: 2;
}

.resources-hero-image .hero-image-wrapper {
    position: relative;
    text-align: center;
}

.resources-hero-image .hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0px 20px 60px rgba(22, 165, 113, 0.15);
}

.floating-resource-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.resource-card-floating {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(22, 165, 113, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--thm-teal);
    box-shadow: 0px 10px 30px rgba(22, 165, 113, 0.2);
    animation: gentleFloat 6s ease-in-out infinite;
}

.resource-card-floating.card-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.resource-card-floating.card-2 {
    bottom: 25%;
    left: 5%;
    animation-delay: 2s;
}

.resource-card-floating.card-3 {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

.resource-card-floating i {
    font-size: 18px;
}

/* Resources Categories Section */
.resources-categories-sec {
    background: var(--thm-white);
}

.resources-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.resources-categories-grid .stat-item{
  flex-direction: column;
}

.category-card {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0px 10px 40px rgba(22, 165, 113, 0.1);
    border: 2px solid rgba(22, 165, 113, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--thm-teal) 0%, var(--thm-green) 100%);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 60px rgba(22, 165, 113, 0.2);
    border-color: rgba(22, 165, 113, 0.2);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0px 8px 25px rgba(22, 165, 113, 0.3);
}

.category-icon i {
    font-size: 36px;
    color: var(--thm-white);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 15px;
}

.category-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--thm-body-font-color);
    margin-bottom: 25px;
}

.category-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.category-stats .stat-item {
    text-align: center;
}

.category-stats .stat-item strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--thm-teal);
    margin-bottom: 5px;
}

.category-stats .stat-item span {
    font-size: 13px;
    color: var(--thm-body-font-color);
    font-weight: 500;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--thm-teal);
    color: var(--thm-white);
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: var(--thm-green);
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(22, 165, 113, 0.3);
    color: var(--thm-white);
}

/* Featured Resources Section */
.featured-resources-sec {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

.featured-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.featured-resource-card {
    background: var(--thm-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 15px 50px rgba(22, 165, 113, 0.12);
    border: 2px solid rgba(22, 165, 113, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.featured-resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 25px 70px rgba(22, 165, 113, 0.2);
}

.resource-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-resource-card:hover .resource-image img {
    transform: scale(1.05);
}

.resource-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(22, 165, 113, 0.9);
    color: var(--thm-white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.resource-content {
    padding: 25px;
}

.resource-category {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--thm-teal);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.resource-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 12px;
    line-height: 1.4;
}

.resource-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--thm-body-font-color);
    margin-bottom: 20px;
}

.resource-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.resource-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
}

.resource-meta .meta-item i {
    font-size: 14px;
    color: var(--thm-teal);
}

.resource-actions {
    display: flex;
    gap: 15px;
}

.download-btn, .preview-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn {
    background: var(--thm-teal);
    color: var(--thm-white);
    flex: 1;
    justify-content: center;
}

.download-btn:hover {
    background: var(--thm-green);
    color: var(--thm-white);
}

.preview-btn {
    background: rgba(22, 165, 113, 0.1);
    color: var(--thm-teal);
    border: 1px solid rgba(22, 165, 113, 0.2);
}

.preview-btn:hover {
    background: rgba(22, 165, 113, 0.2);
    color: var(--thm-green);
}

/* Whitepapers Section */
.whitepapers-sec {
    background: var(--thm-white);
}

.whitepapers-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(22, 165, 113, 0.1);
    color: var(--thm-teal);
    border: 2px solid rgba(22, 165, 113, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--thm-teal);
    color: var(--thm-white);
    border-color: var(--thm-teal);
}

.whitepapers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.whitepaper-card {
    background: var(--thm-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 8px 30px rgba(22, 165, 113, 0.08);
    border: 2px solid rgba(22, 165, 113, 0.06);
    transition: all 0.3s ease;
}

.whitepaper-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 15px 40px rgba(22, 165, 113, 0.15);
}

.whitepaper-image {
    height: 150px;
    overflow: hidden;
}

.whitepaper-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whitepaper-content {
    padding: 20px;
}

.whitepaper-category {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--thm-teal);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.whitepaper-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 10px;
    line-height: 1.4;
}

.whitepaper-description {
    font-size: 13px;
    line-height: 1.5;
    color: var(--thm-body-font-color);
    margin-bottom: 15px;
}

.whitepaper-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.whitepaper-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #6b7280;
}

.whitepaper-meta .meta-item i {
    font-size: 12px;
    color: var(--thm-teal);
}

.whitepaper-actions {
    display: flex;
    gap: 10px;
}

.download-btn-small, .share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn-small {
    background: var(--thm-teal);
    color: var(--thm-white);
    flex: 1;
    justify-content: center;
}

.download-btn-small:hover {
    background: var(--thm-green);
    color: var(--thm-white);
}

.share-btn {
    background: rgba(22, 165, 113, 0.1);
    color: var(--thm-teal);
    border: 1px solid rgba(22, 165, 113, 0.2);
    width: 40px;
    justify-content: center;
}

.share-btn:hover {
    background: rgba(22, 165, 113, 0.2);
    color: var(--thm-green);
}

.load-more-section {
    margin-top: 50px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(22, 165, 113, 0.1);
    color: var(--thm-teal);
    border: 2px solid rgba(22, 165, 113, 0.2);
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: var(--thm-teal);
    color: var(--thm-white);
    border-color: var(--thm-teal);
}

/* Resources Newsletter Section */
.resources-newsletter-sec {
    background: linear-gradient(135deg, var(--thm-teal) 0%, var(--thm-green) 100%);
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.1);
}

.newsletter-content .newsletter-icon {
    width: 80px;
    height: 80px;
    background: var(--thm-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0px 10px 30px rgba(22, 165, 113, 0.3);
}

.newsletter-content .newsletter-icon i {
    font-size: 36px;
    color: var(--thm-white);
}

.newsletter-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 15px;
}

.newsletter-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--thm-body-font-color);
    margin-bottom: 30px;
}

.newsletter-form .form-group {
    position: relative;
    margin-bottom: 15px;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(22, 165, 113, 0.2);
    border-radius: 12px;
    font-size: 15px;
    background: var(--thm-white);
    transition: all 0.3s ease;
    box-shadow: 0px 2px 8px rgba(22, 165, 113, 0.08);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--thm-teal);
    box-shadow: 0px 8px 24px rgba(22, 165, 113, 0.15);
    transform: translateY(-2px);
}

.subscribe-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--thm-teal);
    color: var(--thm-white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.subscribe-btn:hover {
    background: var(--thm-green);
}

.newsletter-note {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

/* ===================================
   Events Page Styles
   =================================== */

/* Events Hero Section */
.events-hero-sec {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.events-hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.events-hero-content .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.events-hero-content .hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--thm-body-font-color);
    margin-bottom: 35px;
}

.events-hero-content .hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.events-hero-content .stat-item {
    text-align: center;
}

.events-hero-content .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 5px;
}

.events-hero-content .stat-label {
    font-size: 14px;
    color: var(--thm-body-font-color);
    font-weight: 500;
}

.events-hero-content .hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.events-hero-content .play-btn-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 2px solid rgba(59, 130, 246, 0.2);
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.events-hero-content .play-btn-v2:hover {
    background: #3b82f6;
    color: var(--thm-white);
    border-color: #3b82f6;
}

.events-hero-content .play-btn-v2 i {
    font-size: 18px;
}

/* Events Hero Image */
.events-hero-image .hero-image-wrapper {
    position: relative;
    text-align: center;
}

.events-hero-image .hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0px 20px 60px rgba(59, 130, 246, 0.15);
}

.floating-event-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.event-card-floating {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #3b82f6;
    box-shadow: 0px 10px 30px rgba(59, 130, 246, 0.2);
    animation: gentleFloat 6s ease-in-out infinite;
}

.event-card-floating.card-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.event-card-floating.card-2 {
    bottom: 25%;
    left: 5%;
    animation-delay: 2s;
}

.event-card-floating.card-3 {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

.event-card-floating i {
    font-size: 18px;
}

/* Event Categories Section */
.event-categories-sec {
    background: var(--thm-white);
}

.event-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.event-category-card {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0px 10px 40px rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
}

.event-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 60px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.2);
}

.event-category-card .category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0px 8px 25px rgba(59, 130, 246, 0.3);
}

.event-category-card .category-icon i {
    font-size: 32px;
    color: var(--thm-white);
}

.event-category-card .category-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 12px;
}

.event-category-card .category-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--thm-body-font-color);
    margin-bottom: 20px;
}

.event-category-card .category-stats {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.event-category-card .category-stats .stat-item {
    text-align: center;
}

.event-category-card .category-stats .stat-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 5px;
}

.event-category-card .category-stats .stat-item span {
    font-size: 12px;
    color: var(--thm-body-font-color);
    font-weight: 500;
}

.event-category-card .category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3b82f6;
    color: var(--thm-white);
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.event-category-card .category-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(59, 130, 246, 0.3);
    color: var(--thm-white);
}

/* Upcoming Events Section */
.upcoming-events-sec {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

.events-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.events-filters .filter-btn {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 2px solid rgba(59, 130, 246, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.events-filters .filter-btn:hover,
.events-filters .filter-btn.active {
    background: #3b82f6;
    color: var(--thm-white);
    border-color: #3b82f6;
}

.upcoming-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background: var(--thm-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 15px 50px rgba(59, 130, 246, 0.12);
    border: 2px solid rgba(59, 130, 246, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 25px 70px rgba(59, 130, 246, 0.2);
}

.event-card .event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-card .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(59, 130, 246, 0.9);
    color: var(--thm-white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 12px;
    color: var(--thm-body-font-color);
    font-weight: 500;
    margin-top: 2px;
}

.event-content {
    padding: 25px;
}

.event-category {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 12px;
    line-height: 1.4;
}

.event-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--thm-body-font-color);
    margin-bottom: 20px;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.event-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
}

.event-meta .meta-item i {
    font-size: 14px;
    color: #3b82f6;
    width: 16px;
}

.event-actions {
    display: flex;
    gap: 15px;
}

.register-btn, .reminder-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    flex: 1;
    justify-content: center;
}

.register-btn {
    background: #3b82f6;
    color: var(--thm-white);
}

.register-btn:hover {
    background: #1d4ed8;
    color: var(--thm-white);
}

.reminder-btn {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.reminder-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #1d4ed8;
}

/* Past Events Section */
.past-events-sec {
    background: var(--thm-white);
}

.past-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.past-event-card {
    background: var(--thm-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 15px 50px rgba(59, 130, 246, 0.12);
    border: 2px solid rgba(59, 130, 246, 0.08);
    transition: all 0.3s ease;
}

.past-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 25px 70px rgba(59, 130, 246, 0.2);
}

.event-video {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #3b82f6;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    font-size: 24px;
    color: var(--thm-white);
    margin-left: 3px;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--thm-white);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* Registration Modal */
.registration-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.registration-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--thm-white);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0px 25px 80px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid rgba(59, 130, 246, 0.1);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--thm-black);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--thm-black);
}

.modal-body {
    padding: 30px;
}

.registration-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.registration-form .form-group {
    margin-bottom: 20px;
}

.registration-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--thm-black);
    font-size: 14px;
}

.registration-form input,
.registration-form select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    font-size: 14px;
    background: var(--thm-white);
    transition: all 0.3s ease;
    box-shadow: 0px 2px 8px rgba(59, 130, 246, 0.08);
}

.registration-form input:focus,
.registration-form select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0px 8px 24px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.registration-form input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.registration-form .form-submit {
    text-align: center;
    margin-top: 25px;
}

/* ===================================
   Tools & Calculators Page Styles
   =================================== */

/* Tools Hero Section */
.tools-hero-sec {
    background: linear-gradient(135deg, #fef3f2 0%, #fce7e6 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.tools-hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.tools-hero-content .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.tools-hero-content .hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--thm-body-font-color);
    margin-bottom: 35px;
}

.tools-hero-content .hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.tools-hero-content .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ef4444;
    font-weight: 600;
    font-size: 15px;
}

.tools-hero-content .feature-item i {
    font-size: 20px;
}

/* Tools Hero Image */
.tools-hero-image .hero-image-wrapper {
    position: relative;
    text-align: center;
}

.tools-hero-image .hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0px 20px 60px rgba(239, 68, 68, 0.15);
}

.floating-tool-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.tool-card-floating {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #ef4444;
    box-shadow: 0px 10px 30px rgba(239, 68, 68, 0.2);
    animation: gentleFloat 6s ease-in-out infinite;
}

.tool-card-floating.card-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.tool-card-floating.card-2 {
    bottom: 25%;
    left: 5%;
    animation-delay: 2s;
}

.tool-card-floating.card-3 {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

.tool-card-floating i {
    font-size: 18px;
}

/* Tools Categories Section */
.tools-categories-sec {
    background: var(--thm-white);
}

.tools-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.tool-category-card {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0px 10px 40px rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.tool-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 60px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.2);
}

.tool-category-card .category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0px 8px 25px rgba(239, 68, 68, 0.3);
}

.tool-category-card .category-icon i {
    font-size: 32px;
    color: var(--thm-white);
}

.tool-category-card .category-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 12px;
}

.tool-category-card .category-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--thm-body-font-color);
    margin-bottom: 20px;
}

.tool-category-card .category-stats {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tool-category-card .category-stats .stat-item {
    text-align: center;
}

.tool-category-card .category-stats .stat-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 5px;
}

.tool-category-card .category-stats .stat-item span {
    font-size: 12px;
    color: var(--thm-body-font-color);
    font-weight: 500;
}

.tool-category-card .category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ef4444;
    color: var(--thm-white);
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tool-category-card .category-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(239, 68, 68, 0.3);
    color: var(--thm-white);
}

/* Calculator Section */
.calculator-sec {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

.calculator-card {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 15px 50px rgba(239, 68, 68, 0.12);
    border: 2px solid rgba(239, 68, 68, 0.08);
    margin-bottom: 50px;
}

.calculator-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(239, 68, 68, 0.1);
}

.calculator-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 25px rgba(239, 68, 68, 0.3);
}

.calculator-icon i {
    font-size: 32px;
    color: var(--thm-white);
}

.calculator-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 8px;
}

.calculator-title p {
    font-size: 15px;
    color: var(--thm-body-font-color);
    margin: 0;
}

.calculator-form .form-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(239, 68, 68, 0.1);
}

.calculator-form .form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.calculator-form .section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 20px;
}

.calculator-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.calculator-form .form-group {
    margin-bottom: 20px;
}

.calculator-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--thm-black);
    font-size: 14px;
}

.calculator-form input,
.calculator-form select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    font-size: 14px;
    background: var(--thm-white);
    transition: all 0.3s ease;
    box-sizing: border-box;
    box-shadow: 0px 2px 8px rgba(239, 68, 68, 0.08);
}

.calculator-form input:focus,
.calculator-form select:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0px 8px 24px rgba(239, 68, 68, 0.15);
    transform: translateY(-2px);
}

.calculator-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.calculate-btn, .reset-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.calculate-btn {
    background: #ef4444;
    color: var(--thm-white);
}

.calculate-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(239, 68, 68, 0.3);
}

.reset-btn {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.reset-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

/* Calculator Results */
.calculator-results {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 15px 50px rgba(239, 68, 68, 0.12);
    border: 2px solid rgba(239, 68, 68, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.results-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(239, 68, 68, 0.1);
}

.results-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 8px;
}

.results-header p {
    font-size: 14px;
    color: var(--thm-body-font-color);
    margin: 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.result-item {
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.result-item:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
}

.result-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0px 5px 15px rgba(239, 68, 68, 0.3);
}

.result-icon i {
    font-size: 20px;
    color: var(--thm-white);
}

.result-label {
    font-size: 12px;
    color: var(--thm-body-font-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ef4444;
}

.results-chart {
    margin: 30px 0;
    text-align: center;
}

.results-chart canvas {
    max-width: 100%;
    height: auto;
}

.results-actions {
    display: flex;
    gap: 15px;
}

.export-btn, .share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex: 1;
    justify-content: center;
}

.export-btn {
    background: #ef4444;
    color: var(--thm-white);
}

.export-btn:hover {
    background: #dc2626;
    color: var(--thm-white);
}

.share-btn {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.share-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

/* Budget Breakdown */
.budget-breakdown {
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.budget-breakdown h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 15px;
    text-align: center;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(239, 68, 68, 0.1);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-label {
    font-size: 14px;
    color: var(--thm-body-font-color);
    font-weight: 500;
}

.breakdown-value {
    font-size: 14px;
    font-weight: 700;
    color: #ef4444;
}

/* Security Assessment */
.assessment-form {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 15px 50px rgba(239, 68, 68, 0.12);
    border: 2px solid rgba(239, 68, 68, 0.08);
}

.assessment-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(239, 68, 68, 0.1);
}

.assessment-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.assessment-questions {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.question-item {
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.1);
    border-radius: 15px;
    padding: 25px;
}

.question-item label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 15px;
}

.question-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.question-options input[type="radio"] {
    display: none;
}

.question-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--thm-white);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.question-options input[type="radio"]:checked + label {
    background: #ef4444;
    color: var(--thm-white);
    border-color: #ef4444;
}

.question-options label:hover {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Security Results */
.security-results {
    background: var(--thm-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 15px 50px rgba(239, 68, 68, 0.12);
    border: 2px solid rgba(239, 68, 68, 0.08);
}

.security-score-display {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(239, 68, 68, 0.1);
}

.score-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 30px rgba(239, 68, 68, 0.3);
    flex-shrink: 0;
}

.score-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--thm-white);
    line-height: 1;
}

.score-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: 5px;
}

.score-description h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 10px;
}

.score-description p {
    font-size: 16px;
    color: var(--thm-body-font-color);
    margin: 0;
}

.recommendations {
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.1);
    border-radius: 15px;
    padding: 25px;
}

.recommendations h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 20px;
}

.recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--thm-white);
    border-radius: 10px;
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.recommendation-item i {
    color: #ef4444;
    font-size: 18px;
}

.recommendation-item span {
    font-size: 14px;
    color: var(--thm-black);
    font-weight: 500;
}

.home-4 .header-contact-info ul li p, .home-4 .header-contact-info ul li .icon-box i, .home-4 .header-contact-info ul li p a, .home-4 .header-social-links ul li a, .home-4 .header-auth-links .auth-link, .home-4 .hero-title-v2, .home-4 .hero-description, .home-4 .play-btn-v2{
  color: var(--thm-black)
}
.home-4 .play-icon{
  border: 2px solid var(--thm-black);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .resources-hero-content .hero-title,
    .events-hero-content .hero-title,
    .tools-hero-content .hero-title {
        font-size: 2.5rem;
    }

    .resources-hero-content .hero-features,
    .tools-hero-content .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .events-hero-content .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .resources-categories-grid,
    .event-categories-grid,
    .tools-categories-grid {
        grid-template-columns: 1fr;
    }

    .featured-resources-grid,
    .upcoming-events-grid,
    .past-events-grid {
        grid-template-columns: 1fr;
    }

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

    .calculator-form .form-row {
        grid-template-columns: 1fr;
    }

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

    .security-score-display {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .question-options {
        flex-direction: column;
        gap: 10px;
    }

    .calculator-actions {
        flex-direction: column;
    }

    .results-actions {
        flex-direction: column;
    }

    .registration-form .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-form input[type="email"]:focus,
    .registration-form input:focus,
    .registration-form select:focus,
    .calculator-form input:focus,
    .calculator-form select:focus {
        transform: none;
    }
}

@media (max-width: 480px) {
    .resources-hero-sec,
    .events-hero-sec,
    .tools-hero-sec {
        padding: 80px 0 60px;
    }

    .resources-hero-content .hero-title,
    .events-hero-content .hero-title,
    .tools-hero-content .hero-title {
        font-size: 2rem;
    }

    .calculator-card,
    .assessment-form,
    .security-results {
        padding: 25px;
    }

    .modal-container {
        width: 95%;
        margin: 20px;
    }

    .modal-body {
        padding: 20px;
    }
}