:root {
  --base-color: #deaf50;
  --theme-color: #deaf50;
  --theme-blue: rgb(38 62 95);
  --theme-brown: #8b7355;
  --special-bg: #f8f9fa;
  --nav-btn-hover: #b08755;
  --white: #fff;
  --red-btn: #ee2e2e;
  --red-btn-hover: #fd2525;
  --overlay-bg: rgba(139, 115, 85, 0.95);
  --footer-bg: rgb(29 49 75);
}

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

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 100%;
}

body {
  min-height: 100vh;
  background: #fefefe;
  line-height: 24px;
  font-size: 14px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  color: #777777;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }
  
  h1 {
    font-size: 28px !important;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 24px !important;
    line-height: 1.4;
  }
  
  h3 {
    font-size: 20px !important;
    line-height: 1.4;
  }
  
  p {
    font-size: 15px;
    line-height: 1.6;
  }
}
/*---------------------------------------
   Typorgraphy              
-----------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}
h1,
h2,
h4 {
  font-weight: 500;
}
h1 {
  font-size: 50px;
}
h2 {
  font-size: 36px;
  line-height: 52px;
  margin: 0px;
}
h3 {
  font-size: 16px;
  line-height: 32px;
}
h4 {
  color: #454545;
  font-size: 18px;
  line-height: 26px;
}
h5 {
  letter-spacing: 0.5px;
}
p {
  color: #777;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
}

#home2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-linear-gradient(
    top,
    transparent 0,
    transparent 50%,
    transparent 63%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 1;
}

.animate {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/*---------------------------------------
   Buttons               
-----------------------------------------*/

.btn-success:focus {
  background-color: #000;
  color: var(--white);
}
.section-btn {
  background: var(--theme-color);
  border-radius: 4px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 12px 30px;
  margin-top: 22px;
  text-transform: uppercase;
  border: none;
  position: relative;
  z-index: 999;
}
.section-btn:focus,
.section-btn:hover {
  background: var(--white);
  color: #333;
}
/*---------------------------------------
   General               
-----------------------------------------*/

html {
  -webkit-font-smoothing: antialiased;
}
a {
  transition: ease-in-out 0.3s;
  -webkit-transition: ease-in-out 0.3s;
  -moz-transition: ease-in-out 0.3s;
  -ms-transition: ease-in-out 0.3s;
  color: var(--theme-brown);
  text-decoration: none !important;
}
a:hover,
a:active,
a:focus {
  color: var(--theme-color);
  outline: none;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* .parallax-section {
  background-attachment: fixed !important;
  background-size: cover !important;
} */
.section-title {
  margin: 0;
  padding-bottom: 50px;
  text-align: center;
}
.title-border {
  border-bottom: 2px solid;
  width: 100px;
}

.fw-700 {
  font-weight: 700 !important;
}
.text-decoration-line-bottom-medium {
  border-bottom: 2px solid;
}

.ftitle {
  line-height: 52px;
  margin: 0px;
}

.text-base-color {
  color: var(--base-color);
}

.fs-20 {
  font-size: 20px;
}

.section-title h3 {
  position: relative;
  font-size: 20px;
  margin-bottom: 50px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 32px;
}
.section-title h3:after {
  content: "";
  background: var(--theme-color);
  height: 2px;
  width: 60px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -30px;
}

.section-title h3 span {
  color: var(--theme-color);
  font-weight: 400;
  display: block;
  font-size: 36px;
}
.section-title p {
  max-width: 800px;
  margin: auto;
}
.parallax-section {
  padding: 40px 0;
  background: var(--special-bg);
  position: relative;
}
.section-white {
  background: #fefefe !important;
}
#counter,
#service,
#contact,
#address {
  text-align: center;
}
/*---------------------------------------
     Preloader section              
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: var(--theme-blue);
  background: linear-gradient(135deg, var(--theme-blue) 0%, #1a2a3f 100%);
}

.cssload-dots {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  filter: url(#goo);
  -o-filter: url(#goo);
  -ms-filter: url(#goo);
  -webkit-filter: url(#goo);
  -moz-filter: url(#goo);
}

.cssload-dot {
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.cssload-dot:before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 49px;
  background: var(--theme-brown);
  position: absolute;
  left: 50%;
  transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  margin-left: -14px;
  margin-top: -14px;
}

.cssload-dot:nth-child(5):before {
  z-index: 100;
  width: 36px;
  height: 36px;
  margin-left: -18px;
  margin-top: -18px;
  animation: cssload-dot-colors-law 3s ease infinite;
  -o-animation: cssload-dot-colors-law 3s ease infinite;
  -ms-animation: cssload-dot-colors-law 3s ease infinite;
  -webkit-animation: cssload-dot-colors-law 3s ease infinite;
  -moz-animation: cssload-dot-colors-law 3s ease infinite;
}

.cssload-dot:nth-child(1) {
  animation: cssload-dot-rotate-1 3s 0s linear infinite;
  -o-animation: cssload-dot-rotate-1 3s 0s linear infinite;
  -ms-animation: cssload-dot-rotate-1 3s 0s linear infinite;
  -webkit-animation: cssload-dot-rotate-1 3s 0s linear infinite;
  -moz-animation: cssload-dot-rotate-1 3s 0s linear infinite;
}

.cssload-dot:nth-child(1):before {
  background-color: var(--theme-brown);
  animation: cssload-dot-move 3s 0s ease infinite;
  -o-animation: cssload-dot-move 3s 0s ease infinite;
  -ms-animation: cssload-dot-move 3s 0s ease infinite;
  -webkit-animation: cssload-dot-move 3s 0s ease infinite;
  -moz-animation: cssload-dot-move 3s 0s ease infinite;
}

.cssload-dot:nth-child(2) {
  animation: cssload-dot-rotate-2 3s 0.75s linear infinite;
  -o-animation: cssload-dot-rotate-2 3s 0.75s linear infinite;
  -ms-animation: cssload-dot-rotate-2 3s 0.75s linear infinite;
  -webkit-animation: cssload-dot-rotate-2 3s 0.75s linear infinite;
  -moz-animation: cssload-dot-rotate-2 3s 0.75s linear infinite;
}

.cssload-dot:nth-child(2):before {
  background-color: #c4a878;
  animation: cssload-dot-move 3s 0.75s ease infinite;
  -o-animation: cssload-dot-move 3s 0.75s ease infinite;
  -ms-animation: cssload-dot-move 3s 0.75s ease infinite;
  -webkit-animation: cssload-dot-move 3s 0.75s ease infinite;
  -moz-animation: cssload-dot-move 3s 0.75s ease infinite;
}

.cssload-dot:nth-child(3) {
  animation: cssload-dot-rotate-3 3s 1.5s linear infinite;
  -o-animation: cssload-dot-rotate-3 3s 1.5s linear infinite;
  -ms-animation: cssload-dot-rotate-3 3s 1.5s linear infinite;
  -webkit-animation: cssload-dot-rotate-3 3s 1.5s linear infinite;
  -moz-animation: cssload-dot-rotate-3 3s 1.5s linear infinite;
}

.cssload-dot:nth-child(3):before {
  background-color: var(--theme-brown);
  animation: cssload-dot-move 3s 1.5s ease infinite;
  -o-animation: cssload-dot-move 3s 1.5s ease infinite;
  -ms-animation: cssload-dot-move 3s 1.5s ease infinite;
  -webkit-animation: cssload-dot-move 3s 1.5s ease infinite;
  -moz-animation: cssload-dot-move 3s 1.5s ease infinite;
}

.cssload-dot:nth-child(4) {
  animation: cssload-dot-rotate-4 3s 2.25s linear infinite;
  -o-animation: cssload-dot-rotate-4 3s 2.25s linear infinite;
  -ms-animation: cssload-dot-rotate-4 3s 2.25s linear infinite;
  -webkit-animation: cssload-dot-rotate-4 3s 2.25s linear infinite;
  -moz-animation: cssload-dot-rotate-4 3s 2.25s linear infinite;
}

.cssload-dot:nth-child(4):before {
  background-color: #c4a878;
  animation: cssload-dot-move 3s 2.25s ease infinite;
  -o-animation: cssload-dot-move 3s 2.25s ease infinite;
  -ms-animation: cssload-dot-move 3s 2.25s ease infinite;
  -webkit-animation: cssload-dot-move 3s 2.25s ease infinite;
  -moz-animation: cssload-dot-move 3s 2.25s ease infinite;
}

@keyframes cssload-dot-move {
  0% {
    transform: translateY(0);
  }
  18%,
  22% {
    transform: translateY(-55px);
  }
  40%,
  100% {
    transform: translateY(0);
  }
}

@-o-keyframes cssload-dot-move {
  0% {
    -o-transform: translateY(0);
  }
  18%,
  22% {
    -o-transform: translateY(-55px);
  }
  40%,
  100% {
    -o-transform: translateY(0);
  }
}

@-ms-keyframes cssload-dot-move {
  0% {
    -ms-transform: translateY(0);
  }
  18%,
  22% {
    -ms-transform: translateY(-55px);
  }
  40%,
  100% {
    -ms-transform: translateY(0);
  }
}

@-webkit-keyframes cssload-dot-move {
  0% {
    -webkit-transform: translateY(0);
  }
  18%,
  22% {
    -webkit-transform: translateY(-55px);
  }
  40%,
  100% {
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes cssload-dot-move {
  0% {
    -moz-transform: translateY(0);
  }
  18%,
  22% {
    -moz-transform: translateY(-55px);
  }
  40%,
  100% {
    -moz-transform: translateY(0);
  }
}

@keyframes cssload-dot-colors-law {
  0% {
    background-color: var(--theme-brown);
  }
  50% {
    background-color: #c4a878;
  }
  100% {
    background-color: var(--theme-brown);
  }
}

@-o-keyframes cssload-dot-colors-law {
  0% {
    background-color: var(--theme-brown);
  }
  50% {
    background-color: #c4a878;
  }
  100% {
    background-color: var(--theme-brown);
  }
}

@-ms-keyframes cssload-dot-colors-law {
  0% {
    background-color: var(--theme-brown);
  }
  50% {
    background-color: #c4a878;
  }
  100% {
    background-color: var(--theme-brown);
  }
}

@-webkit-keyframes cssload-dot-colors-law {
  0% {
    background-color: var(--theme-brown);
  }
  50% {
    background-color: #c4a878;
  }
  100% {
    background-color: var(--theme-brown);
  }
}

@-moz-keyframes cssload-dot-colors-law {
  0% {
    background-color: var(--theme-brown);
  }
  50% {
    background-color: #c4a878;
  }
  100% {
    background-color: var(--theme-brown);
  }
}

@keyframes cssload-dot-rotate-1 {
  0% {
    transform: rotate(-105deg);
  }
  100% {
    transform: rotate(270deg);
  }
}

@-o-keyframes cssload-dot-rotate-1 {
  0% {
    -o-transform: rotate(-105deg);
  }
  100% {
    -o-transform: rotate(270deg);
  }
}

@-ms-keyframes cssload-dot-rotate-1 {
  0% {
    -ms-transform: rotate(-105deg);
  }
  100% {
    -ms-transform: rotate(270deg);
  }
}

@-webkit-keyframes cssload-dot-rotate-1 {
  0% {
    -webkit-transform: rotate(-105deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
  }
}

@-moz-keyframes cssload-dot-rotate-1 {
  0% {
    -moz-transform: rotate(-105deg);
  }
  100% {
    -moz-transform: rotate(270deg);
  }
}

@keyframes cssload-dot-rotate-2 {
  0% {
    transform: rotate(165deg);
  }
  100% {
    transform: rotate(540deg);
  }
}

@-o-keyframes cssload-dot-rotate-2 {
  0% {
    -o-transform: rotate(165deg);
  }
  100% {
    -o-transform: rotate(540deg);
  }
}

@-ms-keyframes cssload-dot-rotate-2 {
  0% {
    -ms-transform: rotate(165deg);
  }
  100% {
    -ms-transform: rotate(540deg);
  }
}

@-webkit-keyframes cssload-dot-rotate-2 {
  0% {
    -webkit-transform: rotate(165deg);
  }
  100% {
    -webkit-transform: rotate(540deg);
  }
}

@-moz-keyframes cssload-dot-rotate-2 {
  0% {
    -moz-transform: rotate(165deg);
  }
  100% {
    -moz-transform: rotate(540deg);
  }
}

@keyframes cssload-dot-rotate-3 {
  0% {
    transform: rotate(435deg);
  }
  100% {
    transform: rotate(810deg);
  }
}

@-o-keyframes cssload-dot-rotate-3 {
  0% {
    -o-transform: rotate(435deg);
  }
  100% {
    -o-transform: rotate(810deg);
  }
}

@-ms-keyframes cssload-dot-rotate-3 {
  0% {
    -ms-transform: rotate(435deg);
  }
  100% {
    -ms-transform: rotate(810deg);
  }
}

@-webkit-keyframes cssload-dot-rotate-3 {
  0% {
    -webkit-transform: rotate(435deg);
  }
  100% {
    -webkit-transform: rotate(810deg);
  }
}

@-moz-keyframes cssload-dot-rotate-3 {
  0% {
    -moz-transform: rotate(435deg);
  }
  100% {
    -moz-transform: rotate(810deg);
  }
}

@keyframes cssload-dot-rotate-4 {
  0% {
    transform: rotate(705deg);
  }
  100% {
    transform: rotate(1080deg);
  }
}

@-o-keyframes cssload-dot-rotate-4 {
  0% {
    -o-transform: rotate(705deg);
  }
  100% {
    -o-transform: rotate(1080deg);
  }
}

@-ms-keyframes cssload-dot-rotate-4 {
  0% {
    -ms-transform: rotate(705deg);
  }
  100% {
    -ms-transform: rotate(1080deg);
  }
}

@-webkit-keyframes cssload-dot-rotate-4 {
  0% {
    -webkit-transform: rotate(705deg);
  }
  100% {
    -webkit-transform: rotate(1080deg);
  }
}

@-moz-keyframes cssload-dot-rotate-4 {
  0% {
    -moz-transform: rotate(705deg);
  }
  100% {
    -moz-transform: rotate(1080deg);
  }
}

/*---------------------------------------
     Navbar              
-----------------------------------------*/
.navs-navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--theme-blue);
  backdrop-filter: blur(10px);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.navs-navbar-wrapper.navs-navbar-hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

