:root {
  --theme-color1: #0C5B8C;
  --theme-color2: #1A8BC4;
  --theme-color3: #E68A2E;
  --theme-color4: #0A4A73;
  --text-color: #666666;
  --text-dark: #222222;
  --text-light: #999999;
  --bg-light: #F8F8F8;
  --bg-dark: #0C5B8C;
  --border-color: #E5E5E5;
  --white: #FFFFFF;
  --black: #000000;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Source Sans Pro', sans-serif;
  --container-width: 1140px;
  --transition-base: all 0.3s ease;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-color);
  background: var(--white);
  overflow-x: hidden;
}
a {
  color: var(--theme-color1);
  text-decoration: none;
  transition: var(--transition-base);
}
a:hover {
  color: var(--theme-color2);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  margin: 0 0 10px;
  line-height: 1.3;
}
p {
  margin: 0 0 15px;
}
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.col-2 {
  flex: 0 0 16.6667%;
  max-width: 16.6667%;
  padding: 0 15px;
}
.col-20 {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0 15px;
}
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}
.col-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 0 15px;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-white {
  color: var(--white);
}
.text-theme-colored1 {
  color: var(--theme-color1) !important;
}
.text-theme-colored2 {
  color: var(--theme-color2) !important;
}
.bg-theme-colored1 {
  background: var(--theme-color1);
}
.bg-theme-colored2 {
  background: var(--theme-color2);
}
.bg-theme-colored4 {
  background: var(--theme-color4);
}
.bg-light {
  background: var(--bg-light);
}
.bg-white {
  background: var(--white);
}
.bg-dark {
  background: var(--bg-dark);
}
.align-items-center {
  align-items: center;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-center {
  justify-content: center;
}
.d-flex {
  display: flex;
}
.d-none {
  display: none;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.overflow-hidden {
  overflow: hidden;
}
.w-100 {
  width: 100%;
}
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50 {
  margin-bottom: 50px;
}
.p-0 {
  padding: 0;
}
.p-30 {
  padding: 30px;
}
.pl-0 {
  padding-left: 0;
}
.pr-0 {
  padding-right: 0;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#preloader .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
}
.preloader-square-swapping {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}
.preloader-square-swapping .cssload-square {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  animation: preloaderAnim 1.2s ease-in-out infinite;
}
.preloader-square-swapping .cssload-square:nth-child(1) {
  background: var(--theme-color1);
  animation-delay: 0s;
}
.preloader-square-swapping .cssload-square:nth-child(2) {
  background: var(--theme-color2);
  animation-delay: 0.15s;
}
.preloader-square-swapping .cssload-square:nth-child(3) {
  background: var(--theme-color3);
  animation-delay: 0.3s;
}
@keyframes preloaderAnim {
  0%, 80%, 100% { transform: scale(0.6) rotate(0deg); opacity: 0.4; }
  40% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}
.preloader-text__inner {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: 4px;
  text-transform: uppercase;
}
.letters-loading {
  display: inline-block;
}
.letters-loading span {
  display: inline-block;
  animation: letterFade 1.4s ease-in-out infinite;
}
.letters-loading span:nth-child(1) { animation-delay: 0s; }
.letters-loading span:nth-child(2) { animation-delay: 0.1s; }
.letters-loading span:nth-child(3) { animation-delay: 0.2s; }
.letters-loading span:nth-child(4) { animation-delay: 0.3s; }
.letters-loading span:nth-child(5) { animation-delay: 0.4s; }
.letters-loading span:nth-child(6) { animation-delay: 0.5s; }
.letters-loading span:nth-child(7) { animation-delay: 0.6s; }
@keyframes letterFade {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}
.preloader-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#disable-preloader {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 30px;
  background: var(--theme-color2);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 14px;
  cursor: pointer;
  z-index: 1;
  transition: var(--transition-base);
}
#disable-preloader:hover {
  background: var(--theme-color4);
}
.tm-top-bar {
  background: var(--theme-color1);
  color: var(--white);
  font-size: 14px;
  padding: 10px 0;
}
.tm-top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tm-top-bar a {
  color: var(--white);
}
.tm-top-bar .top-bar-left,
.tm-top-bar .top-bar-center,
.tm-top-bar .top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.tm-top-bar .top-bar-left {
  flex: 1;
}
.tm-top-bar .top-bar-center {
  flex: 1;
  justify-content: center;
}
.tm-top-bar .top-bar-right {
  flex: 1;
  justify-content: flex-end;
}
.icon-circled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 14px;
  transition: var(--transition-base);
}
.icon-circled:hover {
  background: var(--theme-color2);
  color: var(--white);
}
.tm-header-mid-row-elementor {
  border-bottom: 1px solid #F5F5F5;
  padding: 15px 0;
  background: var(--white);
}
.tm-header-mid-row-elementor .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tm-header-mid-row-elementor .logo {
  width: 220px;
  display: flex;
  align-items: center;
}
.tm-header-mid-row-elementor .logo img {
  max-width: 100%;
  height: auto;
}
.tm-header-mid-row-elementor .header-right {
  display: flex;
  gap: 30px;
}
.header-icon-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-icon-box .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--theme-color1);
  flex-shrink: 0;
  transition: var(--transition-base);
}
.header-icon-box:hover .icon {
  background: var(--theme-color1);
  color: var(--white);
  border-color: var(--theme-color1);
}
.header-icon-box .text h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: #222;
  margin: 0 0 2px;
}
.header-icon-box .text p {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.menuzord {
  position: relative;
  background: var(--white);
}
.menuzord .container {
  position: relative;
}
.menuzord-menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menuzord-menu > li {
  position: relative;
}
.menuzord-menu > li > a {
  display: block;
  padding: 30px 20px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: #222;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-base);
  position: relative;
}
.menuzord-menu > li > a:hover,
.menuzord-menu > li.active > a {
  color: var(--theme-color1);
}
.menuzord-menu ul.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  min-width: 220px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-base);
  z-index: 100;
}
.menuzord-menu li:hover > ul.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menuzord-menu ul.dropdown li {
  position: relative;
}
.menuzord-menu ul.dropdown li a {
  display: block;
  padding: 10px 25px;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: var(--transition-base);
}
.menuzord-menu ul.dropdown li a:hover {
  color: var(--theme-color1);
  padding-left: 30px;
}
.menuzord-menu ul.dropdown ul.dropdown {
  top: 0;
  left: 100%;
}
.megamenu,
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-base);
  z-index: 100;
}
.menuzord-menu li:hover > .megamenu,
.menuzord-menu li:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.megamenu .col3,
.mega-menu .mega-menu-column {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}
.megamenu .megamenu-title,
.mega-menu .mega-menu-column h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: #222;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.megamenu .col3 ul li a,
.mega-menu .mega-menu-column ul li a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: var(--transition-base);
}
.megamenu .col3 ul li a:hover,
.mega-menu .mega-menu-column ul li a:hover {
  color: var(--theme-color1);
  padding-left: 5px;
}
.megamenu-row {
  display: flex;
  flex-wrap: wrap;
}
.btn-theme-colored2.btn-xs.btn-round {
  padding: 8px 20px;
  font-size: 12px;
  background: var(--theme-color2);
  color: var(--white);
  border-radius: 30px;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-base);
  cursor: pointer;
  display: inline-block;
}
.btn-theme-colored2.btn-xs.btn-round:hover {
  background: var(--theme-color4);
}
.btn-theme-colored2 {
  display: inline-block;
  padding: 15px 40px;
  background: var(--theme-color2);
  color: var(--white);
  border-radius: 30px;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-base);
}
.btn-theme-colored2:hover {
  background: var(--theme-color4);
  color: var(--white);
}
.btn-theme-colored1 {
  display: inline-block;
  padding: 15px 40px;
  background: var(--theme-color1);
  color: var(--white);
  border-radius: 30px;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-base);
}
.btn-theme-colored1:hover {
  background: var(--theme-color4);
  color: var(--white);
}
.btn-bordered.btn-theme-colored1 {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--theme-color2);
  padding: 15px 40px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-base);
  display: inline-block;
}
.btn-bordered.btn-theme-colored1:hover {
  background: var(--theme-color2);
  border-color: var(--theme-color2);
  color: var(--white);
}
.btn-plain-text-with-arrow-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-color1);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition-base);
}
.btn-plain-text-with-arrow-right::after {
  content: '\f178';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  transition: var(--transition-base);
}
.btn-plain-text-with-arrow-right:hover {
  color: var(--theme-color2);
}
.btn-plain-text-with-arrow-right:hover::after {
  transform: translateX(5px);
}
#tm-header-mobile {
  display: none;
  background: var(--white);
  position: relative;
  z-index: 1000;
}
.tm-nav-mobile-button {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: var(--theme-color1);
  border: none;
  padding: 0;
  border-radius: 4px;
}
.tm-nav-mobile-button span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-base);
}
.tm-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
  z-index: 1001;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}
#sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
#sticky-header.sticky-visible {
  transform: translateY(0);
}
#sticky-header .menuzord-menu > li > a {
  padding: 20px 15px;
  font-size: 14px;
}
#sticky-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#sticky-header .logo img {
  max-height: 40px;
  width: auto;
}
.rev_slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.rev_slider > ul {
  position: relative;
  height: 800px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.rev_slider > ul > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}
.rev_slider > ul > li:first-child {
  opacity: 1;
  z-index: 2;
}
.rev_slider > ul > li > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rev_slider > ul > li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(12,91,140,0.65) 0%, rgba(10,74,115,0.4) 50%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
  pointer-events: none;
}
.tp-caption {
  position: absolute;
  z-index: 5;
  color: var(--white);
  width: auto;
  max-width: 700px;
}
.rev_slider > ul > li > .tp-caption:nth-child(2) { top: 50%; left: 10%; transform: translateY(-70%); }
.rev_slider > ul > li > .tp-caption:nth-child(3) { top: 50%; left: 10%; transform: translateY(-30%); }
.rev_slider > ul > li > .tp-caption:nth-child(4) { top: 50%; left: 10%; transform: translateY(10%); }
.rev_slider > ul > li > .tp-caption:nth-child(5) { top: 50%; left: 10%; transform: translateY(50%); }
.tp-caption .slider-content {
  max-width: 700px;
}
.tp-caption .slider-title {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 20px;
}
.tp-caption .slider-title .text-theme-colored1 {
  color: var(--theme-color2);
}
.tp-caption .slider-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  line-height: 1.6;
  margin: 0 0 30px;
}
.tp-rightarrow,
.tp-leftarrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-base);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
}
.tp-rightarrow:hover,
.tp-leftarrow:hover {
  background: var(--theme-color2);
  border-color: var(--theme-color2);
  transform: translateY(-50%) scale(1.08);
}
.tp-leftarrow {
  left: 30px;
}
.tp-rightarrow {
  right: 30px;
}
.tp-bullets {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.tp-bullets .bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-base);
}
.tp-bullets .bullet.active,
.tp-bullets .bullet:hover {
  background: var(--theme-color2);
  border-color: var(--white);
}
.tm-icon-box {
  padding: 60px 30px;
  text-align: center;
  background: var(--theme-color2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.tm-icon-box:hover {
  background: var(--theme-color4);
}
.tm-icon-box .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 48px;
  color: var(--white);
  margin-bottom: 20px;
  transition: var(--transition-base);
}
.tm-icon-box:hover .icon {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}
.tm-icon-box h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 5px;
}
.tm-icon-box h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 0;
}
.about-section {
  padding: 100px 0;
}
.about-image-wrapper {
  position: relative;
}
.about-image-wrapper img {
  width: 100%;
  border-radius: 8px;
}
.experience-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--theme-color1);
  color: var(--white);
  padding: 25px 30px;
  border-radius: 0 8px 0 0;
}
.experience-badge h3 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1;
}
.experience-badge p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin: 5px 0 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--theme-color2);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition-base);
  z-index: 2;
}
.video-play-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(26,139,196,0.4);
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}
.video-play-button:hover {
  background: var(--theme-color1);
  color: var(--white);
}
h6.section-subtitle {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--theme-color1);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 5px;
}
.section-title h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 36px;
  color: #222;
  line-height: 1.3;
  margin: 0 0 15px;
}
.separator-line {
  width: 60px;
  height: 3px;
  background: var(--theme-color2);
  margin: 20px 0;
  display: block;
}
.separator-line.m-auto {
  margin: 20px auto;
}
.about-section ul li {
  font-size: 14px;
  color: #666;
  line-height: 2.5;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-section ul li::before {
  content: '\f0c1';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--theme-color2);
  font-size: 14px;
}
.floating-object {
  position: absolute;
  animation: floatUpDown 4s ease-in-out infinite;
}
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.paroller-text {
  font-size: 120px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(215,215,215,0.28);
  white-space: nowrap;
  position: relative;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  overflow: hidden;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.grid-3.gutter-15 {
  gap: 15px;
}
.services-section {
  padding: 100px 0;
  background: var(--bg-light);
}
.service-item {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 5px 25px rgba(0,0,0,0.06);
  transition: var(--transition-base);
}
.service-item:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}
.service-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.service-item .content {
  padding: 30px;
  position: relative;
}
.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--theme-color1);
  color: var(--white);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -65px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  transition: var(--transition-base);
}
.service-item:hover .service-icon {
  background: var(--theme-color2);
}
.service-item h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: #222;
  margin: 0 0 10px;
}
.service-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 15px;
}
.video-cta-overlay {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
}
.video-cta-overlay .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}
.video-cta-overlay .content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.video-cta-overlay h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 20px;
}
.video-cta-overlay p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 30px;
}
.video-cta-overlay .video-play-button {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin: 0 auto 30px;
}
.cases-section {
  padding: 100px 0;
}
.border-radius-around-box {
  border-radius: 12px;
  overflow: hidden;
}
.case-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.case-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition-base);
}
.case-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12,91,140,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}
.case-item:hover .overlay {
  background: rgba(12,91,140,0.9);
}
.case-item .overlay .plus-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  transform: scale(0);
  transition: var(--transition-base);
}
.case-item:hover .overlay .plus-icon {
  transform: scale(1);
}
.counters-section {
  padding: 80px 0;
  background: var(--theme-color1);
  background-image: linear-gradient(135deg, var(--theme-color1), var(--theme-color4));
}
.counter-item {
  text-align: center;
}
.counter-item .icon {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 15px;
}
.counter-item .number {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 10px;
}
.counter-item h6 {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin: 0;
}
.quality-services-section {
  display: flex;
}
.quality-services-image {
  flex: 0 0 50%;
  max-width: 50%;
  background-size: cover;
  background-position: center;
  min-height: 500px;
}
.quality-services-content {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quality-services-content .icon-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.quality-services-content .icon-box .icon-lg-circled {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  background: var(--theme-color1);
  color: var(--white);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-base);
}
.quality-services-content .icon-box:hover .icon-lg-circled {
  background: var(--theme-color2);
  transform: rotateY(180deg);
}
.quality-services-content .icon-box h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: #222;
  margin: 0 0 8px;
}
.quality-services-content .icon-box p {
  font-size: 15px;
  color: #666;
  margin: 0;
}
.team-section {
  padding: 100px 0;
  background: var(--bg-light);
}
.team-item {
  text-align: center;
}
.team-item img {
  width: 100%;
  border-radius: 8px;
  height: 350px;
  object-fit: cover;
}
.team-item h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 5px;
}
.team-item > p {
  color: var(--theme-color1);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}
