body {
  background: #f9f9f9;
  font-family: 'Dosis', sans-serif;
  font-weight: 400;
  font-style: normal;
}  

html,body { overflow-x: hidden; }

h1,h2,h3,h4, .navbar-nav a {
  font-weight: bold;
  text-transform: uppercase;
}

.green {
	color: #94b629;
}

img {
  max-width: 100%;
  height: auto;
}

h2 {
  font-size: 40px;
  padding-bottom: 30px;
}

p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8em;
}

a:hover { text-decoration: none; }

/* preloader section */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
}
.sk-spinner-rotating-plane.sk-spinner {
  width: 30px;
  height: 30px;
  background-color: #a4c639;
  -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
          animation: sk-rotatePlane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotatePlane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
            transform: perspective(120px) rotateX(0deg) rotateY(0deg); }

  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
            transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }

  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
            transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } }

@keyframes sk-rotatePlane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
            transform: perspective(120px) rotateX(0deg) rotateY(0deg); }

  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
            transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }

  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
            transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } }

/* navigation section */
.sticky-navigation { 
  opacity: 1 !important;
  top: 0 !important;
}
.navbar-default {
  background: #ffffff;
  border: none;
  box-shadow: 0 2px 12px rgba(164, 198, 57, 0.1);
  margin: 0;
  padding: 5px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1030;
  transition: all 0.3s ease;
  min-height: 60px;
  display: flex;
  align-items: center;
}
.navbar-default.scrolled {
  box-shadow: 0 4px 20px rgba(164, 198, 57, 0.15);
  padding: 5px 0;
}
.navbar-default .navbar-brand {
  line-height: 1;
  position: relative;
  bottom: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin: 0;
}
.logo-image {
  max-height: 50px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.navbar-default .navbar-brand:hover .logo-image {
  filter: brightness(1.1);
}
.navbar-default .navbar-nav li a {
  color: #202020;
  font-weight: 600;
  line-height: 50px;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 14px;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
}
.navbar-default .navbar-nav li a:after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #a4c639;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar-default .navbar-nav li a:hover:after,
.navbar-default .navbar-nav > .active > a:after {
  width: 30px;
}
.navbar-default .navbar-nav li a:hover { color: #a4c639; }
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #a4c639;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #a4c639;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
     border: none;
     padding-top: 10px;
  }
.navbar-default .navbar-toggle .icon-bar {
    background: #a4c639;
    border-color: transparent;
    height: 3px;
    border-radius: 2px;
  }
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus { 
  background-color: transparent 
}
.site-logo {
  height: 50px;
  width: auto;
}

/* Logo text styling */
.logo-text {
  font-family: 'Dosis', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #202020;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  line-height: 1;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, #a4c639 0%, #8ab82a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* home section */  
.tm-home {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8e6 50%, #ffffff 100%), url('../images/home-bg.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  color: #202020;
  text-align: center;
  vertical-align: middle;
  padding-top: 160px;
  padding-bottom: 160px;
  position: relative;
  margin-top: 0;
  padding-top: calc(160px + 60px);
}
.tm-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.65);
  z-index: 0;
}
.tm-home > .container {
  position: relative;
  z-index: 1;
}
.tm-home-logo {
  font-size: 68px;
  background: linear-gradient(135deg, #a4c639 0%, #8ab82a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-shadow: none;
  line-height: 1.1;
}
.tm-home-header {
  font-size: 52px;
  font-weight: 700;
  text-transform: none;
  line-height: 1.3;
  margin: 18px 0;
  color: #202020;
  text-shadow: none;
  letter-spacing: 0.5px;
}
.tm-home-header:first-of-type {
  color: #666;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.tm-home-header:last-of-type {
  background: linear-gradient(135deg, #a4c639 0%, #8ab82a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  font-size: 56px;
  margin-bottom: 30px;
}
.tm-home .btn {
  background: linear-gradient(135deg, #a4c639 0%, #8ab82a 100%);
  box-shadow: 0 10px 30px 0 rgba(164, 198, 57, 0.3);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  width: auto;
  padding: 18px 55px;
  margin-top: 40px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: inline-block;
}
.tm-home .btn:hover { 
  background: linear-gradient(135deg, #8ab82a 0%, #a4c639 100%);
  box-shadow: 0 15px 40px 0 rgba(164, 198, 57, 0.4);
  transform: translateY(-3px);
  color: #ffffff;
}
.tm-home .btn:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px 0 rgba(164, 198, 57, 0.3);
}

/* why us section - equal height cards */
.tm-icons .tm-icon-1,
.tm-icons .tm-icon-2,
.tm-icons .tm-icon-3 {
  background: #ffffff;
  box-shadow: 0 8px 24px 0 rgba(50, 50, 50, 0.12);
  cursor: pointer;
  padding: 50px 30px;
  margin-top: -10px;
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.tm-icons .tm-icon-1:hover,
.tm-icons .tm-icon-2:hover,
.tm-icons .tm-icon-3:hover {
  box-shadow: 0 12px 32px 0 rgba(164, 198, 57, 0.2);
  transform: translateY(-8px);
  border-left: 4px solid #a4c639;
}
.tm-icons a {
  border: 3px solid #a4c639;
  border-radius: 50%;
  color: #a4c639;
  font-size: 32px;
  width: 70px;
  height: 70px;
  line-height: 64px;
  text-align: center;
  text-decoration: none;
  background-color: #f0f8e6;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tm-icons .media-object {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  margin-bottom: 20px !important;
  float: none !important;
}
.tm-icons a:hover {
  background-color: #a4c639;
  color: #ffffff;
}
.tm-icons .media-heading {
  padding-bottom: 15px;
  font-size: 20px;
  margin-bottom: 10px;
  color: #202020;
  font-weight: 700;
}
.tm-icons .media {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
  width: 100%;
}
.tm-icons .media-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  margin-left: 0 !important;
}
.tm-icons .media-body p {
  flex-grow: 1;
  margin-bottom: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* about section */
.tm-about {
    padding-top: 80px;
    padding-bottom: 80px;
  }
.tm-about img { padding-bottom: 16px; }
.about-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-single-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}
.about-single-image:hover {
  box-shadow: 0 15px 50px rgba(164, 198, 57, 0.2);
  transform: translateY(-8px);
}
.tm-about .about-des {
  background: #ffffff;
  -webkit-box-shadow: 0 2px 8px 0 rgba(50, 50, 50, 0.08);
          box-shadow: 0 2px 8px 0 rgba(50, 50, 50, 0.08);
  border-right: 4px solid #a4c639;
  padding: 60px;
  position: relative;
  top: 70px;
}
.tm-about-h3 { padding-bottom: 20px; }
.tm-about .about-bottom-des {
  background: #ffffff;
  -webkit-box-shadow: 0 0 8px 0 rgba(50, 50, 50, 0.08);
          box-shadow: 0 0 8px 0 rgba(50, 50, 50, 0.08);
  border-left: 4px solid #a4c639;
  padding: 40px 20px 40px 20px;
  position: relative;
  top: 140px;
}
.tm-about .about-skills { padding-top: 40px; }
.about-skills .progress-bar-primary { background: #a4c639; }
.tm-about .about-skills .progress {
  background: #f9f9f9;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 4px;
  font-weight: bold;
  border-radius: 30px;
}
.tm-about span { font-weight: bold; }
.tm-about .about-skills strong {
  display: inline-block;
  font-size: 16px;
  padding-bottom: 4px;
}

/* service section */
.tm-service {
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}
.tm-service h2 {
  color: #202020;
  font-weight: 900;
  font-size: 45px;
  margin-bottom: 60px;
}
.tm-service > .container > .row > div {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.tm-service .col-md-4 {
  padding: 30px 25px;
}
.tm-service .fa,
.tm-service .fas,
.tm-service .far {
  border: 3px solid #a4c639;
  border-radius: 50%;
  color: #a4c639;
  font-size: 36px;
  width: 100px;
  height: 100px;
  line-height: 94px;
  text-align: center;
  margin: 0 auto 30px;
  background-color: #f0f8e6;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tm-service .fa:hover,
.tm-service .fas:hover,
.tm-service .far:hover {
  background-color: #a4c639;
  color: #ffffff;
  transform: scale(1.1);
}
.tm-service-h3 {
  padding: 15px 0 20px 0;
  font-size: 22px;
  font-weight: 700;
  color: #202020;
}
.tm-service > .container > .row > div > p {
  flex-grow: 1;
  color: #666;
  line-height: 1.8;
}
.tm-service > .container > .row > div {
  display: flex !important;
  flex-direction: column;
}

/* team section */
.tm-team .container {
  padding: 0;
}
.tm-team .team-title {
  background: linear-gradient(135deg, #e6f0d9 0%, #f5f5f5 100%);
  background-size: cover;
  background-position: center;
  height: 300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tm-team .media {
  background: #ffffff;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08);
          box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08);
  position: relative;
  bottom: 40px;
  margin-bottom: 50px;
}
.tm-team .media .media-body { padding: 40px 20px 35px 20px; }
.tm-team .media .border-right { border-right: 4px solid #a4c639; }
.tm-team-member-heading-2 {
  color: #a4c639;
  font-weight: bold;
}

/* portfolio section */
.tm-portfolio {
  background: #ffffff;
  text-align: center;
  vertical-align: middle;
  padding-top: 80px;
  padding-bottom: 80px;
  }
.tm-portfolio img {
  width: 100%;
}
/* FILTER CSS */
.filter-wrapper {
    width: 100%;
    margin: 0 0 24px 0;
    overflow: hidden;
    text-align: center;
}
.filter-wrapper li {
    display: inline-block;
    margin: 4px;
}
.filter-wrapper li a {
    color: #999999;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 17px;
    display: block;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
}
.filter-wrapper li .selected,
.filter-wrapper li a:focus,
.filter-wrapper li a:hover {
    color: #a4c639;
  }

/* ISOTOPE BOX CSS */
.iso-box-section {
    width: 100%;
}
.iso-box-wrapper {
    width: 100%;
    padding: 0;
    clear: both;
    position: relative;
}
.iso-box {
    position: relative;
    min-height: 50px;
    float: left;
    overflow: hidden;
    margin-bottom: 20px;
}
.iso-box > a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.iso-box > a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* price section */
.tm-price { padding-top: 80px; }
.tm-price .col-md-4 { padding: 10px; }
.tm-price-section-heading { text-align: center; }
.tm-price .plan {
  background: #ffffff;
  -webkit-box-shadow: 0 2px 8px 0 rgba(50, 50, 50, 0.08);
          box-shadow: 0 2px 8px 0 rgba(50, 50, 50, 0.08);
  padding: 40px 20px 40px 60px;
  position: relative;
  top: 40px;
}
.tm-price .plan .plan_title {
  border-bottom: 2px solid #202020;
  padding-bottom: 20px;
}
.tm-price .plan ul {
  font-family: 'Open Sans', sans-serif;
  padding: 0;
}
.tm-price .plan ul li {
  display: block;
  padding: 20px 0 20px 0;
}
.tm-price .plan .btn {
  background: #a4c639;
  border: none;
  border-radius: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  width: 140px;
  height: 50px;
  -webkit-transition: all 0.4s ease-in-out;
          transition: all 0.4s ease-in-out;
}
.tm-price .plan .btn:hover { background: #909090; }

/* contact section */
.tm-contact {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding-top: 80px;
    padding-bottom: 100px;
}
.tm-contact h2 {
  color: #202020;
  font-weight: 900;
  font-size: 45px;
  margin-bottom: 50px;
  text-align: center;
}
.contact-info-center {
  text-align: center;
  padding: 50px 40px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  margin: 0 auto;
}
.contact-info-center h3 {
  color: #202020;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-info-center p {
  font-size: 18px;
  margin: 15px 0;
  color: #555;
}
.contact-info-center strong {
  color: #202020;
  font-weight: 700;
}
.contact-info-center a {
  color: #a4c639;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}
.contact-info-center a:hover {
  color: #202020;
  text-decoration: underline;
}
.contact-info-center .contact-cta {
  display: inline-block;
  margin-top: 30px;
  background: linear-gradient(135deg, #a4c639 0%, #8ab82a 100%);
  color: #ffffff !important;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none !important;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(164, 198, 57, 0.3);
}
.contact-info-center .contact-cta:hover {
  background: linear-gradient(135deg, #8ab82a 0%, #a4c639 100%);
  box-shadow: 0 12px 28px rgba(164, 198, 57, 0.4);
  transform: translateY(-2px);
  color: #ffffff !important;
  text-decoration: none;
}

/* Map section styling */
#map {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #f5f5f5;
}
.tm-price-section-heading {
  color: #202020;
  font-weight: 900;
  font-size: 45px;
  margin-bottom: 50px;
}
.google-map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.google-map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.tm-contact-link { color: black; }
.tm-contact-link:hover { color: #a4c639; }

/* FAQ styling */
#faq {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ffffff;
}
#faq .title {
  text-align: center;
  margin-bottom: 60px;
}
#faq h2 {
  color: #202020;
  font-weight: 900;
  font-size: 45px;
}
.faq-section {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: #ffffff;
  box-shadow: 0 4px 12px 0 rgba(50, 50, 50, 0.08);
  border-left: 5px solid #a4c639;
  padding: 30px 25px;
  margin-bottom: 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
  float: none !important;
  width: 100% !important;
}
.faq-item:hover {
  box-shadow: 0 8px 20px 0 rgba(164, 198, 57, 0.15);
  transform: translateX(8px);
}
.faq-question {
  color: #202020;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.faq-question:before {
  content: '▶';
  color: #a4c639;
  margin-right: 12px;
  font-size: 14px;
}
.faq-item p {
  margin: 0;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* Service area styling */
#service-area {
  background: linear-gradient(135deg, #e6f0d9 0%, #f5f5f5 100%);
}
#service-area .team-title h2 {
  color: #202020;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 1px;
}
.service-area-content {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  top: -40px;
  width: 100%;
  float: none;
}
.service-area-content h3 {
  color: #202020;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}
.service-area-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}
.service-area-list {
  margin: 30px 0;
}
.service-area-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 40px;
  width: 100%;
}
.service-area-list li {
  padding: 12px 0;
  color: #202020;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 500;
  transition: all 0.3s ease;
  break-inside: avoid;
}
.service-area-list li:before {
  content: '✓ ';
  color: #a4c639;
  font-weight: bold;
  margin-right: 10px;
}
.service-area-list li:hover {
  color: #a4c639;
  padding-left: 10px;
}

/* social icon section */
.social-icon {
  padding: 0;
  margin: 0;
}
.social-icon li {
  list-style: none;
  display: inline-block;
}
.social-icon li a {
  background: #ffffff;
  border-radius: 50%;
  color: #808080;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in;
          transition: all 0.4s ease-in;
}
.social-icon li a:hover {
  background: #a4c639;
  color: #ffffff;
} 

/* footer section */
footer {
  text-align: center;
  vertical-align: middle;
  padding-top: 60px;
  padding-bottom: 60px;
  background: #202020;
  color: #ffffff;
}
footer p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}
footer img { display: none; }
footer hr { 
  width: 80px;
  border-color: #a4c639;
  margin: 20px auto;
}

@media (max-width:1200px) {
  .tm-home {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media (max-width:980px) {
  .navbar-default .navbar-nav li a {
    padding-right: 10px;
    padding-left: 10px;
  }
  .tm-home {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tm-icons .tm-icon-1,
  .tm-icons .tm-icon-2,
  .tm-icons .tm-icon-3 {
	  border-left: 4px solid #a4c639;
	  margin: 15px;
  }
  .tm-icons .tm-icon-1 {
	  margin-top: -40px;
  }
}
/* CTA and Service Detail Sections */
.cta-section {
  padding: 60px 0;
  text-align: center;
  position: relative;
}
.cta-section.cta-1 {
  background: linear-gradient(135deg, #a4c639 0%, #8ab82a 100%);
  color: #ffffff;
}
.cta-section.cta-1 .cta-content h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cta-section.cta-1 .cta-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  margin-bottom: 0;
}
.cta-section.cta-1 .cta-btn {
  background: #ffffff;
  color: #a4c639;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 20px;
  font-size: 15px;
  text-transform: uppercase;
}
.cta-section.cta-1 .cta-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.cta-section.cta-2 {
  background: linear-gradient(135deg, #f0f8e6 0%, #ffffff 100%);
  color: #202020;
}
.cta-section.cta-2 .cta-content-center {
  text-align: center;
}
.cta-section.cta-2 h2 {
  color: #202020;
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 15px;
}
.cta-section.cta-2 p {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}
.cta-section.cta-2 .cta-btn-primary {
  background: linear-gradient(135deg, #a4c639 0%, #8ab82a 100%);
  color: #ffffff;
  padding: 18px 50px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(164, 198, 57, 0.3);
}
.cta-section.cta-2 .cta-btn-primary:hover {
  background: linear-gradient(135deg, #8ab82a 0%, #a4c639 100%);
  box-shadow: 0 15px 40px rgba(164, 198, 57, 0.4);
  transform: translateY(-3px);
  color: #ffffff;
}

.cta-section.cta-3 {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  color: #202020;
  border-top: 2px solid #a4c639;
  border-bottom: 2px solid #a4c639;
}
.cta-section.cta-3 .cta-content h2 {
  color: #202020;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cta-section.cta-3 .cta-content p {
  color: #666;
  font-size: 16px;
  margin-bottom: 0;
}
.cta-section.cta-3 .cta-btn {
  background: linear-gradient(135deg, #a4c639 0%, #8ab82a 100%);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 20px;
  font-size: 15px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(164, 198, 57, 0.3);
}
.cta-section.cta-3 .cta-btn:hover {
  background: linear-gradient(135deg, #8ab82a 0%, #a4c639 100%);
  box-shadow: 0 12px 28px rgba(164, 198, 57, 0.4);
  transform: translateY(-2px);
}

/* Service Detail Sections */
.service-detail-section {
  padding: 80px 0;
  background: #ffffff;
}
.service-detail-section.alt-bg {
  background: #f9f9f9;
}
.service-detail-section h2 {
  font-size: 42px;
  font-weight: 900;
  color: #202020;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #202020 0%, #a4c639 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-detail-section h3 {
  font-size: 22px;
  font-weight: 700;
  color: #202020;
  margin: 30px 0 20px 0;
}
.service-detail-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}
.service-detail-text {
  padding-right: 30px;
}
.service-detail-image {
  padding-left: 30px;
}
.service-detail-image img {
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.service-benefits {
  list-style: none;
  padding: 0;
}
.service-benefits li {
  padding: 12px 0 12px 35px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}
.service-benefits li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #a4c639;
  font-weight: 900;
  font-size: 18px;
}

@media (max-width: 767px) {
  .service-detail-text,
  .service-detail-image {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .cta-section {
    padding: 40px 0;
  }
  .cta-section h2 {
    font-size: 28px;
  }
  .cta-section .cta-btn,
  .cta-section .cta-btn-primary {
    width: 100%;
    margin: 20px 0;
  }
  .service-detail-section {
    padding: 60px 0;
  }
  .service-detail-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .navbar-default .navbar-brand {
    position: relative;
    bottom: 27px;
  }
  .tm-home {
    padding-top: 100px;
    padding-bottom: 120px;
  }

  .tm-about-header { font-size: 20px; }
  .tm-about-h3 { font-size: 18px; }
  .tm-team .media { max-width: 270px; }
  .tm-team .media .media-object { padding-right: 0; }
  .tm-team img {
    width: auto;
    height: auto;
  }
  .tm-team .media .border-right { border-right: 0; }
  .tm-contact .contact-form { padding-top: 140px; }
}