.navs-navbar-wrapper.navs-navbar-visible {
  transform: translateY(0);
}

.navs-navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Section */
.navs-logo-section {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navs-logo-section:hover {
  filter: brightness(1.2);
}

.navs-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
  border: 1px solid rgba(139, 115, 85, 0.15);
}

.navs-logo-icon svg {
  width: 24px;
  height: 24px;
}

.navs-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.navs-logo-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.navs-logo-subtitle {
  font-size: 11px;
  color: var(--theme-color);
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  line-height: 1;
}

@media (max-width: 768px) {
  .navs-logo-section {
    gap: 10px;
  }

  .navs-logo-icon {
    width: 42px;
    height: 42px;
  }

  .navs-logo-icon svg {
    width: 20px;
    height: 20px;
  }

  .navs-logo-name {
    font-size: 13px;
  }

  .navs-logo-subtitle {
    font-size: 10px;
  }
}

/* Hamburger Menu */
.navs-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  margin: 0;
  flex-direction: column;
  gap: 5px;
}

.navs-menu-toggle-line {
  width: 25px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.navs-menu-toggle.navs-active .navs-menu-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.navs-menu-toggle.navs-active .navs-menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.navs-menu-toggle.navs-active .navs-menu-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu */
.navs-nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: flex-end;
}

.navs-nav-item {
  position: relative;
  margin: 0;
}

.navs-nav-link {
  display: block;
  padding: 10px 16px;
  color: var(--white);
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.navs-nav-link:hover {
  color: var(--theme-color);
}

.navs-nav-item.navs-dropdown:hover > .navs-nav-link {
  color: var(--theme-color);
}

/* Dropdown Menu */
.navs-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 115, 85, 0.15);
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  min-width: 210px;
  display: none;
  z-index: 1001;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.navs-nav-item.navs-dropdown:hover .navs-dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  animation: navs-slideDown 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navs-nav-item.navs-dropdown {
  position: relative;
}

.navs-nav-item.navs-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
  z-index: 1000;
}

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

.navs-dropdown-item {
  margin: 0;
}

.navs-dropdown-link {
  display: block;
  padding: 12px 20px;
  color: #333;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.navs-dropdown-link:hover {
  background: rgba(139, 115, 85, 0.08);
  color: var(--theme-brown);
  border-left-color: var(--theme-brown);
  padding-left: 25px;
}

/* Call Button */
.navs-call-btn {
  color: var(--theme-color);
  font-weight: 600;
  font-size: 12px;
  padding: 10px 16px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  border-left: 2px solid rgba(139, 115, 85, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.navs-call-btn:hover {
  filter: brightness(1.2);
}

.navs-call-btn i {
  font-size: 14px;
}

/* Caret */
.navs-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: 0.255em;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .navs-menu-toggle {
    display: flex;
  }

  .navs-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--theme-blue);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid rgba(139, 115, 85, 0.1);
    padding: 0;
    margin: 0;
    width: 100%;
    z-index: 999;
  }

  .navs-nav-menu.navs-open {
    max-height: 600px;
  }

  .navs-nav-item {
    width: 100%;
    margin: 0;
  }

  .navs-nav-link {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
    white-space: normal;
  }

  .navs-dropdown-menu {
    position: static;
    background: rgba(139, 115, 85, 0.05);
    border: none;
    box-shadow: none;
    display: none;
    border-radius: 0;
    margin: 0;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: visible;
    transition: max-height 0.3s ease;
    padding: 0;
  }

  .navs-nav-item.navs-dropdown:hover .navs-dropdown-menu {
    display: none;
  }

  .navs-nav-item.navs-dropdown::after {
    display: none;
  }

  .navs-nav-item.navs-dropdown.navs-dropdown-open .navs-dropdown-menu {
    display: block;
    max-height: 500px;
    padding: 8px 0;
  }

  .navs-dropdown-item {
    width: 100%;
  }

  .navs-dropdown-link {
    padding: 12px 40px;
    font-size: 12px;
    border: none;
    display: block;
    color: var(--white);
    text-decoration: none;
  }

  .navs-dropdown-link:hover {
    background: rgba(139, 115, 85, 0.1);
    color: var(--theme-brown);
    padding-left: 45px;
  }

  .navs-call-btn {
    padding: 12px 20px;
    border-left: none;
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
    margin-left: 0;
    width: 100%;
  }

  .navs-logo-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .navs-logo-name {
    font-size: 16px;
  }

  .navs-logo-subtitle {
    font-size: 10px;
  }
}

@media (max-width: 576px) {
  .navs-navbar-wrapper {
    padding: 10px 0;
  }

  .navs-navbar-container {
    padding: 0 12px;
  }

  .navs-logo-section {
    gap: 8px;
  }

  .navs-logo-icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .navs-logo-name {
    font-size: 15px;
  }

  .navs-logo-subtitle {
    font-size: 9px;
  }

  .navs-call-btn {
    font-size: 11px;
    padding: 10px 15px;
  }

  .navs-nav-link {
    font-size: 12px;
    padding: 10px 15px;
  }

  .navs-dropdown-link {
    padding: 10px 35px;
  }

  .navs-dropdown-link:hover {
    padding-left: 40px;
  }
}

/*---------------------------------------
     Navigation section              
-----------------------------------------*/

.sticky-wrapper {
  width: 100%;
  z-index: 10000;
}

.navbar-nav > li:hover .dropdown-menu {
  display: block;
}
.navbar-right .dropdown-menu {
  right: auto;
  left: 0;
}
.is-sticky {
  background: var(--white);
  -moz-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
}

.custom-navbar .nav li > a:hover {
  background: transparent;
  color: var(--white);
}
.custom-navbar .nav li .calltxt {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  display: block;
  margin-top: 15px;
  border-left: 1px solid #ccc;
  padding: 7px 20px;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.is-sticky .custom-navbar .nav li a {
  color: #999;
}
.is-sticky .custom-navbar .nav li a:hover {
  color: #333;
}
.is-sticky .custom-navbar .navbar-brand {
  color: var(--theme-color);
  line-height: 20px;
}
.is-sticky .custom-navbar .nav li .calltxt {
  color: var(--theme-color);
  border-color: var(--theme-color);
  margin-top: 10px;
}

img.logocolor {
  display: none;
}
img.whtlogo {
  display: block;
}

.is-sticky img.logocolor {
  display: block;
}
.is-sticky img.whtlogo {
  display: none;
}
.is-sticky .navbar-brand {
  padding: 5px 10px 5px 15px;
}

.custom-navbar .navbar-nav > li > a:hover,
.custom-navbar .navbar-nav > li > a:focus {
  background-color: transparent;
}

.custom-navbar .navbar-toggle {
  border: none;
  padding-top: 10px;
}
.custom-navbar .navbar-toggle {
  background-color: transparent;
}
.custom-navbar .navbar-toggle .icon-bar {
  background: var(--theme-color);
  border-color: transparent;
}
.navbar-collapse.in {
  overflow: visible;
  max-height: none;
  /* padding: 0 30px; */
}
.is-sticky .custom-navbar .nav li a {
  line-height: 24px;
}
@media (min-width: 768px) {
  .custom-navbar {
    border-bottom: 0;
  }
  .custom-navbar.top-nav-collapse {
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 0;
  }
}

.custom-navbar .nav li .dropdown-menu {
  padding: 0;
  border-radius: 0;
  border: none;
}
.custom-navbar .nav li .dropdown-menu li a {
  color: #333;
  line-height: 20px;
  padding: 8px 10px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}
.custom-navbar .nav li .dropdown-menu li a:hover {
  background: var(--theme-color);
  color: var(--white);
}

.header_area {
  position: relative;
  width: 100%;
  z-index: 999999;
}
nav.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  padding: 12px 0;
}

.header_area .navbar {
  padding: 0px;
  border: 0px;
  border-radius: 0px;
}
.header_area .navbar .nav .nav-item {
  margin-right: 45px;
}
.header_area .navbar .nav .nav-item .nav-link {
  font: 600 12px/80px "Raleway", sans-serif;
  text-transform: uppercase;
  color: #222222;
  padding: 0px;
  display: inline-block;
}
.header_area .navbar .nav .nav-item .nav-link:after {
  display: none;
}
@media (max-width: 991px) {
  .header_area .navbar .nav .nav-item .nav-link {
    color: var(--white);
  }
}
.header_area .navbar .nav .nav-item:hover .nav-link,
.header_area .navbar .nav .nav-item.active .nav-link {
  color: #f13d80;
}
.header_area .navbar .nav .nav-item.submenu {
  position: relative;
}
.header_area .navbar .nav .nav-item.submenu ul {
  border: none;
  padding: 0px;
  border-radius: 0px;
  box-shadow: none;
  margin: 0px;
  background: var(--white);
}
@media (min-width: 992px) {
  .header_area .navbar .nav .nav-item.submenu ul {
    position: absolute;
    top: 120%;
    left: 0px;
    min-width: 200px;
    text-align: left;
    opacity: 0;
    transition: all 300ms ease-in;
    visibility: hidden;
    display: block;
    border: none;
    padding: 0px;
    border-radius: 0px;
  }
}
.header_area .navbar .nav .nav-item.submenu ul:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #eeeeee transparent transparent transparent;
  position: absolute;
  right: 24px;
  top: 45px;
  z-index: 3;
  opacity: 0;
  transition: all 400ms linear;
}
.header_area .navbar .nav .nav-item.submenu ul .nav-item {
  display: block;
  float: none;
  margin-right: 0px;
  border-bottom: 1px solid #ededed;
  margin-left: 0px;
  transition: all 0.4s linear;
}
.header_area .navbar .nav .nav-item.submenu ul .nav-item.active {
  background: #f13d80;
}
.header_area .navbar .nav .nav-item.submenu ul .nav-item.active .nav-link {
  color: var(--white);
}
.header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link {
  line-height: 45px;
  color: #222222;
  padding: 0px 30px;
  transition: all 150ms linear;
  display: block;
  margin-right: 0px;
}
.header_area .navbar .nav .nav-item.submenu ul .nav-item:last-child {
  border-bottom: none;
}
.header_area .navbar .nav .nav-item.submenu ul .nav-item:hover .nav-link {
  background: #f13d80;
  color: var(--white);
}
@media (min-width: 992px) {
  .header_area .navbar .nav .nav-item.submenu:hover ul {
    visibility: visible;
    opacity: 1;
    top: 100%;
  }
}
.header_area .navbar .nav .nav-item.submenu:hover ul .nav-item {
  margin-top: 0px;
}
.header_area .navbar .nav .nav-item:last-child {
  margin-right: 0px;
}
.header_area .navbar .social-icons a {
  color: #ddd;
  padding-right: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header_area .navbar .social-icons a:hover {
  color: #f13d80;
}
.header_area .navbar .search {
  font-size: 12px;
  line-height: 60px;
  display: inline-block;
  color: #222222;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .header_area .navbar .search {
    color: var(--white);
  }
}
.header_area .navbar .search i {
  font-weight: 600;
}
.header_area.navbar_fixed .main_menu {
  position: fixed;
  width: 100%;
  top: -70px;
  left: 0;
  right: 0;
  background: var(--white);
  -webkit-transform: translateY(70px);
  -moz-transform: translateY(70px);
  -ms-transform: translateY(70px);
  -o-transform: translateY(70px);
  transform: translateY(70px);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
}
.header_area.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
  line-height: 70px;
}

