/* ================================================
   DILSHAD ENTERPRISES - DESIGN ENHANCEMENT
   Industrial Precision Aesthetic
   Primary Brand Color: #b10f3c (preserved)
================================================ */

/* === TYPOGRAPHY IMPORTS === */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Outfit:wght@100..900&display=swap');

/* === ENHANCED CSS VARIABLES === */
:root {
  /* Primary colors - preserved */
  --skin-color: #b10f3c;
  --skin-color-light: rgba(177, 15, 60, 0.1);
  --skin-color-medium: rgba(177, 15, 60, 0.25);

  /* Enhanced neutrals */
  --dark-color: #0a0a0a;
  --dark-grey-color: #0d1b2a;
  --dark-blue: #1b263b;
  --body-fonts-color: #4a5568;
  --grey-color: #f7f8fa;
  --grey-medium: #e2e8f0;
  --white-color: #ffffff;
  --cream: #fafbfc;

  /* Typography */
  --display-fonts: 'Bebas Neue', Impact, sans-serif;
  --title-fonts: 'Outfit', system-ui, sans-serif;
  --body-fonts: 'DM Sans', system-ui, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 6px 10px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.12), 0 10px 20px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 40px rgba(177, 15, 60, 0.15);

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === BASE ENHANCEMENTS === */
html {
  scroll-behavior: smooth;
}

/* Preloader fallback - force hide after 2 seconds */
@keyframes forceHidePreloader {
  0% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; z-index: -1; }
}

#preloader {
  animation: forceHidePreloader 0.5s ease-in-out 2s forwards !important;
}

#preloader #status {
  animation: forceHidePreloader 0.5s ease-in-out 2s forwards !important;
}

/* Ensure page content is visible */
.page {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ================================================
   HEADER ENHANCEMENTS - ATTRACTIVE MODERN DESIGN
================================================ */

/* Top Bar - Sleek Dark Design */
.top_bar {
  padding: 0 !important;
  height: auto !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.top_bar.ttm-bgcolor-darkgrey {
  background: linear-gradient(135deg, #0a0f1a 0%, #1a1f2e 50%, #0d1b2a 100%) !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(177, 15, 60, 0.3);
  position: relative;
  z-index: 1000;
}

.top_bar.ttm-bgcolor-darkgrey::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--skin-color), transparent);
}

/* Top bar inner layout fix */
.top_bar .container {
  position: relative;
  z-index: 10;
}

.top_bar .d-flex.justify-content-between {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100%;
}

.ttm-header-style-02 .top_bar_contact_item {
  line-height: 1.5 !important;
  font-size: 13px !important;
  padding: 0 !important;
  margin-right: 20px !important;
}

.top_bar_contact_item_wrap {
  gap: 15px;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
}

.top_bar_contact_item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 0 !important;
  line-height: 1.5 !important;
  white-space: nowrap;
}

.top_bar_icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(177, 15, 60, 0.15) !important;
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease;
}

.top_bar_contact_item:hover .top_bar_icon {
  background: var(--skin-color) !important;
  transform: scale(1.1);
}

.top_bar_icon i {
  color: var(--skin-color) !important;
  font-size: 11px !important;
  top: 0 !important;
  line-height: 1 !important;
  transition: all 0.3s ease;
}

.top_bar_contact_item:hover .top_bar_icon i {
  color: #ffffff !important;
}

/* Responsive top bar for smaller desktops */
@media (min-width: 992px) and (max-width: 1399px) {
  .top_bar_contact_item_wrap {
    gap: 10px;
  }

  .ttm-header-style-02 .top_bar_contact_item {
    margin-right: 15px !important;
  }

  .top_bar_content,
  .top_bar_content a {
    font-size: 12px !important;
  }

  .top_bar_icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }

  .top_bar_icon i {
    font-size: 10px !important;
  }
}

.top_bar_content {
  display: inline-block !important;
  line-height: 1.5 !important;
}

.top_bar_content,
.top_bar_content a {
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: var(--body-fonts) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: var(--transition-base);
}

.top_bar_content a:hover {
  color: var(--skin-color) !important;
}

