/* Modern Design System for SWISS */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Roboto:wght@300;400;500&display=swap");

:root {
  --primary-color: #003366;
  --secondary-color: #00a859;
  --accent-color: #f8f9fa;
  --text-main: #333333;
  --text-muted: #666666;
  --white: #ffffff;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--text-main);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

/* Premium Header Overrides */
.main-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.main-header .navigation li a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--primary-color) !important;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.main-header .navigation li a:hover {
  color: var(--secondary-color) !important;
}

/* Premium Hero Section */
.main-slider {
  position: relative;
  overflow: hidden;
}

.main-slider .tp-caption h2 {
  font-size: 48px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* modern card styles */
.service-block-one .inner-box,
.service-block-two .inner-box {
  border: 1px solid #eee;
  padding: 40px 30px;
  background: #fff;
  border-radius: 12px;
  transition: var(--transition-smooth);
  height: 100%;
}

.service-block-one .inner-box:hover,
.service-block-two .inner-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary-color);
}

.icon-box span {
  color: var(--secondary-color) !important;
  font-size: 50px;
  margin-bottom: 20px;
  display: inline-block;
}

/* Premium Footer */
.modern-footer {
  background: #050a14 !important;
  padding-top: 80px;
}

.footer-bottom {
  background: #02060c !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Buttons */
.theme-btn.btn-style-one {
  background: var(--secondary-color);
  border-radius: 50px;
  padding: 15px 35px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  transition: var(--transition-smooth);
}

.theme-btn.btn-style-one:hover {
  background: var(--primary-color);
  transform: scale(1.05);
}

/* General Layout Utilities */
.sec-title h2 {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.sec-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
}