.navbar_fixed {
  position: fixed;
  width: 100%;
  top: -70px;
  left: 0;
  right: 0;
  background: var(--white);
  -webkit-transform: translateY(70px);
  -moz-transform: translateY(70px);
  -ms-transform: translateY(70px);
  -o-transform: translateY(70px);
  transform: translateY(70px);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
}
.navbar_fixed .navbar .nav .nav-item .nav-link {
  line-height: 70px;
}

.subpage .custom-navbar {
  background: var(--white);
}
.subpage .custom-navbar .nav li a {
  color: #666;
}
.subpage .custom-navbar .navbar-brand {
  color: var(--theme-color);
}
.subpage .custom-navbar .nav li .calltxt {
  color: #666;
  border-left-color: #ddd;
}

.custom-navbar .nav li:hover > a {
  color: var(--theme-color);
}
.custom-navbar .nav li.active > a {
  background-color: transparent;
  color: var(--theme-color);
}

.subpage img.logocolor {
  display: block;
}
.subpage img.whtlogo {
  display: none;
}

/*---------------------------------------
    Home section              
-----------------------------------------*/

#home {
  background: url(../images/home-bg.jpg) no-repeat top;
  background-size: cover;
  background-position: center center;
  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;
  color: var(--white);
  height: 100vh;
  position: relative;
  text-align: left;
}
#home2 {
  /* background: url(../images/home-bg2.jpg) no-repeat top; */
  background-size: cover;
  background-position: center center;
  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;
  color: var(--white);
  height: 100vh;
  position: relative;
  text-align: center;
}
#home .overlay {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slide-text {
  margin-top: 130px;
}
.slide-text h1 {
  margin-top: 0;
}
.slide-text h3 {
  font-size: 30px;
}
.slide-text p {
  color: var(--white);
  line-height: 24px;
  max-width: 770px;
  margin: 20px auto;
}
#js-rotating {
  border: 1px solid var(--white);
  padding: 10px 20px;
  display: inline-block;
}
#lawyer {
  background: url(../images/law-bg.jpg) no-repeat top;
  background-size: cover;
  background-position: center center;
  color: var(--white);
  height: 100%;
  position: relative;
  text-align: left;
  padding: 100px 0;
}
#lawyer .slide-text {
  margin-top: 100px;
}
#simplecolors {
  background-color: var(--theme-color);
  background-image: -webkit-linear-gradient(bottom, var(--theme-color), #000);
  background-image: -moz-linear-gradient(bottom, var(--theme-color), #000);
  background-image: -o-linear-gradient(bottom, var(--theme-color), #000);
  background-image: -ms-linear-gradient(bottom, var(--theme-color), #000);
  background-image: linear-gradient(to top, var(--theme-color), #000);
  color: var(--white);
  height: 100%;
  position: relative;
  text-align: left;
  padding: 100px 0;
}
#simplecolors .slide-text {
  margin-top: 50px;
}
#simplecolors .section-btn {
  background: none;
  border-color: var(--white);
}
#simplecolors .headervideo {
  margin-top: 50px;
}
#videobg {
  position: relative;
  height: 100%;
}
/* Video background section from YTPlayer */
header .header-content.video-section .pattern-overlay {
  background-color: rgba(
    0,
    0,
    0,
    0.6
  ); /* increase 0.3 to any value under 1 to darken the video background */
  padding: 100px 0 100px 0px;
  min-height: 100vh;
  z-index: 30;
  /* In case of overlay problems just increase the min-height*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: var(--white);
}
header .header-content.video-section h1 {
  margin-top: 0px;
  font: 600 50px/1.3em "Raleway", sans-serif;
  color: var(--white);
}
header .header-content.video-section p {
  font: 300 18px/1.5em "Source Sans Pro", sans-serif;
  color: var(--white);
  margin-top: 30px;
  margin-bottom: 15px;
}
header .header-content.video-section .button.solid {
  background-color: #298aff;
  color: var(--white);
  border: 2px solid #298aff;
  margin-left: 3px;
  margin-right: 3px;
}
header .header-content.video-section .button.solid:hover {
  background-color: var(--white);
  color: #298aff;
  border: 2px solid var(--white);
}
header .header-content.video-section .button.transparent {
  color: var(--white);
  border: 2px solid var(--white);
  margin-left: 3px;
  margin-right: 3px;
}
header .header-content.video-section .button.transparent:hover {
  background-color: var(--white);
  color: #298aff;
  border: 2px solid var(--white);
}
/*Banner Form*/
.bformBox {
  background: var(--white);
  border-bottom: 5px solid var(--theme-color);
  padding: 30px;
  margin-top: 50px;
}
.bformBox h3 {
  color: #444;
  margin: 0 0 15px 0;
  text-align: center;
  font-size: 24px;
}
.bformBox .formrow {
  margin-bottom: 15px;
}
.bformBox .formrow .form-control {
  height: auto;
  border-radius: 0;
  padding: 10px 15px;
  font-size: 16px;
  border-color: #ddd;
  box-shadow: none;
}
.bformBox .formrow textarea.form-control {
  height: 100px;
}
.bformBox .btn {
  background: var(--theme-color);
  width: 100%;
  border-radius: 0;
  color: var(--white);
  font-weight: 700;
  padding: 10px 15px;
  font-size: 18px;
  text-transform: uppercase;
}
.bformBox .btn:hover {
  background: #333;
}
.bformBox.pg6 {
  margin: 0;
  background: #f6f6f6;
  padding: 30px 0;
}
/*---------------------------------------
   Counter section              
-----------------------------------------*/

#counter {
  padding: 70px 0;
  background: #000 url(../images/counter-bg.jpg) no-repeat bottom;
  background-size: cover;
}
.animatebg {
  background: #0562da;
  -webkit-animation: bannerbg 5s linear 2s infinite alternate; /* Safari 4.0 - 8.0 */
  animation: bannerbg 5s linear 2s infinite alternate;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes bannerbg {
  0% {
    background-color: #0562da;
  }
  25% {
    background-color: #fec107;
  }
  50% {
    background-color: #c90157;
  }
  75% {
    background-color: var(--theme-color);
  }
  100% {
    background-color: var(--theme-color);
  }
}

/* Standard syntax */
@keyframes bannerbg {
  0% {
    background-color: #0562da;
  }
  25% {
    background-color: #fec107;
  }
  50% {
    background-color: #c90157;
  }
  75% {
    background-color: var(--theme-color);
  }
  100% {
    background-color: var(--theme-color);
  }
}
#counter .counter-number {
  display: block;
  color: var(--white);
  font-size: 60px;
  line-height: 60px;
}
#counter span {
  color: var(--white);
  font-weight: bold;
}
.counter-icon {
  font-size: 60px;
  margin-bottom: 15px;
  color: var(--white);
}
.counterbox {
  padding: 0 20px;
}

.tp-banner-container {
  position: relative;
  z-index: 20;
  padding: 0;
  width: 100%;
}
.tp-banner {
  position: relative;
  width: 100%;
}
.tp-banner ul {
  padding: 0;
  margin: 0;
}
.tp-caption {
  line-height: normal !important;
}
.tp-caption a {
  color: inherit !important;
}
.tp-bullets.simplebullets.round .bullet {
  border: 3px var(--white) solid;
  border-radius: 50%;
  background-image: none !important;
}
.tparrows {
  width: auto !important;
  height: auto !important;
  background-image: none !important;
}
.tp-arr-allwrapper {
  margin: 0 10px;
  width: 50px;
  height: 60px;
}
.tp-arr-allwrapper:hover .tp-arr-iwrapper {
  color: var(--white);
}
.tp-leftarrow .tp-arr-allwrapper {
}
.tp-rightarrow .tp-arr-allwrapper {
}
.tp-arr-iwrapper {
  color: var(--white);
  text-align: center;
  font-size: 30px;
  font-family: "FontAwesome";
  line-height: 60px;
}
.tp-leftarrow .tp-arr-iwrapper {
}
.tp-leftarrow .tp-arr-iwrapper:before {
  content: "\f104";
}
.tp-rightarrow .tp-arr-iwrapper:before {
  content: "\f105";
}
.tp-rightarrow .tp-arr-iwrapper {
}
.slide-h1 {
  margin: 5px 0 !important;
  padding: 0 0 10px !important;
  padding-bottom: 5px !important;
  color: #444;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 57px;
}
.slide-h2 {
  margin: 5px 0 !important;
  padding: 0 0 10px !important;
  padding-bottom: 5px !important;
  color: #555;
  font-weight: bold;
  font-size: 55px;
  line-height: 100%;
}
.big-font {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 60px;
}
.large-desc {
  font-size: 16px;
}
.slide-h3 {
  color: var(--white);
  font-size: 31px;
  line-height: 100%;
}
.slide-h3 span {
  text-transform: uppercase;
  font-weight: bold;
}
.slide-head {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 30px;
}
.slide-desc {
  font-size: 22px;
  line-height: 150%;
}
.main-title {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 70px;
}
.icon-cont {
  padding: 15px 40px;
  border-radius: 10px;
  text-align: center;
}
.icon-cont:after {
  position: absolute;
  bottom: -10px;
  left: 40%;
  z-index: 5;
  display: inline-block;
  width: 0;
  height: 0;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  content: "";
}
.icon-cont i {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 50px;
}
.icon-cont span {
  display: block;
  padding: 0 0 5px;
  color: var(--white);
  text-align: center;
  font-size: 18px;
}
a.wit-btn {
  background: var(--white);
  color: #333 !important;
  text-transform: uppercase;
}
.wit-line {
  width: 5%;
  height: 1px;
  background: var(--white);
}
.vert-line {
  min-height: 270px;
  width: 1px;
  background: var(--white);
}
.subTxt {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 17px;
  color: #333;
}
.large-title {
  color: #222;
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase !important;
}
.large-light-title {
  color: #787878 !important;
  font-size: 70px;
  font-weight: lighter;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.large-text {
  font-size: 20px;
  color: #000;
  font-weight: lighter;
}
.larger-text {
  font-size: 24px;
  font-weight: lighter;
  text-transform: uppercase;
}
.witTxt {
  color: var(--white) !important;
}
.light-font {
  font-weight: lighter !important;
  font-size: 50px;
}
.black-bg {
  background: rgba(0, 0, 0, 0.63);
  color: #a8a8a8;
  text-transform: none;
}
.lft-list {
  padding: 10px;
  font-size: 18px;
  color: var(--white);
}
.wit-border {
  border: 1px var(--white) solid;
  padding: 15px 60px;
  color: var(--white);
  font-size: 16px;
  text-transform: uppercase;
}
.rounded-bord {
  margin-right: 15px;
  border: 1px var(--white) solid;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 13px;
  border-radius: 50%;
}
#vertical-ticker {
  height: 120px;
  overflow: hidden;
}
#vertical-ticker li {
  padding: 15px 20px;
  display: block;
  text-align: center;
}
.to-bottom i.fa {
  font-size: 30px;
  border: 2px #a8a8a8 solid;
  padding: 20px 22px;
  border-radius: 50%;
  -webkit-animation: bounce 2s infinite linear;
  animation: bounce 2s infinite linear;
}
.slidertext1 {
  color: var(--white);
  font-size: 50px;
  font-weight: 700;
  padding: 15px 0;
  text-transform: none;
  font-family: "Ubuntu", sans-serif;
}
.slidertext2 {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  padding: 15px 0;
  text-transform: none;
  font-family: "Ubuntu", sans-serif;
}
.sliderpara {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  padding: 15px 0;
  text-transform: none !important;
}
.sliderbtn a {
  color: var(--white) !important;
}
.sliderbtn a:hover {
  color: var(--white) !important;
}
.tp-bannertimer {
  display: none;
}
@-webkit-keyframes bounce {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(-30%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Mozilla Firefox 15 below */
@-moz-keyframes bounce {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(-30%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Opera 12.0 */
@-o-keyframes bounce {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(-30%);
  }
  100% {
    transform: translateY(0);
  }
}

/* W3, Opera 12+, Firefox 16+ */
@keyframes bounce {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(-30%);
  }
  100% {
    transform: translateY(0);
  }
}
/*---------------------------------------
    About section              
-----------------------------------------*/
.about-desc h2 {
  font-size: 36px;
  text-align: center;
  color: #272727;
  font-weight: 500;
  margin-bottom: 30px;
}
#about .about-desc h4 {
  margin-top: 0px;
  padding-bottom: 8px;
}
#about .about-desc h3 {
  font-size: 24px;
}
#about .about-desc p {
}
#about .about-desc a {
  color: #565656;
}
#about .about-desc a:hover {
  color: var(--theme-color);
}
.circleList {
  list-style: none;
  margin-top: 30px;
}
.circleList li {
  text-align: center;
  margin-top: 10px;
}
.circleList li .cricle {
  color: var(--theme-color);
  font-size: 36px;
  text-align: center;
  margin: 0 auto;
}
.circleList li .title {
  font-size: 14px;
  margin-top: 5px;
  font-weight: 600;
  margin-bottom: 30px;
}
#about .team-wrapper {
  position: relative;
  margin: 0;
  padding: 0;
}
#about .team-wrapper h2 {
  color: #353535;
  font-size: 26px;
  line-height: 32px;
}
#about .team-wrapper strong {
  color: var(--theme-color);
  font-weight: 600;
}
#about .team-wrapper img {
  border-radius: 2px;
  width: 100%;
}
#about .team-wrapper .team-desc {
  background: rgba(250, 250, 250, 0.5);
  position: absolute;
  cursor: crosshair;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  padding: 20em 4em 0 0;
  transition: all 0.4s ease-in-out;
  text-align: right;
}
#about .team-wrapper:hover .team-desc {
  opacity: 1;
  transform: scale(1.1);
}
ul.orderlist {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.orderlist li {
  margin-bottom: 12px;
  color: #333;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}
ul.orderlist li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  vertical-align: middle;
  color: var(--theme-color);
}
/*********************************************
			Services Start
**********************************************/
.servicesbox {
  padding: 70px 0;
  text-align: center;
}
.servicesbox .section-title {
  padding-bottom: 10px;
}
.servicesbox .section-title h3 {
  color: var(--white);
}
.servicesbox p {
  color: var(--white);
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  line-height: 26px;
  font-weight: 300;
}
.servicesbox .readmore {
  display: inline-block;
  padding: 15px 30px;
  color: var(--white);
  margin-top: 30px;
  font-weight: 600;
  background: var(--red-btn);
  border-radius: 4px;
}
.servicesbox .readmore i {
  font-weight: 400;
  margin-left: 10px;
}
.servicesbox .readmore:hover {
  background: var(--red-btn-hover);
  color: var(--white);
  text-decoration: none;
}
.bg1 {
  background: url(../images/service-bg-1.jpg) no-repeat left;
  background-size: cover;
}
/*---------------------------------------
   			How it works         
-----------------------------------------*/
.howitwrap {
  position: relative;
  padding: 50px 0;
}
.howitwrap .section-title {
  text-align: left;
  padding-bottom: 15px;
}
.howitwrap .section-title h3:after {
  left: 0;
  margin-left: 0;
}
.howitwrap .section-title h3:before {
  left: 26px;
  margin-left: 0;
}
.howlist {
  list-style: none;
  margin-bottom: 20px;
}
.howlist li {
  margin-top: 20px;
}
.howlist li .howbox:after {
  display: table;
  clear: both;
  content: "";
}
.howlist li .iconcircle {
  margin-bottom: 15px;
  float: left;
  margin-right: 30px;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  border: 1px solid #ddd;
  text-align: center;
  line-height: 50px;
}
.howlist li .iconcircle i {
  font-size: 24px;
  color: var(--theme-color);
  margin-top: 22px;
  display: block;
}
.howlist li h4 {
  font-size: 18px;
  font-weight: 700;
  color: #444;
  margin-bottom: 5px;
}
.howlist li p {
  font-size: 16px;
  line-height: 24px;
  color: #555;
}
.fullimg {
  height: 650px;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  width: 50%;
  float: left;
}
.stcontent {
  padding: 0 50px;
}
/*---------------------------------------
   Service section              
-----------------------------------------*/
.section-title .ftitle {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: var(--nav-btn-hover);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 20px;
}

.section-title .ftitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--theme-brown), #c4a878);
  border-radius: 2px;
}