/* Top Bar Social */
.top_bar_social .social-icons {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.top_bar_social .social-icons li {
  display: inline-block !important;
  margin: 0 !important;
}

.top_bar_social .social-icons li a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px !important;
  line-height: 1 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top_bar_social .social-icons li a:hover {
  background: var(--skin-color) !important;
  border-color: var(--skin-color) !important;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(177, 15, 60, 0.4);
}

/* Show top bar on tablet and desktop */
@media all and (max-width: 1199px) {
  .top_bar {
    display: block !important;
    visibility: visible !important;
  }
}

/* Hide on mobile only */
@media (max-width: 575px) {
  .top_bar {
    display: none !important;
  }
}

/* ================================================
   MAIN NAVIGATION - Premium Design
================================================ */
.site-header-menu {
  position: relative;
}

/* Fix header - remove absolute positioning for clean layout */
@media (min-width: 1200px) {
  .ttm-header-style-02 .site-header-menu-inner .site-navigation-content {
    position: static !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .ttm-header-style-02 .site-header-menu {
    margin-bottom: 0 !important;
  }
}

/* Remove gap between header and slider */
.rs-p-wp-fix {
  display: none !important;
}

#masthead,
.header,
.ttm-header-style-02 {
  margin-bottom: 0 !important;
}

#rev_slider_2_1_wrapper,
rs-module-wrap {
  margin-top: 0 !important;
}

.site-header-menu-inner {
  background: var(--white-color) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  padding: 0 !important;
}

.site-header-menu-inner .container {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.site-header-menu-inner.is-sticky {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12) !important;
  padding: 0 !important;
}

/* Site Navigation - Compact */
#site-navigation,
.site-navigation {
  padding: 0 !important;
}

.site-navigation-content {
  padding: 0 !important;
}

/* Logo Enhancement */
.site-branding {
  padding: 8px 0;
  margin-right: 25px;
}

.site-branding img {
  max-height: 50px;
  transition: all 0.3s ease;
}

.site-branding:hover img {
  transform: scale(1.02);
}

/* Navigation Menu */
.main-menu .menu > li {
  margin: 0 2px;
}

.main-menu .menu > li > a {
  font-family: var(--body-fonts) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase;
  color: var(--dark-grey-color) !important;
  padding: 15px 14px !important;
  position: relative;
  transition: all 0.3s ease !important;
}

.main-menu .menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 30px;
  height: 2px;
  background: var(--skin-color);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-menu .menu > li:hover > a::after,
.main-menu .menu > li.active > a::after {
  transform: translateX(-50%) scaleX(1);
}

.main-menu .menu > li:hover > a,
.main-menu .menu > li.active > a {
  color: var(--skin-color) !important;
}

/* Services Dropdown - Enhanced */
.mega-submenu {
  background: var(--white-color) !important;
  border-radius: 12px !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
  border-top: 4px solid var(--skin-color) !important;
  padding: 15px 0 !important;
  min-width: 250px !important;
  margin-top: 10px !important;
}

.mega-submenu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 30px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--skin-color);
}

.mega-submenu li {
  padding: 0 10px;
}

.mega-submenu li a {
  padding: 12px 20px !important;
  font-family: var(--body-fonts) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--dark-grey-color) !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  display: block !important;
}

.mega-submenu li a:hover,
.mega-submenu li.active a {
  background: linear-gradient(135deg, rgba(177, 15, 60, 0.08) 0%, rgba(177, 15, 60, 0.15) 100%) !important;
  color: var(--skin-color) !important;
  padding-left: 25px !important;
}

.mega-submenu li a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--skin-color);
  border-radius: 50%;
  margin-right: 12px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.mega-submenu li a:hover::before,
.mega-submenu li.active a::before {
  opacity: 1;
  transform: scale(1);
}

/* Header CTA Button - Premium Style */
.header_extra {
  padding-left: 20px;
}

.header_btn .ttm-btn {
  background: linear-gradient(135deg, var(--skin-color) 0%, #8e0c30 100%) !important;
  color: #ffffff !important;
  padding: 14px 28px !important;
  border-radius: 8px !important;
  font-family: var(--body-fonts) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 15px rgba(177, 15, 60, 0.35);
  position: relative;
  overflow: hidden;
}

.header_btn .ttm-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.header_btn .ttm-btn:hover::before {
  left: 100%;
}

.header_btn .ttm-btn:hover {
  background: linear-gradient(135deg, #8e0c30 0%, #6a0a24 100%) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(177, 15, 60, 0.45);
}

/* Mobile Menu Button */
.btn-show-menu-mobile {
  width: 45px;
  height: 45px;
  background: var(--grey-color);
  border-radius: 8px;
  display: none !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

@media (max-width: 1199px) {
  .btn-show-menu-mobile {
    display: flex !important;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    width: 45px;
    height: 45px;
  }
}

.btn-show-menu-mobile:hover {
  background: var(--skin-color);
}

.btn-show-menu-mobile:hover .menubar-inner,
.btn-show-menu-mobile:hover .menubar-inner::before,
.btn-show-menu-mobile:hover .menubar-inner::after {
  background: #ffffff !important;
}

/* Sticky Header Enhancement */
.ttm-stickable-header.is-sticky {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body {
  font-family: var(--body-fonts);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--body-fonts-color);
  background-color: var(--white-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY OVERHAUL === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-fonts);
  font-weight: 700;
  color: var(--dark-grey-color);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Display headings - Use Bebas Neue for impact */
.section-title h2.title,
.page-title-heading h2,
.ttm-fid-inner,
h1 {
  font-family: var(--display-fonts);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
}

.section-title h2.title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  position: relative;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.3;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.4;
}

h5 {
  font-size: 1.1rem;
  line-height: 1.5;
}

h6 {
  font-size: 0.95rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Section subtitles */
.section-title .title-header h3 {
  font-family: var(--body-fonts);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--skin-color);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.section-title .title-header h3::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--skin-color);
  display: inline-block;
}

/* Paragraphs */
p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--body-fonts-color);
}

/* === ENHANCED HEADER === */
.ttm-header-style-02 {
  position: relative;
  z-index: 100;
}