.team-item .social-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.team-item .social-links .icon-circled {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eee;
  color: #999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition-base);
}
.team-item .social-links .icon-circled:hover {
  background: var(--theme-color1);
  color: var(--white);
}
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
}
.testimonial-item {
  text-align: center;
  padding: 40px 20px;
}
.testimonial-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
}
.testimonial-item .quote-text {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 20px;
  font-style: italic;
}
.testimonial-item .quote-text::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--theme-color2);
  margin-right: 10px;
  font-size: 14px;
  font-style: normal;
}
.testimonial-item h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: #222;
  margin-bottom: 5px;
}
.testimonial-item > p {
  color: var(--theme-color1);
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}
.owl-carousel {
  position: relative;
}
.owl-carousel .owl-stage {
  display: flex;
}
.owl-carousel .owl-item {
  flex: 0 0 100%;
  max-width: 100%;
}
.owl-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.owl-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}
.owl-nav button:hover {
  background: var(--theme-color1);
  border-color: var(--theme-color1);
  color: var(--white);
}
.owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}
.owl-dots .owl-dot.active {
  background: var(--theme-color2);
  width: 30px;
  border-radius: 6px;
}
.blog-section {
  padding: 100px 0;
}
.blog-item {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 5px 25px rgba(0,0,0,0.06);
  transition: var(--transition-base);
}
.blog-item:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}
.blog-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-item .content {
  padding: 25px;
}
.blog-item .blog-meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
  display: flex;
  gap: 15px;
}
.blog-item .blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-item h4 {
  font-size: 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}