.section-title p {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.special-bg {
  background: var(--special-bg);
}
/* Practice Area Section */

#practicearea::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(139, 115, 85, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* Service Cards */
.service-thumb {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 30px;
  border: 1px solid rgba(139, 115, 85, 0.1);
}

.service-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--theme-brown), #c4a878);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

.service-thumb:hover::before {
  transform: scaleX(1);
}

.service-thumb:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(139, 115, 85, 0.15);
  border-color: rgba(139, 115, 85, 0.2);
}

/* Image Container */
.thumb-img {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e8e8 0%, #d8d8d8 100%);
}

.thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-thumb:hover .thumb-img img {
  transform: scale(1.12) rotate(1.5deg);
}

.overlay-icon i {
  font-size: 56px;
  color: white;
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-thumb:hover .overlay-icon {
  opacity: 1;
}

.service-thumb:hover .overlay-icon i {
  opacity: 1;
  transform: scale(1);
}

/* Text Content */
.service-thumb h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--nav-btn-hover);
  padding: 25px 25px 10px;
  margin: 0;
  transition: color 0.3s ease;
  letter-spacing: -0.3px;
}

.service-thumb:hover h3 {
  color: var(--theme-brown);
}

.service-thumb p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  padding: 0 25px 15px;
  margin: 0;
  flex-grow: 1;
  font-weight: 400;
}

/* Service Link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px 25px;
  color: var(--theme-brown);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-transform: uppercase;
  position: relative;
}

.service-link::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 25px;
  width: 0;
  height: 2px;
  background: var(--theme-brown);
  transition: width 0.3s ease;
}

.service-link:hover {
  color: var(--nav-btn-hover);
}

.service-link:hover::after {
  width: 50px;
}

.service-link i {
  font-size: 12px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-link:hover i {
  transform: translateX(6px);
}

/* Overlay Icon */
.overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(139, 115, 85, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay-icon i {
  font-size: 48px;
  color: white;
}

.service-thumb:hover .overlay-icon {
  opacity: 1;
}

.service-thumb h3 {
  padding: 20px 20px 10px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
  transition: color 0.3s ease;
}

.service-thumb:hover h3 {
  color: var(--theme-brown);
}

.service-thumb p {
  padding: 0 20px 10px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px 20px;
  color: var(--theme-brown);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

.service-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: #333;
  padding-left: 25px;
}

.service-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  #practicearea {
    padding: 50px 0;
  }

  .thumb-img {
    height: 200px;
  }

  .service-thumb {
    margin-bottom: 20px;
  }

  .service-thumb h3 {
    font-size: 16px;
  }
}

/* .thumb-img:before {
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  content: "";
} */
#service .fa {
  font-size: 24px;
  margin-top: 22px;
}

.servicesbox {
  padding: 80px 0;
}

.service-feature {
  padding-right: 40px;
}

.service-feature h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-feature h2 span {
  color: var(--theme-brown);
  display: block;
}

.feature-list {
  list-style: none;
  padding: 30px 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.feature-list i {
  font-size: 24px;
  color: var(--theme-brown);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}

.feature-list p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.btn-service {
  display: inline-block;
  padding: 14px 40px;
  background: var(--theme-brown);
  color: var(--white) !important;
  border: 2px solid var(--theme-brown);
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  margin-top: 10px;
}

.btn-service:hover {
  background: white;
  color: var(--theme-brown) !important;
}

.service-content {
  background: white;
  padding: 50px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
}

.service-icon {
  position: absolute;
  top: -30px;
  left: 40px;
  width: 60px;
  height: 60px;
  background: var(--theme-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
}

.service-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 20px 0 15px 0;
}

.service-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  word-break: break-word;
  overflow-wrap: break-word;
}

.service-content p:last-of-type {
  margin-bottom: 30px;
}

.stats-box {
  display: flex;
  gap: 30px;
  margin: 35px 0;
  padding: 25px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-item h4 {
  font-size: 32px;
  font-weight: 700;
  color: var(--theme-brown);
  margin: 0 0 5px 0;
}

.stat-item p {
  font-size: 13px;
  color: #999;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.readmore {
  color: var(--theme-brown);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.readmore:hover {
  gap: 12px;
  color: #333;
}

.readmore i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

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

.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.alert-success {
  background-color: rgba(124, 255, 146, 0.25);
  border: 1px solid #7cff92;
  color: #0ea101;
}

.alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #0ea101;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  flex-shrink: 0;
}

.alert-text strong {
  font-weight: 600;
}

.comments-form textarea.form-control {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  resize: vertical;
}

.comments-form .row {
  overflow: hidden;
}



#service .service-thumb:hover .thumb-icon,
.service-thumb:hover img {
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
  /* background: var(--theme-color); */
  color: var(--white);
}

#practicearea .btn {
  background: #444;
  color: var(--white);
  padding: 7px 20px;
  margin-top: 15px;
}
#practicearea .btn:hover {
  background: var(--theme-color);
}

.testimonials {
  list-style: none;
}
.testimonials li {
  margin-bottom: 30px;
}
.testimonials li .int {
  background: #f0f0f0 url(../images/quotes.png) no-repeat 20px 25px;
  padding: 20px 20px 20px 60px;
  position: relative;
}
.testimonials li .int:after {
  content: "";
  background: url(../images/bt-arrow.png) no-repeat;
  width: 28px;
  height: 27px;
  position: absolute;
  bottom: -25px;
  right: 50px;
}
.testimonials li p {
  font-style: italic;
}
.testimonials li .clientinfo {
  text-align: right;
  font-size: 14px;
  margin-top: 30px;
}
.testimonials li .clientinfo strong {
  display: block;
  color: var(--theme-color);
  font-size: 18px;
}

/*---------------------------------------
    Hero section              
-----------------------------------------*/
main#content {
  padding-top: 59px;
}

#hero-general {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
}

/* Container */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding-left: 140px;
}

/* Content Wrapper - Kare Arkaplan */
.hero-content-wrapper {
  background: rgba(30, 58, 95, 0.9);
  padding: 50px 55px;
  width: 540px;
  height: 350px;
  border-radius: 0;
  border-left: 4px solid var(--theme-brown);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Content */
.hero-content {
  color: white;
  width: 100%;
}

/* Main Title */
.hero-main-title {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-title-highlight {
  display: block;
  color: #f0ad4e;
  font-size: 34px;
  margin-top: 3px;
}

/* Typewrite Section */
.hero-typewrite-section {
  margin: 15px 0 25px 0;
  min-height: 24px;
}

.hero-typewrite {
  font-size: 13px;
  font-weight: 600;
  color: #e8d4b0;
  display: block;
  letter-spacing: 0.3px;
}

.wrap {
  border-right: 2px solid #f0ad4e;
}

/* CTA Buttons */
.hero-cta-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-cta-primary,
.hero-cta-secondary {
  padding: 10px 24px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: none;
  display: inline-block;
}

.hero-cta-primary {
  background: var(--theme-brown);
  color: var(--white);
}

.hero-cta-primary:hover {
  background: var(--nav-btn-hover);
  color: var(--white);
  transform: translateY(-1px);
}

.hero-cta-secondary {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.hero-cta-secondary:hover {
  background: white;
  color: #1e3a5f;
  transform: translateY(-1px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}

.hero-scroll-icon {
  width: 28px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  margin: 0 auto 10px;
  position: relative;
}

.hero-scroll-icon::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .hero-container {
    padding-left: 80px;
  }

  .hero-content-wrapper {
    width: 480px;
    height: 320px;
    padding: 40px 45px;
  }

  .hero-main-title {
    font-size: 28px;
  }

  .hero-title-highlight {
    font-size: 30px;
  }

  .hero-typewrite {
    font-size: 12px;
  }
}

/* Responsive - Small Tablet */
@media (max-width: 768px) {
  #hero-general {
    margin-top: 60px;
    height: 500px;
  }

  .hero-container {
    padding-left: 30px;
    justify-content: center;
  }

  .hero-content-wrapper {
    width: 100%;
    max-width: 450px;
    height: auto;
    padding: 35px 40px;
  }

  .hero-main-title {
    font-size: 26px;
  }

  .hero-title-highlight {
    font-size: 28px;
  }

  .hero-typewrite {
    font-size: 12px;
  }

  .hero-typewrite-section {
    margin: 12px 0 20px 0;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    padding: 9px 20px;
    font-size: 11px;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  #hero-general {
    margin-top: 50px;
    height: 400px;
  }

  .hero-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-content-wrapper {
    width: 100%;
    padding: 25px 25px;
    height: auto;
    border-left: 3px solid var(--theme-brown);
  }

  .hero-main-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .hero-title-highlight {
    font-size: 24px;
    margin-top: 2px;
  }

  .hero-typewrite {
    font-size: 11px;
  }

  .hero-typewrite-section {
    margin: 10px 0 18px 0;
  }

  .hero-cta-wrapper {
    gap: 8px;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    padding: 8px 16px;
    font-size: 10px;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* Responsive - Small Mobile */
@media (max-width: 360px) {
  #hero-general {
    height: 350px;
  }

  .hero-main-title {
    font-size: 20px;
  }

  .hero-title-highlight {
    font-size: 22px;
  }

  .hero-content-wrapper {
    padding: 20px 20px;
  }

  .hero-typewrite {
    font-size: 10px;
  }
}
/*---------------------------------------
    About section              
-----------------------------------------*/

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* About Section */
.about-wrapper {
  padding: 100px 0;
  position: relative;
}

.about-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(139, 115, 85, 0.2),
    transparent
  );
}

/* About Row */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

/* About Image */
.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-image:hover img {
  transform: scale(1.05) rotate(1deg);
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 115, 85, 0.15) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-image:hover::before {
  opacity: 1;
}

/* Badge */
.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-image:hover ~ .about-badge,
.about-image-wrapper:hover .about-badge {
  transform: translateY(0);
  opacity: 1;
}

.about-badge-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--theme-brown);
  line-height: 1;
}