.top_bar.ttm-bgcolor-grey {
  background: linear-gradient(135deg, var(--dark-grey-color) 0%, var(--dark-blue) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top_bar .top_bar_contact_item {
  color: rgba(255,255,255,0.85);
}

.top_bar .top_bar_contact_item a {
  color: rgba(255,255,255,0.9);
  transition: var(--transition-fast);
}

.top_bar .top_bar_contact_item a:hover {
  color: var(--skin-color);
}

.top_bar .top_bar_icon {
  color: var(--skin-color);
}

/* Main Navigation */
#site-header-menu .site-navigation-content {
  background: var(--white-color);
  box-shadow: var(--shadow-lg);
  border-radius: 0;
  transition: var(--transition-base);
}

.site-branding img {
  transition: var(--transition-base);
}

.site-branding:hover img {
  transform: scale(1.02);
}

nav.main-menu ul.menu > li > a {
  font-family: var(--title-fonts);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--dark-grey-color);
  position: relative;
  transition: var(--transition-base);
}

nav.main-menu ul.menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 15px;
  right: 15px;
  height: 3px;
  background: var(--skin-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

nav.main-menu ul.menu > li:hover > a::after,
nav.main-menu ul.menu > li.active > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

nav.main-menu ul.menu > li:hover > a,
nav.main-menu ul.menu > li.active > a {
  color: var(--skin-color);
}

/* Fixed header enhancement */
.ttm-stickable-header.fixed-header {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

/* === PAGE HERO SECTIONS - COMMON STYLES === */
/* Ensure all hero sections have consistent styling across pages */
.about-hero,
.service-hero,
.contact-hero,
.portfolio-hero {
  margin-top: 0 !important;
}

/* Common hero badge styling */
.hero-badge {
  display: inline-block;
  background: rgba(177, 15, 60, 0.2);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 30px;
  font-family: var(--body-fonts);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(177, 15, 60, 0.4);
}

/* Common breadcrumb styling */
.breadcrumb-nav {
  font-family: var(--body-fonts);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: var(--skin-color);
}

.breadcrumb-nav a i {
  margin-right: 5px;
}

.breadcrumb-nav span {
  color: rgba(255, 255, 255, 0.6);
}

/* === PAGE TITLE / HERO SECTIONS === */
.ttm-page-title-row {
  background: linear-gradient(135deg, var(--dark-grey-color) 0%, var(--dark-blue) 100%);
  position: relative;
  overflow: hidden;
}

.ttm-page-title-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, rgba(177, 15, 60, 0.1) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.ttm-page-title-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
}

.ttm-page-title-row-inner {
  padding: 100px 0 80px;
  position: relative;
  z-index: 1;
}

.page-title-heading h2 {
  font-family: var(--display-fonts);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--white-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.breadcrumb-wrapper {
  font-family: var(--body-fonts);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.breadcrumb-wrapper span {
  color: rgba(255,255,255,0.7);
}

.breadcrumb-wrapper a {
  color: rgba(255,255,255,0.9);
  transition: var(--transition-fast);
}

.breadcrumb-wrapper a:hover {
  color: var(--skin-color);
}

/* === REVOLUTION SLIDER ENHANCEMENTS === */
.rs-module-wrap {
  position: relative;
}

.rs-module-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--white-color), transparent);
  pointer-events: none;
  z-index: 10;
}

/* === SECTION STYLING === */
.ttm-row {
  padding: 100px 0 !important;
  position: relative;
}

.ttm-bgcolor-grey {
  background: linear-gradient(180deg, var(--grey-color) 0%, var(--cream) 100%);
  position: relative;
}

.ttm-bgcolor-grey::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23b10f3c' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

.ttm-bgcolor-darkgrey {
  background: linear-gradient(135deg, var(--dark-grey-color) 0%, var(--dark-blue) 100%);
  position: relative;
}

.ttm-bgcolor-darkgrey::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(177, 15, 60, 0.15) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Section title styling */
.section-title {
  margin-bottom: 3rem;
}

.section-title.title-style-center_text {
  text-align: center;
}

.section-title.title-style-center_text .title-header h3::before,
.section-title.title-style-center_text .title-header h3::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--skin-color);
  display: inline-block;
}

.section-title .title-desc p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 600px;
  color: var(--body-fonts-color);
}

.section-title.title-style-center_text .title-desc p {
  margin: 0 auto;
}

/* === BUTTONS === */
.ttm-btn {
  font-family: var(--title-fonts);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
  z-index: 1;
}

.ttm-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-grey-color);
  transform: translateX(-101%);
  transition: transform var(--transition-base);
  z-index: -1;
}

.ttm-btn:hover::before {
  transform: translateX(0);
}

.ttm-btn-color-skincolor,
.ttm-bgcolor-skincolor {
  background: var(--skin-color);
  color: var(--white-color);
}

.ttm-btn-color-skincolor:hover,
.ttm-bgcolor-skincolor:hover {
  color: var(--white-color);
  box-shadow: var(--shadow-lg);
}

.ttm-btn-color-darkgrey {
  background: var(--dark-grey-color);
  color: var(--white-color);
}

.ttm-btn-color-darkgrey::before {
  background: var(--skin-color);
}

.ttm-btn-style-border {
  border: 2px solid var(--dark-grey-color);
  background: transparent;
  color: var(--dark-grey-color);
}

.ttm-btn-style-border:hover {
  border-color: var(--skin-color);
  color: var(--white-color);
}

.ttm-btn-style-border::before {
  background: var(--skin-color);
}