.blog-item h4 a {
  color: #222;
  text-decoration: none;
}
.blog-item h4 a:hover {
  color: var(--theme-color1);
}
.cta-banner {
  background: var(--bg-light);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}
.cta-banner p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 30px;
}
.footer {
  background: #F5F5F5;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/footer-map-pattern.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  opacity: 0.1;
  pointer-events: none;
}
.footer .footer-top {
  padding: 80px 0 50px;
  position: relative;
  z-index: 1;
}
.footer h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: #222;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--theme-color1);
}
.footer p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}
.footer .social-links {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--theme-color1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition-base);
}
.footer .social-links a:hover {
  background: var(--theme-color2);
  color: var(--white);
  transform: translateY(-3px);
}
.footer .footer-menu li {
  margin-bottom: 10px;
}
.footer .footer-menu li a {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-base);
}
.footer .footer-menu li a::before {
  content: '\f0da';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--theme-color1);
  font-size: 12px;
}
.footer .footer-menu li a:hover {
  color: var(--theme-color1);
  padding-left: 5px;
}
.footer .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}
.footer .contact-list li i {
  color: var(--theme-color1);
  margin-top: 4px;
  min-width: 16px;
}
.footer .copyright-bar {
  background: var(--theme-color1);
  color: var(--white);
  padding: 15px 0;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.footer .copyright-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .copyright-bar a {
  color: var(--white);
  text-decoration: underline;
}
.footer .copyright-bar a:hover {
  color: rgba(255,255,255,0.7);
}
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--theme-color2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-base);
  z-index: 999;
  border: none;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: var(--theme-color4);
  color: var(--white);
}
.mobile-cta-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--theme-color1);
  padding: 12px 15px;
  display: none;
  z-index: 9998;
  text-align: center;
}
.mobile-cta-fixed a {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
}
.mobile-cta-fixed a i {
  margin-right: 8px;
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .rev_slider > ul {
    height: 650px;
  }
  .tp-caption .slider-title {
    font-size: 48px;
  }
  .paroller-text {
    font-size: 80px;
  }
  .quality-services-content {
    padding: 60px 40px;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .rev_slider > ul {
    height: 550px;
  }
  .tp-caption .slider-title {
    font-size: 40px;
  }
  .tp-caption .slider-desc {
    font-size: 16px;
  }
  .tm-top-bar .top-bar-center {
    display: none;
  }
  .tm-header-mid-row-elementor .header-right .header-icon-box:nth-child(2) {
    display: none;
  }
  .section-title h2 {
    font-size: 30px;
  }
  .quality-services-image {
    min-height: 350px;
  }
  .quality-services-content {
    padding: 40px 30px;
  }
  .counter-item .number {
    font-size: 36px;
  }
  .paroller-text {
    font-size: 60px;
  }
  .team-item img {
    height: 280px;
  }
  .case-item img {
    height: 250px;
  }
  #tm-header-mobile {
    display: block;
  }
  .tm-header-mid-row-elementor,
  .tm-top-bar,
  .menuzord {
    display: none;
  }
  #sticky-header {
    display: none;
  }
  .tm-icon-box {
    padding: 40px 20px;
  }
  .tm-icon-box h4 {
    font-size: 20px;
  }
}
@media (max-width: 880px) {
  .rev_slider > ul {
    height: 450px;
  }
  .tp-caption .slider-title {
    font-size: 32px;
  }
  .tp-caption .slider-desc {
    font-size: 14px;
    max-width: 100%;
  }
  .about-section {
    padding: 60px 0;
  }
  .services-section {
    padding: 60px 0;
  }
  .cases-section {
    padding: 60px 0;
  }
  .testimonials-section {
    padding: 60px 0;
  }
  .blog-section {
    padding: 60px 0;
  }
  .team-section {
    padding: 60px 0;
  }
  .video-cta-overlay {
    padding: 80px 0;
  }
  .video-cta-overlay h2 {
    font-size: 30px;
  }
  .quality-services-content {
    padding: 30px 20px;
  }
  .experience-badge h3 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .row {
    margin: 0 -10px;
  }
  .col-2, .col-20, .col-3, .col-4, .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 10px;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .tm-top-bar {
    display: none;
  }
  .rev_slider > ul {
    height: 400px;
  }
  .tp-caption .slider-title {
    font-size: 28px;
  }
  .tp-caption .slider-desc {
    display: none;
  }
  .tp-rightarrow, .tp-leftarrow {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .tp-leftarrow {
    left: 15px;
  }
  .tp-rightarrow {
    right: 15px;
  }
  .tm-icon-box {
    padding: 30px 20px;
  }
  .tm-icon-box .icon {
    width: 70px;
    height: 70px;
    font-size: 36px;
  }
  .about-section {
    padding: 40px 0;
  }
  .about-section .section-title h2 {
    font-size: 24px;
  }
  .quality-services-section {
    flex-direction: column;
  }
  .quality-services-image {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 300px;
  }
  .quality-services-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 40px 20px;
  }
  .experience-badge {
    padding: 15px 20px;
  }
  .experience-badge h3 {
    font-size: 28px;
  }
  .counter-item .number {
    font-size: 32px;
  }
  .counter-item .icon {
    font-size: 36px;
  }
  .team-item img {
    height: 300px;
  }
  .paroller-text {
    font-size: 40px;
  }
  .cta-banner {
    padding: 50px 0;
  }
  .cta-banner h2 {
    font-size: 24px;
  }
  .section-title h2 {
    font-size: 24px;
  }
  .footer .footer-top .col-4,
  .footer .footer-top .col-3,
  .footer .footer-top .col-20 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .footer .copyright-bar .container {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  .video-cta-overlay h2 {
    font-size: 26px;
  }
  .mobile-cta-fixed {
    display: block;
  }
  .service-item img {
    height: 200px;
  }
  .blog-item img {
    height: 200px;
  }
  .case-item img {
    height: 220px;
  }
}
@media (max-width: 480px) {
  .rev_slider > ul {
    height: 320px;
  }
  .tp-caption .slider-title {
    font-size: 22px;
  }
  .tp-rightarrow, .tp-leftarrow {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .tm-icon-box h6 {
    font-size: 14px;
  }
  .tm-icon-box h4 {
    font-size: 18px;
  }
  .tm-icon-box .icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  .service-item .content {
    padding: 20px;
  }
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-top: -55px;
  }
  .service-item h4 {
    font-size: 18px;
  }
  .about-section ul li {
    font-size: 13px;
  }
  .testimonial-item {
    padding: 20px 15px;
  }
  .testimonial-item .quote-text {
    font-size: 14px;
  }
  .team-item img {
    height: 250px;
  }
  .case-item img {
    height: 200px;
  }
  .blog-item h4 {
    font-size: 16px;
  }
  .section-title h2 {
    font-size: 20px;
  }
  h6.section-subtitle {
    font-size: 14px;
  }
  .quality-services-content .icon-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .counter-item .number {
    font-size: 28px;
  }
  .counter-item h6 {
    font-size: 14px;
  }
  .paroller-text {
    font-size: 28px;
  }
  .btn-bordered.btn-theme-colored1,
  .btn-theme-colored1,
  .btn-theme-colored2 {
    padding: 12px 25px;
    font-size: 13px;
  }
  .scroll-to-top {
    width: 35px;
    height: 35px;
    font-size: 14px;
    bottom: 70px;
    right: 15px;
  }
}

/* === Section Styles & Visual Polish === */

/* ----- Section defaults ----- */
.about-us-section,
.services-paroller-section,
.services-grid-section,
.recent-cases-section,
.fun-facts-section,
.quality-dental-section,
.team-section,
.testimonials-section,
.news-section,
.cta-banner-section {
  position: relative;
}

/* ----- CTA Banner Section ----- */
.cta-banner-section h2 {
  margin: 0;
}

/* ----- Video CTA Section ----- */
.video-cta-section .video-play-button {
  display: inline-flex;
  width: 80px;
  height: 80px;
  background: #fff;
  color: var(--theme-color1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 30px;
}
.video-cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

/* ----- Footer Styles ----- */
.footer-widget-area h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: #222;
  margin-bottom: 25px;
}
.footer-widget-area p {
  font-size: 14px;
  color: #888;
  line-height: 1.8;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links li a {
  color: #888;
  font-size: 14px;
  transition: var(--transition-base);
}
.footer-links li a:hover {
  color: var(--theme-color1);
  padding-left: 5px;
}
.footer-contact li {
  margin-bottom: 12px;
  color: #888;
  font-size: 14px;
}
.footer-contact li i {
  color: var(--theme-color1);
  margin-right: 8px;
  width: 16px;
}
.footer-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--theme-color1);
  color: #fff;
  border-radius: 50%;
  margin: 0 4px;
  transition: var(--transition-base);
}
.footer-social a:hover {
  background: var(--theme-color2);
  transform: translateY(-3px);
}
.footer-post {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}
.footer-post img {
  width: 70px;
  height: 70px;
  border-radius: 5px;
  object-fit: cover;
  flex-shrink: 0;
}
.footer-post h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.footer-post h6 a {
  color: #333;
}
.footer-post span {
  color: #999;
  font-size: 12px;
}
.footer-copyright {
  background: var(--theme-color1);
  padding: 15px 0;
  text-align: center;
  color: #fff;
}
.footer-copyright p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}