.about-badge-text {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* About Content */
.about-content {
  padding: 0;
}

.about-main-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--nav-btn-hover);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.about-main-title span {
  color: var(--theme-brown);
  display: block;
}

.about-description {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* About Features List */
.about-features {
  list-style: none;
  margin: 40px 0;
  padding: 0;
}

.about-features li {
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Feature Icon */
.about-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--theme-brown), #a0886d);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.2);
}

.about-features li:hover .about-feature-icon {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 24px rgba(139, 115, 85, 0.3);
}

/* Feature Content */
.about-feature-content {
  flex-grow: 1;
  padding-top: 3px;
}

.about-feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--nav-btn-hover);
  margin: 0 0 6px 0;
  transition: color 0.3s ease;
}

.about-features li:hover .about-feature-title {
  color: var(--theme-brown);
}

.about-feature-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* About CTA */
.about-cta-wrapper {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid rgba(139, 115, 85, 0.1);
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--theme-brown), #a0886d);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.about-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
}

.about-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 115, 85, 0.3);
  color: var(--white);
}

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

.about-cta-btn span {
  position: relative;
  z-index: 1;
}

.about-cta-btn i {
  font-size: 12px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.about-cta-btn:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
  .about-wrapper {
    padding: 70px 0;
  }

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

  .about-main-title {
    font-size: 32px;
  }

  .about-image-wrapper {
    order: 2;
  }

  .about-content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .about-wrapper {
    padding: 50px 0;
  }

  .about-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-main-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .about-description {
    font-size: 14px;
  }

  .about-features {
    margin: 30px 0;
  }

  .about-features li {
    gap: 15px;
    margin-bottom: 18px;
  }

  .about-feature-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .about-feature-title {
    font-size: 16px;
  }

  .about-feature-text {
    font-size: 13px;
  }

  .about-badge {
    padding: 12px 20px;
    bottom: 15px;
    right: 15px;
  }

  .about-badge-number {
    font-size: 24px;
  }

  .about-cta-btn {
    padding: 12px 35px;
    font-size: 13px;
  }
}

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

  .about-main-title {
    font-size: 26px;
  }

  .about-features li {
    gap: 12px;
    margin-bottom: 16px;
  }

  .about-feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .about-feature-title {
    font-size: 15px;
  }

  .about-feature-text {
    font-size: 12px;
  }

  .about-cta-btn {
    padding: 11px 30px;
    font-size: 12px;
  }
}

/*---------------------------------------
    Blog section              
-----------------------------------------*/

p.ql-align-center {
  text-align: center;
}

p.ql-align-right {
    text-align: right;
}

p.ql-align-left {
    text-align: left;
}

/* Quill Editor Indent (Girinti) Stilleri */

/* Sol girinti (pozitif) */
.ql-indent-1 {
  padding-left: 3em;
}

.ql-indent-2 {
  padding-left: 6em;
}

.ql-indent-3 {
  padding-left: 9em;
}

.ql-indent-4 {
  padding-left: 12em;
}

.ql-indent-5 {
  padding-left: 15em;
}

.ql-indent-6 {
  padding-left: 18em;
}

.ql-indent-7 {
  padding-left: 21em;
}

.ql-indent-8 {
  padding-left: 24em;
}

/* Liste elemanları için indent */
li.ql-indent-1 {
  padding-left: 4.5em;
}

li.ql-indent-2 {
  padding-left: 7.5em;
}

li.ql-indent-3 {
  padding-left: 10.5em;
}

li.ql-indent-4 {
  padding-left: 13.5em;
}

li.ql-indent-5 {
  padding-left: 16.5em;
}

li.ql-indent-6 {
  padding-left: 19.5em;
}

li.ql-indent-7 {
  padding-left: 22.5em;
}

li.ql-indent-8 {
  padding-left: 25.5em;
}

/* Mobil için indent ayarları */
@media (max-width: 768px) {
  .ql-indent-1 {
    padding-left: 2em;
  }

  .ql-indent-2 {
    padding-left: 4em;
  }

  .ql-indent-3 {
    padding-left: 6em;
  }

  .ql-indent-4 {
    padding-left: 8em;
  }

  .ql-indent-5 {
    padding-left: 10em;
  }

  .ql-indent-6 {
    padding-left: 12em;
  }

  .ql-indent-7 {
    padding-left: 14em;
  }

  .ql-indent-8 {
    padding-left: 16em;
  }

  li.ql-indent-1 {
    padding-left: 3em;
  }

  li.ql-indent-2 {
    padding-left: 5em;
  }

  li.ql-indent-3 {
    padding-left: 7em;
  }

  li.ql-indent-4 {
    padding-left: 9em;
  }

  li.ql-indent-5 {
    padding-left: 11em;
  }

  li.ql-indent-6 {
    padding-left: 13em;
  }

  li.ql-indent-7 {
    padding-left: 15em;
  }

  li.ql-indent-8 {
    padding-left: 17em;
  }
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Blog Section */
#blog {
  padding: 100px 0;
  position: relative;
}

#blog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(139, 115, 85, 0.2),
    transparent
  );
}

.blog-main-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--nav-btn-hover);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 20px;
}

.blog-main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--theme-brown), #c4a878);
  border-radius: 2px;
}

.blog-title-highlight {
  color: var(--theme-brown);
}

/* Blog Grid Row */
.blog-grid-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

/* Blog Card */
.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(139, 115, 85, 0.08);
  height: 100%;
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--theme-brown), #c4a878);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

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

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(139, 115, 85, 0.15);
  border-color: rgba(139, 115, 85, 0.2);
}

.blog-card {
  position: relative;
}

/* Blog Image */
.blog-img-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e8e8 0%, #d8d8d8 100%);
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.12) rotate(1deg);
}

/* Blog Date Badge */
.blog-date-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--overlay-bg);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

/* Blog Content */
.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-header {
  margin-bottom: 15px;
}

.blog-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--nav-btn-hover);
  margin: 0 0 10px 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-title a {
  color: var(--nav-btn-hover);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--theme-brown);
}

/* Blog Meta */
.blog-meta {
  font-size: 12px;
  color: #999;
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.blog-author {
  color: #666;
  font-weight: 500;
}

.blog-category a {
  color: var(--theme-brown);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-category a:hover {
  text-decoration: underline;
}

/* Blog Excerpt */
.blog-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Read More Link */
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-brown);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  text-transform: uppercase;
}

.blog-read-more::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--theme-brown);
  transition: width 0.3s ease;
}

.blog-read-more:hover {
  color: var(--nav-btn-hover);
}

.blog-read-more:hover::after {
  width: 50px;
}

.blog-read-more i {
  font-size: 12px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

/* Load More Button */
.blog-load-more-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-top: 60px;
  border-top: 2px solid rgba(139, 115, 85, 0.1);
}

.blog-load-more-btn {
  padding: 16px 55px;
  background: linear-gradient(135deg, var(--theme-brown), #a0886d);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.blog-load-more-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.blog-load-more-btn:hover::before {
  width: 300px;
  height: 300px;
}

.blog-load-more-btn:hover {
  background: linear-gradient(135deg, #9d8469, var(--theme-brown));
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(139, 115, 85, 0.25);
  color: var(--white);
}

.blog-load-more-btn span {
  position: relative;
  z-index: 1;
}

.blog-load-more-btn i {
  font-size: 12px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.blog-load-more-btn:hover i {
  transform: translateY(4px) rotate(180deg);
}

/* Responsive */
@media (max-width: 991px) {
  #blog {
    padding: 70px 0;
  }

  .blog-main-title {
    font-size: 36px;
  }

  .blog-grid-row {
    gap: 25px;
    margin-bottom: 50px;
  }

  .blog-img-wrapper {
    height: 220px;
  }
}

@media (max-width: 768px) {
  #blog {
    padding: 50px 0;
  }

  .blog-main-title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .blog-grid-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-title {
    font-size: 18px;
  }

  .blog-excerpt {
    font-size: 13px;
  }

  .blog-img-wrapper {
    height: 200px;
  }

  .blog-load-more-btn {
    padding: 14px 45px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .blog-content {
    padding: 18px;
  }

  .blog-title {
    font-size: 17px;
  }

  .blog-load-more-btn {
    padding: 12px 35px;
    font-size: 12px;
    gap: 8px;
  }

  .blog-date-badge {
    font-size: 10px;
    padding: 6px 10px;
  }
}

/*---------------------------------------
    Team Section              
-----------------------------------------*/

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Team Section */
#team-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f3f0 0%, var(--white) 100%);
  position: relative;
}

#team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(139, 115, 85, 0.2),
    transparent
  );
}

.team-main-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--nav-btn-hover);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 20px;
}

.team-main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--theme-brown), #c4a878);
  border-radius: 2px;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* Team Card */
.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  text-align: center;
  border: 1px solid rgba(139, 115, 85, 0.08);
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--theme-brown), #c4a878);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

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

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(139, 115, 85, 0.15);
  border-color: rgba(139, 115, 85, 0.2);
}

.team-card {
  position: relative;
}

/* Team Image */
.team-img-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e8e8 0%, #d8d8d8 100%);
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.1) rotate(1deg);
}

/* Overlay */
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--overlay-bg) 0%,
    rgba(107, 85, 65, 0.95) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(4px);
  z-index: 2;
}

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

.team-overlay-content {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card:hover .team-overlay-content {
  opacity: 1;
  transform: scale(1);
}

.team-overlay-text {
  color: white;
  text-align: center;
}

.team-overlay-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.team-overlay-desc {
  font-size: 13px;
  line-height: 1.6;
  max-width: 200px;
  opacity: 0.9;
  color: var(--white);
}

/* Team Content */
.team-content {
  padding: 30px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--nav-btn-hover);
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.team-card:hover .team-name {
  color: var(--theme-brown);
}

.team-position {
  font-size: 13px;
  color: var(--theme-brown);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Social Links */
.team-social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
}

.team-social-item {
  margin: 0;
}

.team-social-link {
  width: 40px;
  height: 40px;
  background: rgba(139, 115, 85, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-brown);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 16px;
}

.team-social-link:hover {
  background: var(--theme-brown);
  color: white;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 991px) {
  #team-section {
    padding: 70px 0;
  }

  .team-main-title {
    font-size: 36px;
  }

  .team-grid {
    gap: 30px;
  }

  .team-img-wrapper {
    height: 260px;
  }
}

@media (max-width: 768px) {
  #team-section {
    padding: 50px 0;
  }

  .team-main-title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .team-img-wrapper {
    height: 230px;
  }

  .team-content {
    padding: 20px;
  }

  .team-name {
    font-size: 16px;
  }

  .team-position {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .team-social-list {
    gap: 10px;
  }

  .team-social-link {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  #team-section {
    padding: 40px 0;
  }

  .team-main-title {
    font-size: 28px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-img-wrapper {
    height: 250px;
  }

  .team-content {
    padding: 18px;
  }

  .team-name {
    font-size: 15px;
  }

  .team-position {
    font-size: 11px;
  }

  .team-social-link {
    width: 35px;
    height: 35px;
    font-size: 13px;
  }
}

/*---------------------------------------
    Footer              
-----------------------------------------*/

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Footer Wrapper */
.footer-wrapper {
  background: var(--footer-bg);
  color: #999;
  position: relative;
  border-top: 1px solid rgba(139, 115, 85, 0.2);
}

.footer-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(139, 115, 85, 0.3),
    transparent
  );
}