/* Inline buttons / links */
.btn-inline {
  font-family: var(--title-fonts);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark-grey-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-base);
  position: relative;
  padding-bottom: 2px;
}

.btn-inline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--skin-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.btn-inline:hover {
  color: var(--skin-color);
}

.btn-inline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-inline i {
  transition: transform var(--transition-base);
}

.btn-inline:hover i {
  transform: translateX(4px);
}

/* === FEATURED BOXES / SERVICE CARDS === */
.featured-icon-box {
  background: var(--white-color);
  padding: 2.5rem;
  transition: var(--transition-base);
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
}

.featured-icon-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.featured-icon-box .featured-icon {
  margin-bottom: 1.5rem;
}

.featured-icon-box .featured-icon i,
.featured-icon-box .ttm-icon i {
  font-size: 3rem;
  color: var(--skin-color);
  transition: var(--transition-base);
}

.featured-icon-box:hover .featured-icon i,
.featured-icon-box:hover .ttm-icon i {
  transform: scale(1.1);
}

.featured-icon-box .featured-title h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: var(--transition-base);
}

.featured-icon-box:hover .featured-title h3 {
  color: var(--skin-color);
}

.featured-icon-box .featured-desc p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Dark background featured boxes */
.ttm-bgcolor-darkgrey .featured-icon-box,
.ttm-bgcolor-skincolor .featured-icon-box {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.ttm-bgcolor-darkgrey .featured-icon-box:hover,
.ttm-bgcolor-skincolor .featured-icon-box:hover {
  background: rgba(255,255,255,0.1);
}

.ttm-bgcolor-darkgrey .featured-title h3,
.ttm-bgcolor-darkgrey .featured-desc p {
  color: var(--white-color);
}

.ttm-bgcolor-skincolor .featured-icon-box .ttm-icon i {
  color: var(--white-color);
}

/* Service cards with skin color bg */
.ttm-bgcolor-skincolor .featured-icon-box {
  background: rgba(0,0,0,0.1);
}

.ttm-bgcolor-skincolor .featured-icon-box:hover {
  background: rgba(0,0,0,0.2);
}

.ttm-bgcolor-skincolor .featured-title h3,
.ttm-bgcolor-skincolor .featured-desc p,
.ttm-bgcolor-skincolor .btn-inline {
  color: var(--white-color);
}

/* === IMAGE BOXES / PORTFOLIO === */
.featured-imagebox {
  position: relative;
  overflow: hidden;
  background: var(--white-color);
  transition: var(--transition-base);
}

.featured-imagebox:hover {
  box-shadow: var(--shadow-xl);
}

.featured-imagebox .featured-thumbnail {
  overflow: hidden;
  position: relative;
}

.featured-imagebox .featured-thumbnail::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: var(--transition-base);
}

.featured-imagebox:hover .featured-thumbnail::after {
  opacity: 1;
}

.featured-imagebox .featured-thumbnail img {
  transition: transform var(--transition-slow);
}

.featured-imagebox:hover .featured-thumbnail img {
  transform: scale(1.08);
}

.featured-imagebox .featured-content {
  padding: 2rem;
}

.featured-imagebox .featured-title h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.featured-imagebox .featured-title h3 a {
  color: var(--dark-grey-color);
  transition: var(--transition-fast);
}

.featured-imagebox .featured-title h3 a:hover {
  color: var(--skin-color);
}

/* Blog posts */
.featured-imagebox-post .featured-content {
  padding: 2rem;
  position: relative;
}

.featured-imagebox-post .ttm-box-post-date {
  position: absolute;
  top: -30px;
  left: 2rem;
  background: var(--skin-color);
  color: var(--white-color);
  padding: 0.75rem 1.25rem;
  font-family: var(--display-fonts);
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: var(--shadow-md);
}

.featured-imagebox-post .ttm-box-post-date .entry-month {
  font-family: var(--body-fonts);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 4px;
}

.featured-imagebox-post .post-meta {
  font-size: 0.85rem;
  color: var(--body-fonts-color);
  margin-bottom: 1rem;
  display: flex;
  gap: 1.5rem;
}

.featured-imagebox-post .post-meta i {
  color: var(--skin-color);
  margin-right: 0.5rem;
}

/* Team / Equipment cards */
.featured-imagebox-team {
  text-align: center;
}

.featured-imagebox-team .featured-thumbnail {
  position: relative;
}

.featured-imagebox-team .featured-content {
  padding: 1.5rem;
  background: var(--white-color);
}

.featured-imagebox-team .featured-title h5 a {
  color: var(--dark-grey-color);
  font-weight: 700;
}

.featured-imagebox-team .team-position {
  color: var(--skin-color);
  font-size: 0.9rem;
  font-weight: 500;
}

/* === FACT/COUNTER BOXES === */
.ttm-fid {
  text-align: center;
  padding: 2rem;
}

.ttm-fid-icon-wrapper {
  margin-bottom: 1.5rem;
}

.ttm-fid-icon-wrapper i {
  font-size: 3rem;
  color: var(--skin-color);
}