/* ----- Card Polish ----- */
.service-item {
  transition: all 0.4s ease;
}
.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.1) !important;
}
.service-item h4 {
  font-weight: 700;
  margin-bottom: 10px;
}
.service-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--theme-color1);
  color: #fff;
  font-size: 28px;
  margin-bottom: 15px;
  transition: var(--transition-base);
}
.service-item:hover .service-icon {
  background: var(--theme-color2);
  transform: scale(1.08);
}

/* ----- Team Card Polish ----- */
.team-item {
  transition: all 0.4s ease;
}
.team-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.team-item img {
  transition: transform 0.5s ease;
}
.team-item:hover img {
  transform: scale(1.03);
}
.team-item .social-links a {
  margin: 0 5px;
  color: #888;
  transition: var(--transition-base);
}
.team-item .social-links a:hover {
  color: var(--theme-color1);
}

/* ----- Case Card Polish ----- */
.case-item {
  transition: all 0.4s ease;
}
.case-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.case-item img {
  transition: transform 0.6s ease;
}
.case-item:hover img {
  transform: scale(1.05);
}

/* ----- Blog Card Polish ----- */
.blog-item {
  transition: all 0.4s ease;
}
.blog-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.1) !important;
}
.blog-item img {
  transition: transform 0.5s ease;
}
.blog-item:hover img {
  transform: scale(1.03);
}