/* Footer Top Area */
.footer-top-section {
  padding: 80px 0 60px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 50px;
}

/* Footer Widget */
.footer-widget {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo Section */
.footer-logo-section {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
  border: 1px solid rgba(139, 115, 85, 0.15);
}

.footer-logo-icon svg {
  width: 24px;
  height: 24px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-logo-name {
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.3px;
}

.footer-logo-subtitle {
  font-size: 11px;
  color: var(--theme-brown);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Widget Title */
.footer-widget-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--theme-brown), #c4a878);
  border-radius: 2px;
}

/* Widget Description */
.footer-widget-desc {
  font-size: 14px;
  color: #999;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Contact List */
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #999;
  transition: all 0.3s ease;
}

.footer-contact-list li:hover {
  color: var(--theme-brown);
  padding-left: 5px;
}

.footer-contact-list i {
  color: var(--theme-brown);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* Footer Menu */
.footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu-list li {
  margin-bottom: 10px;
}

.footer-menu-list a {
  color: #999;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-menu-list a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--theme-brown);
  transition: width 0.3s ease;
}

.footer-menu-list a:hover {
  color: var(--theme-brown);
  padding-left: 8px;
}

.footer-menu-list a:hover::before {
  width: calc(100% - 8px);
}

/* Opening Hours */
.footer-hours-list {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 13px;
  color: #999;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(139, 115, 85, 0.2);
}

.footer-hours-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.footer-hours-day {
  font-weight: 600;
  color: white;
}

.footer-hours-time {
  color: var(--theme-brown);
  font-weight: 500;
}

/* Newsletter */
.footer-newsletter {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.footer-newsletter-input {
  flex: 1;
  padding: 12px 15px;
  background: rgba(139, 115, 85, 0.1);
  border: 1px solid rgba(139, 115, 85, 0.3);
  border-radius: 4px;
  color: white;
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-input:focus {
  outline: none;
  background: rgba(139, 115, 85, 0.15);
  border-color: var(--theme-brown);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.footer-newsletter-btn {
  padding: 12px 15px;
  background: linear-gradient(135deg, var(--theme-brown), #a0886d);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.footer-newsletter-btn:hover {
  background: linear-gradient(135deg, #9d8469, var(--theme-brown));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

/* Footer Bottom */
.footer-bottom-section {
  border-top: 1px solid rgba(139, 115, 85, 0.2);
  padding: 40px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 13px;
  color: #999;
}

.footer-copyright strong {
  color: var(--theme-brown);
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(139, 115, 85, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer-social-link:hover {
  background: var(--theme-brown);
  color: white;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 991px) {
  .footer-top-section {
    padding: 60px 0 40px;
  }

  .footer-grid {
    gap: 40px;
  }

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

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-top-section {
    padding: 50px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-widget-title {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .footer-widget-desc {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .footer-bottom-section {
    padding: 30px 0;
  }

  .footer-newsletter {
    flex-direction: column;
  }

  .footer-newsletter-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .footer-top-section {
    padding: 40px 0 25px;
  }

  .footer-grid {
    gap: 25px;
  }

  .footer-logo-section {
    margin-bottom: 15px;
  }

  .footer-logo-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .footer-logo-name {
    font-size: 16px;
  }

  .footer-widget-title {
    font-size: 14px;
  }

  .footer-widget-desc {
    font-size: 12px;
  }

  .footer-copyright {
    font-size: 12px;
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column-reverse;
  }

  .footer-credit-text {
    font-size: 12px;
  }
}

/* Credit Section */
.footer-credit-section {
  background: rgba(139, 115, 85, 0.1);
  border-top: 1px solid rgba(139, 115, 85, 0.2);
  padding: 20px 0;
}

.footer-credit-text {
  text-align: center;
  font-size: 13px;
  color: #999;
  margin: 0;
  letter-spacing: 0.3px;
}

.footer-credit-heart {
  color: #e74c3c;
  font-size: 16px;
  margin: 0 4px;
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.2);
  }

  50% {
    transform: scale(1);
  }
}

.footer-credit-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.footer-credit-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s ease;
}

.footer-credit-link:hover {
  color: var(--white);
}

.footer-credit-link:hover::after {
  width: 100%;
}
/*---------------------------------------
    Work section              
-----------------------------------------*/
.portfolio-grid {
  margin: 10px 0 0 0;
  list-style: none;
}
.portfolio-grid li {
  padding: 5px;
}
#work {
  padding: 60px 0;
}
#work .work-thumb {
  padding: 0;
  overflow: hidden;
  position: relative;
  top: 0;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
#work .work-thumb:hover {
  background: var(--white);
}
#work .work-thumb img {
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0.8;
}
#work .work-thumb:hover img {
  -ms-transform: scale(1.2) rotate(5deg);
  -moz-transform: scale(1.2) rotate(5deg);
  -webkit-transform: scale(1.2) rotate(5deg);
  -o-transform: scale(1.2) rotate(5deg);
  transform: scale(1.2) rotate(5deg);
  opacity: 1;
}
.portfolio-grid li .itemHover {
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  background: rgba(255, 255, 255, 0.9);
  transform: scale(0);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.portfolio-grid li:hover .itemHover {
  transform: scale(1);
}
.portfolio-grid li .infoItem {
  display: table;
  width: 100%;
  height: 100%;
  text-align: center;
}
.portfolio-grid li .itemtitle {
  vertical-align: middle;
  padding: 0 15px 15px;
  position: relative;
  display: table-cell;
}
.portfolio-grid li .itemtitle h5 {
  color: #000;
  font-size: 24px;
  margin: 0 0 5px;
}
.portfolio-grid li .itemtitle p {
  color: #000;
  font-size: 16px;
  line-height: 24px;
}
/*---------------------------------------
    Team section              
-----------------------------------------*/

.thumb-image {
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 8px;
}
.team-thumb:hover img {
  -ms-transform: scale(1.2) rotate(5deg);
  -moz-transform: scale(1.2) rotate(5deg);
  -webkit-transform: scale(1.2) rotate(5deg);
  -o-transform: scale(1.2) rotate(5deg);
  transform: scale(1.2) rotate(5deg);
}

.team-thumb {
  text-align: center;
  margin-bottom: 30px;
  background: var(--white);
  padding-bottom: 10px;
  border-radius: 8px;
}
.team-thumb h4 {
  margin: 0 0 5px 0;
  color: var(--theme-color);
  font-size: 24px;
}
.team-thumb p {
  padding: 0 15px;
}
.team-thumb h5 {
  color: #000;
  margin: 0 0 10px 0;
}
.team-thumb img {
  width: 100%;
}
/* Social */
.social {
  margin-top: 15px;
  margin-bottom: 20px;
}
.social li a {
  display: block;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  color: var(--white) !important;
  line-height: 36px;
  text-align: center;
  text-decoration: none !important;
  background: #999;
}
.social li a:hover {
  background: var(--theme-color);
}

.lawimg {
  border: 1px solid #ddd;
  padding: 10px;
  background: var(--white);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.attorneytop h2 {
  color: var(--theme-color);
  font-size: 30px;
  line-height: 36px;
}
.attorneytop h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  line-height: 26px;
}
.attorneytop p {
  color: #555;
  margin-bottom: 10px;
  font-size: 14px;
}
.address li {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  display: block;
}
.address li a {
  color: #333;
}
.address li i {
  margin-right: 10px;
  color: var(--theme-color);
}

.attorneydetail h1 {
  color: #444;
  font-size: 30px;
}
.attorneydetail h2 {
  color: var(--theme-color);
  font-size: 24px;
}
.attorneydetail p {
  color: #666;
  margin-bottom: 10px;
  font-size: 14px;
}
.atorinfo {
  margin-top: 30px;
}
.atorinfo ul li {
  padding: 5px 0 5px 20px;
  position: relative;
}
.atorinfo ul li:before {
  position: absolute;
  content: "\f061";
  font-family: "FontAwesome";
  left: 0;
  color: var(--theme-color);
}

.attorneyContact {
  margin-top: 30px;
  padding: 30px;
  background: #f5f5f5;
}
.attorneyContact h3 {
  color: #555;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 0;
}

/*---------------------------------------
    Testimonials section              
-----------------------------------------*/
#testimonials {
  color: var(--white);
  padding: 50px 0;
  background: #555 url(../images/testimonial-bg.jpg) repeat;
}
#testimonials h2 {
  color: #555;
}
.testimonialsList {
  list-style: none;
}
.testimonialsList li {
  text-align: center;
  margin: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
}
.testimonialsList li .clientname {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-top: 10px;
}
.testimonialsList li p {
  font-style: italic;
  line-height: 26px;
  color: #ccc;
  max-width: 770px;
  margin: 0 auto;
  font-size: 18px;
}
.testimonialsList li .clientinfo {
  font-weight: 600;
  color: var(--white);
}
#testimonials .section-title p {
  font-size: 18px;
  color: var(--white);
}
/*---------------------------------------
    Prices section              
-----------------------------------------*/
#packages {
  padding: 70px 0;
  background: #eee;
}
.packageList li {
  text-align: center;
  margin-top: 30px;
}
.packageList li .packbox {
  background: var(--white);
  padding: 40px 20px;
}
.packageList li .packbox:hover {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}
.packageList li .icon {
  margin: 0 auto;
  text-align: center;
  font-size: 48px;
  line-height: 70px;
}
.packageList li .icon i {
  display: block;
  color: #999;
}
.packageList li h3 {
  margin: 0 0 15px 0;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
}
.packageList li .price {
  margin-bottom: 20px;
}
.packageList li .price span {
  color: #888;
}
.packageList li .price strong {
  font-size: 48px;
  color: var(--theme-color);
  display: block;
}
.packageList li p {
  letter-spacing: 0;
  border-top: 1px solid #eee;
  font-size: 14px;
  padding-top: 5px;
  margin-top: 5px;
  text-transform: uppercase;
}
.packageList li .booknow {
  margin-top: 30px;
}
.packageList li .booknow a {
  background: var(--theme-color);
  color: var(--white);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 4px;
}

.packageList li .booknow a:hover {
  background: #333;
  color: var(--white);
}

/************************************************
           == FAQs css==
*************************************************/
.faqs {
  margin-bottom: 30px;
}
.faqs .panel-default > .panel-heading {
  background: none;
  border: none;
  padding: 0;
}

.faqs h4 a {
  padding: 10px 55px 10px 15px;
  display: block;
  background: var(--theme-brown);
  color: var(--white);
  font-size: 16px;
  position: relative;
}
.panel-group .panel {
  border-radius: 0;
  margin-bottom: 20px;
}
.panel-group .panel-body {
  line-height: 24px;
  color: #555;
}
.faqs h4 .collapsed:hover,
.faqs h4 a:hover,
.faqs h4 a:active {
  text-decoration: none;
  background: var(--theme-brown);
  color: var(--white);
}
.faqs h4 a:before {
  content: "\f068";
  background: var(--white);
  font-family: "FontAwesome";
  width: 30px;
  padding: 6px 0;
  color: var(--theme-color);
  position: absolute;
  right: 15px;
  top: 8px;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -webkit-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  line-height: 18px;
}
.faqs h4 .collapsed:before {
  content: "\f067";
  font-family: "FontAwesome";
  background: #666;
  width: 30px;
  padding: 6px 0;
  color: var(--white);
  position: absolute;
  right: 15px;
  top: 8px;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -webkit-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  text-decoration: none;
}
.faqs h4 a.collapsed {
  background: var(--white);
  color: #666;
  text-decoration: none;
}

/************************************************
           == Video css==
*************************************************/
.videobg {
  background: var(--white);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  position: relative;
}
.video-image {
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  height: 450px;
}
.playbtn {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  margin-top: -25px;
  z-index: 100;
  left: 0;
}
.playbtn a {
  box-sizing: content-box;
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  position: relative;
}
.playbtn a span {
  display: inline-block;
  position: absolute;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 24px solid var(--theme-color);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  top: 16px;
  left: 22px;
}
.playbtn a:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}
.playbtn a:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}
@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
/*---------------------------------------
    Taglinewrap section              
-----------------------------------------*/
.taglinewrap {
  background: var(--theme-color);
  text-align: center;
  padding: 50px 0;
}
.taglinewrap h2 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 30px;
}
.taglinewrap h3 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 40px;
  font-weight: 700;
}
.taglinewrap p {
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 32px;
}
.taglinewrap a {
  display: inline-block;
  background: #000;
  padding: 15px 35px;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 25px;
  border-radius: 4px;
}
.taglinewrap a:hover {
  background: var(--white);
  color: #000;
}
/* =======================
		Blog Grid
======================= */