.ttm-fid-inner {
  font-family: var(--display-fonts);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--dark-grey-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ttm-fid-title {
  font-family: var(--title-fonts);
  font-size: 1rem;
  font-weight: 600;
  color: var(--body-fonts-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ttm-bgcolor-darkgrey .ttm-fid-inner,
.ttm-bgcolor-darkgrey .ttm-fid-title {
  color: var(--white-color);
}

.ttm-bgcolor-darkgrey .ttm-fid-icon-wrapper i {
  color: var(--skin-color);
}

/* === TABS === */
.ttm-tabs ul.tabs {
  display: flex;
  gap: 0.5rem;
  border: none;
  margin-bottom: 2rem;
}

.ttm-tabs ul.tabs li {
  list-style: none;
}

.ttm-tabs ul.tabs li a {
  font-family: var(--title-fonts);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  background: var(--grey-color);
  color: var(--dark-grey-color);
  display: block;
  transition: var(--transition-base);
  border: none;
}

.ttm-tabs ul.tabs li.active a,
.ttm-tabs ul.tabs li:hover a {
  background: var(--skin-color);
  color: var(--white-color);
}

.ttm-tabs .content-tab {
  padding: 1.5rem 0;
}

.ttm-tabs .ttm-tabs-desc p {
  font-size: 1rem;
  line-height: 1.8;
}

/* === FOOTER === */
.footer {
  position: relative;
}

.second-footer {
  background: linear-gradient(135deg, var(--dark-grey-color) 0%, var(--dark-blue) 100%);
  position: relative;
}

.second-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(177, 15, 60, 0.2) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.second-footer .widget-title,
.second-footer h2,
.second-footer h3 {
  font-family: var(--title-fonts);
  color: var(--white-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.second-footer .widget_contact_wrapper li {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.second-footer .widget_contact_wrapper li span {
  display: block;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 0.25rem;
}

.second-footer .widget_contact_wrapper li i {
  color: var(--skin-color);
  margin-right: 0.75rem;
}

.second-footer a {
  color: rgba(255,255,255,0.8);
  transition: var(--transition-fast);
}

.second-footer a:hover {
  color: var(--skin-color);
}

/* Copyright */
.copyright {
  background: rgba(0,0,0,0.3);
  padding: 1.5rem 0;
  text-align: center;
}

.copyright .cpy-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* === BACK TO TOP === */
#totop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--skin-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-base);
  box-shadow: var(--shadow-lg);
}

#totop.top-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#totop:hover {
  background: var(--dark-grey-color);
  transform: translateY(-5px);
}

/* === PRELOADER === */
#preloader {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  background: var(--white-color) !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#status {
  position: relative !important;
  width: 60px !important;
  height: 60px !important;
  border: 3px solid var(--grey-medium) !important;
  border-top-color: var(--skin-color) !important;
  border-radius: 50% !important;
  background: transparent !important;
  background-image: none !important;
  animation: preloader-spin 0.8s linear infinite !important;
}

@keyframes preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ================================================
   HOMEPAGE ENHANCEMENTS
================================================ */

/* === REVOLUTION SLIDER OVERLAY === */
rs-module-wrap,
#rev_slider_2_1_wrapper {
  position: relative;
}

rs-module-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  pointer-events: none;
  z-index: 5;
}

/* === ABOUT SECTION ENHANCEMENT === */
.about-section-2 {
  padding: 100px 0 !important;
  background: linear-gradient(135deg, var(--grey-color) 0%, var(--cream) 100%) !important;
  position: relative;
  overflow: hidden;
}

.about-section-2::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--skin-color-light) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.about-section-2 .ttm_single_image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-section-2 .ttm_single_image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--skin-color);
  z-index: -1;
  border-radius: 8px;
}

.about-section-2 .ttm_single_image-wrapper img {
  border-radius: 12px;
  transition: var(--transition-slow);
}

.about-section-2 .ttm_single_image-wrapper:hover img {
  transform: scale(1.03);
}

.about-section-2 .section-title .title-header h3 {
  color: var(--skin-color) !important;
  font-family: var(--body-fonts) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
  position: relative !important;
  display: inline-block !important;
}

.about-section-2 .section-title .title-header h3::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--skin-color);
}

.about-section-2 .section-title h2.title {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  color: var(--dark-grey-color) !important;
  margin-bottom: 20px !important;
}

.about-section-2 .title-desc p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--body-fonts-color);
}

/* Enhanced Tabs */
.ttm-tab-style-05 .tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 25px !important;
  border-bottom: 2px solid var(--grey-medium);
  padding-bottom: 0;
}

.ttm-tab-style-05 .tabs li {
  list-style: none;
}

.ttm-tab-style-05 .tabs li a {
  display: block;
  padding: 12px 24px;
  font-family: var(--body-fonts);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark-grey-color) !important;
  background: transparent !important;
  border: 1px solid var(--grey-medium);
  position: relative;
  transition: var(--transition-base);
}

.ttm-tab-style-05 .tabs li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--skin-color);
  transition: var(--transition-base);
}

.ttm-tab-style-05 .tabs li.active a,
.ttm-tab-style-05 .tabs li a:hover {
  color: var(--white-color) !important;
  background: var(--skin-color) !important;
  border-color: var(--skin-color);
}

.ttm-tab-style-05 .tabs li.active a::after {
  width: 100%;
}

.ttm-tab-style-05 .content-tab .content-inner {
  animation: fadeInUp 0.4s ease;
}