/* ----- Testimonial Polish ----- */
.testimonial-item {
  transition: all 0.4s ease;
}
.testimonial-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1) !important;
}

/* ----- Counter Polish ----- */
.counter-item .number {
  transition: all 0.3s ease;
}
.counter-item:hover .number {
  transform: scale(1.05);
}

/* ----- Fun Facts Counter Colors ----- */
.fun-facts-section .counter-item .icon i,
.fun-facts-section .counter-item .icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

/* ----- Utility Classes ----- */
.mr-5 { margin-right: 5px; }
.mr-10 { margin-right: 10px; }
.mr-30 { margin-right: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.pb-30 { padding-bottom: 30px; }
.font-weight-bold { font-weight: 700; }
.justify-content-end { justify-content: flex-end; }
.container-fluid {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.btn-sm {
  padding: 8px 20px;
  font-size: 12px;
}
.btn-lg {
  padding: 16px 48px;
  font-size: 16px;
}
.btn-round {
  border-radius: 30px;
}

/* ----- Hero Buttons ----- */
.hero-slider-area .btn-bordered.btn-theme-colored1 {
  background: transparent;
  color: #fff;
  border: 2px solid var(--theme-color2);
  padding: 15px 40px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
}
.hero-slider-area .btn-bordered.btn-theme-colored1:hover {
  background: var(--theme-color2);
  border-color: var(--theme-color2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,139,196,0.3);
}

/* ----- Section heading center ----- */
.section-title.text-center {
  text-align: center;
}
.section-title.text-center .separator-line {
  margin: 15px auto;
}

/* ----- Featured icon boxes ----- */
.features-icon-boxes .tm-icon-box {
  transition: all 0.4s ease;
}
.features-icon-boxes .tm-icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* ----- Quality Section ----- */
.quality-dental-section .row.no-gutters.align-items-stretch {
  display: flex;
  flex-wrap: wrap;
}

/* ----- Section heading text transform fixes ----- */
.about-us-section .section-subtitle,
.services-paroller-section .section-subtitle,
.recent-cases-section .section-subtitle,
.team-section .section-subtitle,
.testimonials-section .section-subtitle,
.news-section .section-subtitle {
  text-transform: uppercase;
}

/* ----- Grid-3 responsive fixes ----- */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ----- Footer responsive ----- */
@media (max-width: 768px) {
  .footer-widget-area .row [class*="col-"] {
    margin-bottom: 30px;
  }
  .footer-widget-area .row [class*="col-"]:last-child {
    margin-bottom: 0;
  }
  .video-cta-section h2 {
    font-size: 26px;
  }
}

/* === Responsive Grid & Utility Fixes === */
.list-unstyled {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* Display utilities */
@media (min-width: 768px) {
  .d-md-none { display: none !important; }
  .d-md-block { display: block !important; }
  .d-md-flex { display: flex !important; }
}
@media (min-width: 992px) {
  .d-lg-none { display: none !important; }
  .d-lg-block { display: block !important; }
  .d-lg-flex { display: flex !important; }
}
@media (min-width: 1200px) {
  .d-xl-block { display: block !important; }
}

/* Wide columns */
.col-1 { flex: 0 0 8.3333%; max-width: 8.3333%; padding: 0 15px; }
.col-5 { flex: 0 0 41.6667%; max-width: 41.6667%; padding: 0 15px; }
.col-7 { flex: 0 0 58.3333%; max-width: 58.3333%; padding: 0 15px; }
.col-8 { flex: 0 0 66.6667%; max-width: 66.6667%; padding: 0 15px; }
.col-9 { flex: 0 0 75%; max-width: 75%; padding: 0 15px; }
.col-10 { flex: 0 0 83.3333%; max-width: 83.3333%; padding: 0 15px; }

/* Responsive columns (matches Bootstrap classes used in HTML) */
@media (min-width: 576px) {
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; }
}
@media (min-width: 768px) {
  .col-md-1 { flex: 0 0 8.3333%; max-width: 8.3333%; padding: 0 15px; }
  .col-md-2 { flex: 0 0 16.6667%; max-width: 16.6667%; padding: 0 15px; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; padding: 0 15px; }
  .col-md-4 { flex: 0 0 33.3333%; max-width: 33.3333%; padding: 0 15px; }
  .col-md-5 { flex: 0 0 41.6667%; max-width: 41.6667%; padding: 0 15px; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; }
  .col-md-7 { flex: 0 0 58.3333%; max-width: 58.3333%; padding: 0 15px; }
  .col-md-8 { flex: 0 0 66.6667%; max-width: 66.6667%; padding: 0 15px; }
  .col-md-9 { flex: 0 0 75%; max-width: 75%; padding: 0 15px; }
  .col-md-10 { flex: 0 0 83.3333%; max-width: 83.3333%; padding: 0 15px; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
}
@media (min-width: 992px) {
  .col-lg-1 { flex: 0 0 8.3333%; max-width: 8.3333%; padding: 0 15px; }
  .col-lg-2 { flex: 0 0 16.6667%; max-width: 16.6667%; padding: 0 15px; }
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; padding: 0 15px; }
  .col-lg-4 { flex: 0 0 33.3333%; max-width: 33.3333%; padding: 0 15px; }
  .col-lg-5 { flex: 0 0 41.6667%; max-width: 41.6667%; padding: 0 15px; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; }
  .col-lg-7 { flex: 0 0 58.3333%; max-width: 58.3333%; padding: 0 15px; }
  .col-lg-8 { flex: 0 0 66.6667%; max-width: 66.6667%; padding: 0 15px; }
}