#blog {
  padding: 60px 0 50px 0;
}
.blogGrid {
  list-style: none;
}
.blogGrid li {
  margin-bottom: 30px;
}
.blogGrid li .int {
  background: var(--white);
}
.blogGrid li .postimg {
  position: relative;
  display: block;
  margin: 0 0 10px 0;
}
.blogGrid li .postimg img {
  width: 100%;
}
.postimg .date {
  font-weight: bold;
  font-size: 15px;
  color: #999;
  line-height: 20px;
}
.blogGrid li .post-header {
  margin-bottom: 15px;
}
.blogGrid li p {
  font-size: 14px;
}
.readmore {
  display: inline-block;
  margin-top: 15px;
  color: var(--white);
  font-weight: 600;
  padding: 7px 15px;
  background: var(--theme-color);
  border-radius: 4px;
}
.readmore:hover {
  text-decoration: none;
  background: #333;
  color: var(--white);
}
.postmeta {
  margin: 10px 0 0 0;
  line-height: 24px;
}
.postmeta span,
.postmeta a {
  color: #ccc;
}
/*---------------------------------------
    Contact section              
-----------------------------------------*/
#contact {
  position: relative;
}
.contact-form {
  z-index: 10;
  position: relative;
}
.contact-form h4 {
  text-align: left;
  color: #333;
  font-size: 36px;
  margin: 0 0 30px 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}
.contact-form h4 span {
  color: var(--theme-color);
  font-weight: 400;
}
.contact-form .form-control {
  border-color: transparent;
  border-radius: 4px;
  box-shadow: none;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.contact-form input {
  border: 2px solid #f0f0f0 !important;
  height: 55px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--theme-color) !important;
}
.contact-form textarea {
  background: var(--white);
  border: 2px solid #f0f0f0 !important;
}
.contact-form button#submit {
  background-color: var(--theme-color);
  border: none;
  border-radius: 4px;
  color: var(--white);
  padding: 10px 30px;
  height: auto;
  width: 100%;
  text-transform: uppercase;
}
.contact-form button#submit:hover {
  background: #555;
  color: var(--white);
}

.contact {
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
  text-align: left;
}
.contact > span {
  color: var(--theme-color);
  float: left;
  font-size: 30px;
  line-height: 55px;
  text-align: center;
  width: 60px;
  height: 60px;
  border: 1px solid var(--theme-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: var(--white);
  border-radius: 5px;
}
.inner-page .fa-home:before {
  content: "\f015";
}
.information {
  margin-top: 5px;
  padding-left: 80px;
}
.information > strong {
  color: #000;
  display: table;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.information > p {
  line-height: 22px;
  margin: 0;
}

#map {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
  pointer-events: none;
}
.frmap {
  margin-top: 10px;
}
/*---------------------------------------
    Address section              
-----------------------------------------*/

#address {
  color: #333;
  text-align: left;
  margin-top: 10px;
}
#address .fa {
  font-size: 42px;
  color: var(--theme-color);
  float: left;
  width: 50px;
  height: 70px;
  margin-right: 15px;
}
#address h4 {
  color: #444;
  margin: 0;
}
#address p {
  color: #888;
  margin-bottom: 0;
}
.address-office,
.address-phone,
.address-email {
  margin-bottom: 30px;
  clear: both;
  border: 1px solid #ddd;
  background: var(--white);
  padding: 20px;
  min-height: 120px;
}

/*---------------------------------------
   Clients
-----------------------------------------*/
.our-clients {
  padding: 30px 0;
  background: #f7f7f7;
}
.our-clients .owl-controls {
  display: none !important;
}
/*---------------------------------------
   Footer section              
-----------------------------------------*/

.socialLinks {
  margin-bottom: 20px;
}
.socialLinks a {
  font-size: 18px;
  color: var(--white);
  display: inline-block;
  margin: 0 5px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000;
}
.socialLinks a:hover {
  color: var(--theme-color);
}
.socialLinks a i {
  display: block;
  margin-top: 9px;
}
footer .footer-copyright p {
  color: var(--white);
}
.scrollup {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: #000;
  padding: 5px;
  opacity: 0.5;
  border-radius: 50%;
}
.scrollup i {
  color: var(--white);
  display: block;
  line-height: 30px;
  text-align: center;
}
.scrollup:hover {
  opacity: 1;
  text-decoration: none;
}

/*Page Title*/
.pageTitle {
  background: var(--theme-color) url(../images/title-bg.jpg) no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.pageTitle h1 {
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}
.breadCrumb {
  text-align: right;
  color: var(--white);
  margin-top: 10px;
}
.breadCrumb a {
  color: var(--white);
  display: inline-block;
  padding: 0 5px;
}
.breadCrumb span {
  color: var(--white);
  display: inline-block;
  padding-left: 5px;
}

/* =======================
	 Inner Pages
======================= */
.innerpgWraper {
  padding: 70px 0;
}
.innerpgWraper h3 {
  font-size: 24px;
  margin: 0 0 10px 0;
}

/***************************
		404 Page
***************************/
.error-page-wrap {
  padding: 100px 0;
}
.error-page-wrap .errormain {
  text-align: center;
}
.error-page-wrap .errormain h2 {
  font-size: 350px;
  color: #999;
  font-weight: 900;
  line-height: 350px;
}
.error-page-wrap .errormain h3 {
  font-size: 40px;
  color: #888;
  font-weight: 900;
  line-height: 50px;
  letter-spacing: 5px;
  display: inline-block;
  margin-top: -20px;
}
.error-msg p {
  max-width: 500px;
  margin: auto;
  line-height: 24px;
  font-size: 16px;
  color: #666;
}
.error-msg .btn {
  background: var(--theme-color);
  color: var(--white);
  margin-top: 30px;
  border-radius: 0;
  padding: 10px 25px;
  font-size: 18px;
  font-weight: 600;
}

/* =======================
		Blog Listing
======================= */
.listpgWraper {
  padding: 70px 0;
}
.sidebar {
  border: 1px solid #eee;
  padding: 20px;
}
.widget {
  margin-bottom: 40px;
}
.sidebar .widget-title {
  font-size: 18px;
  font-weight: 600;
  color: #666;
  margin-bottom: 10px;
}
.blogWraper {
  margin-bottom: 40px;
}
.blogList {
  list-style: none;
}
.blogList li {
  background: var(--white);
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid #e4e4e4;
}
.blogList li:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-color: var(--theme-color);
}
.postimg {
  position: relative;
  display: inline-block;
}
.postimg .date {
  width: 60px;
  height: 60px;
  font-weight: bold;
  font-size: 15px;
  color: var(--white);
  padding: 7px 10px 0 10px;
  text-align: center;
  line-height: 20px;
  background: var(--theme-color);
  letter-spacing: 0.4px;
  outline: 3px solid var(--theme-color);
  border: 1px solid var(--white);
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 12;
}
.post-header {
  margin-bottom: 20px;
}
.post-header h4 a,
.post-header h4 {
  font-size: 24px;
  color: var(--theme-color);
  font-weight: 600;
}
.post-header h4 a:hover {
  color: #333;
}
.postmeta {
  margin: 15px 0 20px 0;
  line-height: 24px;
}
.postmeta span,
.postmeta a {
  color: var(--theme-color);
}
.blogList p,
.blogGrid li p {
  line-height: 24px;
  color: #555;
  font-size: 14px;
}