.ttm-tab-style-05 .ttm-tabs-desc p,
.ttm-tab-style-05 .content-tab p,
.ttm-tab-style-05 .content-inner p,
.content-tab .ttm-tabs-desc p {
  font-size: 16px !important;
  line-height: 1.8 !important;
  color: var(--body-fonts-color) !important;
}

/* Fix tab content text color */
.ttm-tabs .content-tab,
.ttm-tabs .content-inner,
.ttm-tabs .ttm-tabs-desc,
.ttm-tabs .content-inner.active,
.ttm-tabs .content-inner.active p,
.ttm-tabs .content-inner.active .ttm-tabs-desc,
.ttm-tabs .content-inner.active .ttm-tabs-desc p,
.about-section-2 .content-tab p,
.about-section-2 .content-inner p,
.about-section-2 .ttm-tabs-desc p {
  color: var(--body-fonts-color) !important;
}

/* Ensure only tab links are red, not content */
.ttm-tab-style-05 .content-tab * {
  color: var(--body-fonts-color);
}

.ttm-tab-style-05 .content-tab a {
  color: var(--skin-color);
}

/* === SERVICES SECTION ENHANCEMENT === */
.service-section-3 {
  padding: 100px 0 !important;
  background: var(--grey-color) !important;
  position: relative;
}

.service-section-3 .section-title {
  margin-bottom: 50px;
}

.service-section-3 .section-title .title-header h3 {
  color: var(--skin-color) !important;
  font-family: var(--body-fonts) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
}

.service-section-3 .section-title h2.title {
  font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
}

/* Service Cards Enhancement */
.featured-icon-box.style13,
.featured-icon-box.style14 {
  padding: 35px 30px !important;
  height: 100%;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.featured-icon-box.style13::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--skin-color);
  transition: var(--transition-base);
}

.featured-icon-box.style13:hover::before {
  height: 100%;
}

.ttm-bgcolor-white .featured-icon-box.style13:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.featured-icon-box .featured-icon {
  margin-bottom: 20px;
}

.featured-icon-box .featured-icon i {
  font-size: 48px !important;
  color: var(--skin-color) !important;
  transition: var(--transition-base);
}

.featured-icon-box:hover .featured-icon i {
  transform: scale(1.1);
}

.featured-icon-box .featured-title h3 {
  font-family: var(--title-fonts) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
  letter-spacing: -0.01em !important;
}

.featured-icon-box .featured-desc p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.featured-icon-box .ttm-btn.btn-inline {
  font-family: var(--body-fonts);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--skin-color);
  transition: var(--transition-base);
}

.featured-icon-box .ttm-btn.btn-inline:hover {
  letter-spacing: 0.15em;
}

/* Service Section Image */
.col-bg-img-eleven {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.col-bg-img-eleven::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(177, 15, 60, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Dark Background Text Styles */
.ttm-bgcolor-darkgrey .featured-title h3,
.ttm-bgcolor-darkgrey .featured-desc p,
.ttm-bgcolor-darkgrey .ttm-btn {
  color: var(--white-color) !important;
}

.ttm-bgcolor-skincolor .featured-title h3,
.ttm-bgcolor-skincolor .featured-desc p {
  color: var(--white-color) !important;
}

.ttm-bgcolor-skincolor .featured-icon i {
  color: var(--white-color) !important;
}

.text-style1 {
  padding: 30px !important;
  font-family: var(--display-fonts) !important;
  font-size: 28px !important;
  color: var(--white-color) !important;
  letter-spacing: 0.05em;
}

/* === EQUIPMENT SECTION ENHANCEMENT === */
.team-member-section {
  padding: 100px 0 !important;
  position: relative;
  overflow: hidden;
}

.team-member-section .section-title .title-header h3 {
  color: var(--skin-color) !important;
  font-family: var(--body-fonts) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
}

.team-member-section .section-title h2.title {
  color: var(--white-color) !important;
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
}

.team-member-section .title-desc p {
  color: rgba(255,255,255,0.8) !important;
  font-size: 16px;
  line-height: 1.8;
}

/* Equipment Cards */
.featured-imagebox-team.style2 {
  background: var(--white-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
  margin: 10px;
}

.featured-imagebox-team.style2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.featured-imagebox-team.style2 .featured-thumbnail {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.featured-imagebox-team.style2 .featured-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.featured-imagebox-team.style2:hover .featured-thumbnail img {
  transform: scale(1.08);
}

.featured-imagebox-team.style2 .featured-content {
  padding: 20px 24px;
  text-align: center;
}

.featured-imagebox-team.style2 .featured-title h5 {
  font-family: var(--title-fonts) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 5px !important;
  color: var(--dark-grey-color) !important;
}

.featured-imagebox-team.style2 .featured-title h5 a {
  color: inherit !important;
  transition: var(--transition-base);
}

.featured-imagebox-team.style2 .featured-title h5 a:hover {
  color: var(--skin-color) !important;
}

.featured-imagebox-team.style2 .team-position {
  font-family: var(--body-fonts);
  font-size: 14px;
  color: var(--body-fonts-color);
  margin: 0;
}

/* Hide social icons overlay */
.featured-imagebox-team .featured-iconbox {
  display: none !important;
}

/* Equipment Section Button */
.team-member-section .ttm-btn-color-skincolor {
  background: var(--skin-color) !important;
  color: var(--white-color) !important;
  padding: 14px 32px !important;
  border-radius: 6px !important;
  font-family: var(--body-fonts) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  transition: var(--transition-base) !important;
  box-shadow: 0 4px 15px rgba(177, 15, 60, 0.3) !important;
}

.team-member-section .ttm-btn-color-skincolor:hover {
  background: #8e0c30 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(177, 15, 60, 0.4) !important;
}

/* === STATS COUNTER SECTION === */
.ttm-fid.inside {
  text-align: center;
  padding: 30px 20px;
}

.ttm-fid .ttm-fid-inner {
  font-family: var(--display-fonts) !important;
  font-size: 60px !important;
  line-height: 1 !important;
  color: var(--skin-color) !important;
  margin-bottom: 10px;
}

.ttm-fid .ttm-fid-title {
  font-family: var(--body-fonts) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: var(--body-fonts-color) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
}

/* === CLIENT LOGOS SECTION === */
.client-section-2 {
  padding: 60px 0 !important;
  background: var(--white-color);
  border-top: 1px solid var(--grey-medium);
  border-bottom: 1px solid var(--grey-medium);
}

.client-box {
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.client-box img {
  filter: grayscale(100%);
  opacity: 0.5;
  max-width: 140px;
  transition: var(--transition-base);
}

.client-box:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply animations to sections */
.section-title {
  animation: fadeInUp 0.8s ease-out;
}

.featured-icon-box,
.featured-imagebox {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.row > [class*='col-']:nth-child(1) .featured-icon-box,
.row > [class*='col-']:nth-child(1) .featured-imagebox { animation-delay: 0.1s; }
.row > [class*='col-']:nth-child(2) .featured-icon-box,
.row > [class*='col-']:nth-child(2) .featured-imagebox { animation-delay: 0.2s; }
.row > [class*='col-']:nth-child(3) .featured-icon-box,
.row > [class*='col-']:nth-child(3) .featured-imagebox { animation-delay: 0.3s; }
.row > [class*='col-']:nth-child(4) .featured-icon-box,
.row > [class*='col-']:nth-child(4) .featured-imagebox { animation-delay: 0.4s; }

/* === FORM ENHANCEMENTS === */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  font-family: var(--body-fonts);
  font-size: 1rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--grey-medium);
  background: var(--white-color);
  transition: var(--transition-base);
  border-radius: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border-color: var(--skin-color);
  box-shadow: 0 0 0 4px var(--skin-color-light);
  outline: none;
}

button[type="submit"],
input[type="submit"] {
  font-family: var(--title-fonts);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: var(--skin-color);
  color: var(--white-color);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

button[type="submit"]:hover,
input[type="submit"]:hover {
  background: var(--dark-grey-color);
  box-shadow: var(--shadow-lg);
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 991px) {
  .ttm-row {
    padding: 60px 0 !important;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .section-title h2.title {
    font-size: 2.25rem;
  }

  .ttm-page-title-row-inner {
    padding: 60px 0 50px;
  }

  .page-title-heading h2 {
    font-size: 2.5rem;
  }

  /* Homepage responsive */
  .about-section-2 {
    padding: 70px 0 !important;
  }

  .about-section-2 .section-title .title-header h3::before {
    display: none;
  }

  .ttm-tab-style-05 .tabs {
    flex-wrap: wrap;
  }

  .ttm-tab-style-05 .tabs li a {
    padding: 10px 18px;
    font-size: 13px;
  }

  .team-member-section {
    padding: 70px 0 !important;
  }

  .featured-imagebox-team.style2 {
    margin: 8px;
  }

  .featured-imagebox-team.style2 .featured-thumbnail {
    height: 180px;
  }
}

@media (max-width: 767px) {
  .ttm-row {
    padding: 50px 0 !important;
  }

  .section-title .title-header h3::before {
    width: 25px;
  }

  .section-title h2.title {
    font-size: 1.875rem;
  }

  .featured-icon-box {
    padding: 1.5rem;
  }

  .ttm-tabs ul.tabs {
    flex-direction: column;
  }

  .ttm-tabs ul.tabs li a {
    text-align: center;
  }

  /* Homepage mobile */
  .about-section-2::before {
    display: none;
  }

  .about-section-2 .ttm_single_image-wrapper::before {
    display: none;
  }

  .service-section-3 {
    padding: 60px 0 !important;
  }

  .featured-icon-box.style13,
  .featured-icon-box.style14 {
    padding: 25px 20px !important;
  }

  .text-style1 {
    padding: 20px !important;
    font-size: 22px !important;
  }

  .client-section-2 {
    padding: 40px 0 !important;
  }

  .client-box {
    padding: 1rem 1.5rem;
  }

  .client-box img {
    max-width: 100px;
  }
}

@media (max-width: 575px) {
  .page-title-heading h2 {
    font-size: 2rem;
  }

  .ttm-fid-inner {
    font-size: 2.5rem;
  }

  #totop {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

/* === UTILITY OVERRIDES === */
.ttm-textcolor-skincolor {
  color: var(--skin-color) !important;
}

.ttm-textcolor-white {
  color: var(--white-color) !important;
}

.ttm-textcolor-darkgrey {
  color: var(--dark-grey-color) !important;
}

/* Hide template promo elements */
.prt_floting_customsett,
.ttm_floting_customsett {
  display: none !important;
}

/* ================================================
   MODERN FOOTER STYLES
================================================ */

.footer-modern {
  position: relative;
}

/* === FOOTER CTA SECTION === */
.footer-cta {
  position: relative;
  padding: 35px 0;
  background: linear-gradient(135deg, #b10f3c 0%, #8a0c2f 100%);
  overflow: hidden;
}

.footer-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(0,0,0,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.footer-cta-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.footer-cta-content {
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-family: var(--display-fonts);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.cta-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--title-fonts);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.7rem 1.25rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-btn.primary {
  background: #ffffff;
  color: #b10f3c;
}

.cta-btn.primary:hover {
  background: #0d1b2a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn.primary i {
  transition: transform 0.3s ease;
}

.cta-btn.primary:hover i {
  transform: translateX(4px);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

/* === MAIN FOOTER === */
.footer-main {
  position: relative;
  background: linear-gradient(180deg, #0d1b2a 0%, #071230 100%);
  padding: 50px 0 25px;
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(177, 15, 60, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 100% 100%, rgba(177, 15, 60, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.footer-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.footer-main .container {
  position: relative;
  z-index: 1;
}

/* Footer Widget */
.footer-widget {
  margin-bottom: 1.25rem;
}

.footer-about {
  padding-right: 1.5rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img,
.footer-logo-img {
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer-logo a:hover img,
.footer-logo a:hover .footer-logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255,255,255,0.3));
}

/* Footer Brand Text Logo */
.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 0;
}

.footer-brand .brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 48px;
  background: var(--skin-color);
  color: #ffffff;
  font-family: var(--title-fonts);
  font-size: 30px;
  font-weight: 700;
  border-radius: 0 50% 50% 0;
  margin-right: 1px;
}

.footer-brand .brand-text {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--title-fonts);
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1;
}

.footer-brand .brand-sub {
  display: block;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.38em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

.footer-brand:hover {
  text-decoration: none;
}

.footer-brand:hover .brand-text {
  color: var(--skin-color);
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #b10f3c;
  border-color: #b10f3c;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Footer Widget Title */
.footer-widget-title {
  font-family: var(--title-fonts);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #b10f3c;
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 2px;
  background: #b10f3c;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 0.5rem;
}

.footer-links a:hover::before {
  width: 15px;
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.footer-contact li:last-child {
  margin-bottom: 0;
}

.footer-contact .contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(177, 15, 60, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact .contact-icon i {
  color: #b10f3c;
  font-size: 0.8rem;
}

.footer-contact .contact-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.footer-contact .contact-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.4;
}

.footer-contact .contact-text p a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.footer-contact .contact-text p a:hover {
  color: #b10f3c;
}

/* Footer Info Bar */
.footer-info-bar {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info-bar .info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
}

.footer-info-bar .info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-info-bar .info-value {
  font-family: var(--title-fonts);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

/* === BOTTOM FOOTER === */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.85rem 0;
}

.copyright-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #b10f3c;
}

/* === FOOTER RESPONSIVE === */
@media (max-width: 991px) {
  .footer-cta {
    padding: 30px 0;
  }

  .cta-text {
    text-align: center;
    margin-bottom: 1rem;
  }

  .cta-buttons {
    justify-content: center;
  }

  .footer-main {
    padding: 40px 0 20px;
  }

  .footer-about {
    padding-right: 0;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-widget-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-widget {
    text-align: center;
  }

  .footer-links a::before {
    display: none;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer-contact li {
    justify-content: center;
    text-align: left;
  }

  .footer-info-bar .info-item {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .footer-cta {
    padding: 25px 0;
  }

  .cta-text h2 {
    font-size: 1.25rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }

  .footer-main {
    padding: 35px 0 15px;
  }

  .footer-bottom .row {
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 0.75rem;
  }

  .copyright-text {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .footer-contact li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-info-bar .info-item {
    flex-direction: column;
    gap: 0.15rem;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ================================================
   FLOATING DOWNLOAD BUTTON
================================================ */
.floating-download-btn {
  position: fixed;
  bottom: 100px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--skin-color) 0%, #8e0c30 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  font-family: var(--body-fonts);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(177, 15, 60, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.floating-download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.floating-download-btn:hover::before {
  left: 100%;
}

.floating-download-btn:hover {
  background: linear-gradient(135deg, #8e0c30 0%, #6a0a24 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(177, 15, 60, 0.5);
  color: #ffffff;
}

.floating-download-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.floating-download-btn:hover i {
  transform: translateY(-2px);
  animation: bounce 0.5s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(-5px); }
}

.floating-download-btn span {
  white-space: nowrap;
}

/* Footer portfolio download link */
.portfolio-download-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.portfolio-download-link i {
  color: var(--skin-color);
}

/* Responsive adjustments for floating button */
@media (max-width: 767px) {
  .floating-download-btn {
    bottom: 80px;
    right: 15px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .floating-download-btn i {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .floating-download-btn span {
    display: none;
  }

  .floating-download-btn {
    padding: 14px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
  }

  .floating-download-btn i {
    font-size: 20px;
    margin: 0;
  }
}