/* =======================
		Blog Detail
======================= */
.blogdetailbox {
  background: var(--white);
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid #e4e4e4;
}
blockquote {
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin: 20px 0;
  padding: 20px 20px 20px 60px;
  position: relative;
  border: 1px solid #ccc;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}
blockquote p {
  font-style: italic;
  display: inline-block;
  color: #000;
}
blockquote:before {
  color: #ddd;
  content: "\f10d";
  font-family: "FontAwesome";
  font-size: 22px;
  font-style: normal;
  left: 24px;
  position: absolute;
  top: 20px;
  transform: scale(-1);
}
blockquote:after {
  color: #ddd;
  content: "\f10e";
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 22px;
  font-style: normal;
  margin: 0 0 0 8px;
  position: relative;
  top: 3px;
}
.comments h4 {
  color: #222222;
  font-size: 24px;
  font-weight: 600;
}
.comments .media-body h4 span {
  font-size: 12px;
  color: #777777;
  margin-left: 20px;
  display: inline-block;
  width: 100%;
}
.comments {
  margin-top: 30px;
}
.comments .media-list {
  margin-bottom: 30px;
}
.comments .media-list li {
  padding: 20px;
  border: 1px solid #e9e9e9;
  position: relative;
  background: var(--white);
}
.comments .media-left {
  margin-right: 20px;
}
.comments .media-left a {
  width: 100px;
  display: inline-block;
}
.comments .media p {
  margin-top: 5px;
  color: #333;
  line-height: 20px;
}
.comments .media h6 span {
  font-size: 13px;
  color: #999;
  margin: 0;
  margin-top: 10px;
  text-transform: none;
  display: inline-block;
  width: 100%;
}
.comments .media {
  margin-top: 30px;
}
.comments .media h6 {
  font-weight: 600;
  color: var(--theme-color);
  font-size: 16px;
  text-transform: none;
}
.comments .btn.raply {
  padding: 10px 12px;
  font-size: 12px;
  color: #333;
  background: #f5f5f5;
  border: none;
  border-radius: 0;
  position: absolute;
  top: 15px;
  right: 0;
}
.comments .btn.raply:hover {
  background: var(--theme-color);
  color: var(--white);
}
.comments .media a img {
  margin-bottom: 10px;
}
.commnetsfrm {
  background: var(--white);
  padding: 25px;
}
.comments form label {
  text-transform: uppercase;
  font-weight: normal;
  margin-top: 20px;
  display: inline-block;
  width: 100%;
  font-size: 12px;
}
.comments form .form-control {
  display: inline-block;
  width: 100%;
  height: 40px;
  margin-top: 5px;
  border-radius: 0px;
  box-shadow: none;
  background: none;
  border: 1px solid #e8e8e8;
}
.comments form textarea.form-control {
  display: inline-block;
  width: 100%;
  height: 150px;
}
.commnetsfrm .btn {
  background: var(--theme-color);
  color: var(--white);
  font-weight: 700;
  margin-top: 20px;
  border-radius: 0;
  font-size: 18px;
  padding: 8px 18px;
}
/************************************************
           ==Blog sidebar css==
*************************************************/
.search {
  position: relative;
  margin-bottom: 15px;
}
.search .form-control {
  border-radius: 0;
  height: auto;
  padding: 10px 12px;
  border-color: #ddd;
}
.search .btn {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
  background: none;
  font-size: 20px;
}
/*categories*/
.categories li {
  padding: 7px 10px;
  position: relative;
  padding-left: 15px;
  border-bottom: 1px solid #ddd;
}
.categories li a {
  margin-top: 0;
  color: #888;
  font-weight: 600;
}
.categories li:before {
  content: "\f0da ";
  font-family: "FontAwesome";
  position: absolute;
  left: 0px;
  color: var(--theme-color);
  font-size: 14px;
  top: 7px;
}
.categories li a:hover {
  color: var(--theme-color);
}
/*Archives*/
.archive li {
  line-height: 45px;
}
.archive li a {
  margin-top: 0;
  color: #888;
  font-weight: 600;
}
.archive li span {
  float: left;
  height: 30px;
  width: 30px;
  text-align: center;
  background: #f5f5f5;
  border: 1px solid var(--white);
  outline: 3px solid #f5f5f5;
  margin-right: 20px;
  line-height: 26px;
  font-size: 12px;
  color: #777777;
  margin-top: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.archive li a:hover span {
  background: var(--theme-color);
  color: var(--white);
}
/*Popular Posts*/

.papu-post .media-left {
  margin-right: 0px;
}
.papu-post .media-left img {
  width: 100%;
}
.papu-post .media-left a {
  width: 80px;
  margin-top: 0;
  margin-right: 5px;
  display: inline-block;
}
.papu-post span {
  color: #333;
  letter-spacing: 0px;
  font-size: 11px;
}
.papu-post li {
  border-bottom: 1px solid #ececec;
  padding: 15px 0;
  margin: 0px;
}
.papu-post li:first-child {
  padding-top: 0;
}
.papu-post .media-heading {
  display: inline-block;
  width: 100%;
  color: var(--theme-color);
  margin-top: 0px;
  line-height: 20px;
}
.papu-post li:last-child {
  border-bottom: 0;
}
/*Tags*/
.tags {
  margin-top: 10px;
}
.tags:after {
  display: table;
  clear: both;
  content: "";
}
.tags li {
  display: inline-block;
  float: left;
}
.tags a {
  color: #969595;
  border: 1px solid #dadada;
  padding: 7px 10px;
  display: inline-block;
  margin-right: 7px;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.tags a:hover {
  border: 1px solid var(--theme-color);
  background: var(--theme-color);
  color: var(--white);
  text-decoration: none;
}
/*Photo Streen*/
.photo-steam {
  margin: 0 -5px;
}
.photo-steam:after {
  display: table;
  clear: both;
  content: "";
}
.photo-steam li {
  float: left;
  width: 25%;
  padding: 0 5px;
  margin-bottom: 10px;
}

/*---------------------------------------
   Footer styles              
-----------------------------------------*/
.footer-top-area {
  background-color: #141414;
  padding: 30px 0px;
}
.footer-lwf {
  padding: 20px 0px;
}
.footer-lwf h3.footer-logo {
  margin-bottom: 20px;
}
.footer-lwf h3 {
  color: var(--white);
  margin-top: 0px;
  position: relative;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 40px;
}
.footer-lwf h3:before {
  position: absolute;
  display: block;
  height: 2px;
  background-color: var(--theme-color);
  left: 0px;
  bottom: -10px;
  content: "";
  width: 40px;
}
.footer-lwf ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
.footer-lwf ul li {
  padding-bottom: 5px;
}
.footer-lwf ul.footer-contact li {
  color: var(--theme-color);
}
.footer-lwf ul.footer-contact li i.fa {
  padding-right: 4px;
  color: #a7a7a7;
}
.footer-menu ul li {
  padding-bottom: 10px;
  padding-left: 15px;
  position: relative;
}
.footer-menu ul li:before {
  position: absolute;
  left: 0px;
  top: 0px;
  content: "\f105";
  font-family: "FontAwesome";
}
.footer-top-area,
.footer-top-area a {
  color: #a7a7a7;
}

.footer-lwf ul.open-hours li {
  border-bottom: 1px solid #333;
  padding: 10px 0px;
}
.footer-lwf ul.open-hours li:first-child {
  padding-top: 0px;
}

.newsletter {
  margin-top: 30px;
  position: relative;
}
.newsletter .news-input {
  padding: 15px 65px 15px 15px;
  background: #252525;
  color: #a7a7a7;
  width: 100%;
  border: 0px;
  border-radius: 3px;
}
.newsletter .news-btn {
  color: var(--white);
  background-color: var(--theme-color);
  width: 50px;
  height: 100%;
  position: absolute;
  right: 0px;
  border: 0px;
  border-radius: 0px 3px 3px 0px;
  font-size: 26px;
  top: 0px;
}
.footer-bottom-area {
  color: #999;
  font-size: 12px;
  padding: 20px 0px;
}

/*---------------------------------------
   Mobile Responsive styles              
-----------------------------------------*/
@media (max-width: 1024px) {
  .navbar-right {
    margin-top: 10px;
  }
  .stcontent,
  .fullimg {
    float: none;
    width: auto;
  }
  .fullimg {
    height: 350px;
    margin: 30px 30px 0 30px;
  }
}
@media (max-width: 990px) {
  h1 {
    font-size: 52px;
  }

  .navbar-header {
    float: none;
    text-align: center;
  }
  .navbar-brand {
    float: none;
    display: inline-block;
  }

  .is-sticky .custom-navbar {
    padding-bottom: 10px;
  }
  .is-sticky .custom-navbar .nav li a {
    padding: 10px 15px;
  }
  #home {
    height: auto;
  }
  .servicesbox {
    padding: 60px 30px;
  }
  .servicesbox h3 {
    font-size: 30px;
  }
  #counter .counter-number {
    font-size: 48px;
  }
  #service .service-thumb-first,
  #service .service-thumb-second {
    margin-bottom: 32px;
  }
  ul.orderlist li {
    float: none;
    width: auto;
  }
  #team .team-thumb {
    margin-bottom: 30px;
  }
  .postimg {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  #blog,
  #work {
    padding: 50px 15px;
  }
  .taglinewrap {
    padding: 50px 15px;
  }
  .howitwrap .stcontent {
    padding-bottom: 0;
  }
}
@media (max-width: 880px) {
  .portfolio-grid li .itemtitle p {
    font-size: 14px;
    line-height: 22px;
  }
  .portfolio-grid li .itemtitle {
    padding: 10px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 48px;
  }
  #counter .counter-item {
    margin-top: 28px;
    margin-bottom: 28px;
  }
}
@media (max-width: 767px) {
  .navbar-header {
    text-align: left;
  }

  .sticky-wrapper,
  .navbar-collapse.in {
    z-index: 100000;
  }
  .is-sticky .navbar-collapse.in {
    background: #eee;
  }
  .is-sticky .navbar-brand {
    display: block;
  }

  .slidertext1,
  .sliderbtn,
  .slidertext2 {
    padding-right: 20px !important;
  }

  #about .about-desc {
    margin-bottom: 32px;
  }
  #address .address-phone {
    margin-top: 22px;
    margin-bottom: 22px;
  }
  #team .team-thumb {
    margin-bottom: 30px;
  }

  #counter .counter-number {
    font-size: 48px;
  }
  .parallax-section,
  #packages {
    padding: 50px 15px;
  }
  .videowraper,
  .howitwrap {
    padding: 50px 15px;
  }
  .howlist li .iconcircle {
    margin-bottom: 50px;
  }
  #counter {
    padding-top: 0;
  }
}
@media (max-width: 580px) {
  h1 {
    font-size: 29px;
  }
  h2 {
    font-size: 29px;
    /* line-height: 42px; */
  }
  h3 {
    font-size: 24px;
    line-height: 42px;
  }
  /* h3 {
    font-size: 12px;
    letter-spacing: 2px;
  } */
}
@media (max-width: 350px) {
  #about .team-wrapper .team-desc {
    padding-top: 14em;
  }
}

@media (max-width: 991px) {
  .service-feature {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .service-feature h2 {
    font-size: 28px;
  }

  .service-content {
    padding: 40px 30px;
  }

  .service-icon {
    left: 30px;
  }
}

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

  .feature-list li {
    margin-bottom: 20px;
  }

  .service-content {
    padding: 30px 20px;
    margin-top: 20px;
  }

  .stats-box {
    flex-direction: column;
    gap: 20px;
  }

  .stat-item h4 {
    font-size: 28px;
  }

  .service-content h3 {
    font-size: 24px;
  }

  .service-feature h2 {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  #practicearea {
    padding: 70px 0;
  }

  .section-title .ftitle {
    font-size: 36px;
  }

  .section-title {
    margin-bottom: 50px;
  }

  .thumb-img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  #practicearea {
    padding: 50px 0;
  }

  .section-title .ftitle {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .section-title p {
    font-size: 16px;
  }

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

  .service-thumb h3 {
    font-size: 18px;
  }

  .service-thumb p {
    font-size: 13px;
  }

  .thumb-img {
    height: 200px;
  }

  .overlay-icon i {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  nav.custom-navbar {
    padding: 10px 0;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-brand {
    gap: 8px;
  }

  .navbar-brand img {
    max-height: 40px;
  }

  .logo-name {
    font-size: 16px;
  }

  .logo-subtitle {
    font-size: 10px;
  }

  .collapse.navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column !important;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(139, 115, 85, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .collapse.navbar-collapse.in {
    max-height: 500px;
  }

  .nav.navbar-nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav.navbar-nav > li {
    width: 100%;
  }

  .nav.navbar-nav > li > a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
  }

  .dropdown-menu {
    position: static;
    background: rgba(139, 115, 85, 0.05);
    border: none;
    box-shadow: none;
    display: none;
    border-radius: 0;
    margin: 0;
  }

  .nav.navbar-nav > li.dropdown .dropdown-menu {
    display: none;
  }

  .nav.navbar-nav > li.dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 10px 40px;
    font-size: 12px;
    border: none;
  }

  .calltxt {
    padding: 12px 20px;
    border-left: none;
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
    margin-left: 0;
  }
}

/* Post Content */
.post-content {
  padding: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.post-content p {
  margin: 0 0 1em 0;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  font-weight: bold;
  margin: 1em 0 0.5em 0;
  color: #222;
  line-height: 1.3;
}

.post-content h1 { font-size: 2em; }
.post-content h2 { font-size: 1.75em; }
.post-content h3 { font-size: 1.5em; }
.post-content h4 { font-size: 1.25em; }

.post-content strong,
.post-content b {
  font-weight: bold;
  color: #000;
}

.post-content em,
.post-content i {
  font-style: italic;
}

.post-content u {
  text-decoration: underline;
}

.post-content s {
  text-decoration: line-through;
}

.post-content ul,
.post-content ol {
  margin: 1em 0;
  padding-left: 2em;
}

.post-content li {
  margin: 0.5em 0;
  line-height: 1.6;
}

.post-content ul li {
  list-style-type: disc;
}

.post-content ol li {
  list-style-type: decimal;
}

.post-content a {
  text-decoration: underline;
  word-break: break-word;
}

.post-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
  border-radius: 8px;
  display: block;
}

.post-content blockquote {
  border-left: 4px solid #deaf50;
  padding: 1em;
  margin: 1.5em 0;
  font-style: italic;
  color: #555;
  background: #f9f9f9;
  border-radius: 4px;
}

.post-content pre,
.post-content code {
  background: #f4f4f4;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
}

.post-content pre {
  padding: 1em;
  margin: 1.5em 0;
  overflow-x: auto;
}

.post-content code {
  padding: 2px 6px;
  font-size: 0.9em;
}

.post-content .ql-indent-1 { padding-left: 3em; }
.post-content .ql-indent-2 { padding-left: 6em; }
.post-content .ql-indent-3 { padding-left: 9em; }
.post-content .ql-indent-4 { padding-left: 12em; }

.comments-section h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

.comments-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comment-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  margin-bottom: 20px;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.comment-header strong {
  font-size: 16px;
  color: #222;
}

.comment-header time {
  font-size: 13px;
  color: #999;
}

.comment-message {
  margin: 10px 0;
  color: #555;
  line-height: 1.6;
}

.admin-reply {
  margin-top: 15px;
  padding: 15px;
  background: #f7f7f7;
  border-left: 3px solid #deaf50;
  border-radius: 4px;
}

.admin-reply strong {
  color: #deaf50;
  margin-bottom: 5px;
  display: block;
}

.comments-form h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

.comments-form .form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 15px;
}

.comments-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.captcha-field {
  margin-top: 10px;
}

.captcha-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.comments-form .btn {
  background: #deaf50;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.comments-form .btn:hover {
  background: #c69940;
}

/* Mobil Responsive */
@media (max-width: 768px) {
  .blog-content-section {
    padding: 0 10px;
  }

  .blogdetailbox {
    padding: 15px;
    margin-bottom: 20px;
  }

  .post-header {
    padding: 15px 10px;
  }

  .post-header h2 {
    font-size: 22px;
  }

  .postmeta {
    font-size: 13px;
    gap: 8px;
  }

  .post-content {
    padding: 15px 10px;
    font-size: 15px;
    line-height: 1.7;
  }

  .post-content h1 { font-size: 1.75em; }
  .post-content h2 { font-size: 1.5em; }
  .post-content h3 { font-size: 1.25em; }

  .post-content .ql-indent-1 { padding-left: 2em; }
  .post-content .ql-indent-2 { padding-left: 4em; }
  .post-content .ql-indent-3 { padding-left: 6em; }
  .post-content .ql-indent-4 { padding-left: 8em; }

  .comments-section h3,
  .comments-form h3 {
    font-size: 20px;
  }

  .comment-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .comments-form .form-control {
    padding: 10px;
    font-size: 14px;
  }

  .comments-form .btn {
    width: 100%;
    padding: 12px;
  }

  .no-image {
    height: 200px;
    font-size: 14px;
  }

  .postimg time.date {
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .post-header h2 {
    font-size: 20px;
  }

  .post-content {
    font-size: 14px;
  }

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

  .postmeta .separator {
    display: none;
  }
}

.service-grid::after,
  .service-grid::before {
    display: none !important;
    content: none !important;
  }

  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    justify-items: stretch;
  }

  .service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .service-thumb {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .service-thumb:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
  }

  .thumb-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 15px;
  }

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

  .service-thumb h3 {
    margin: 10px 0 15px 0;
    font-size: 1.3rem;
    color: #333;
  }

  .service-thumb p {
    flex-grow: 1;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
  }

  .service-link {
    display: inline-block;
    color: #b8860b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .service-link:hover {
    color: #8b6508;
    margin-left: 5px;
  }

  .service-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
  }

  .service-link:hover i {
    margin-left: 10px;
  }


  @media (max-width: 768px) {
    .service-grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
  }

  @media (max-width: 480px) {
    .service-grid {
      grid-template-columns: 1fr;
    }
  }