:root {
  --text: #d4d4d4;
  --text-h: #ffffff;
  --bg: transparent;
  --border: #333333;
  --code-bg: #2a2a2a;
  --accent: #c0a080;
  --accent-bg: rgba(192, 160, 128, 0.1);
  --accent-border: rgba(192, 160, 128, 0.5);
  --social-bg: rgba(255, 255, 255, 0.05);
  --shadow: rgba(0, 0, 0, 0.5) 0 10px 15px -3px, rgba(0, 0, 0, 0.3) 0 4px 6px -2px;

  --sans: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
  --heading: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, Consolas, monospace;

  font: 16px/1.6 var(--sans);
  letter-spacing: 0.5px;
  color-scheme: dark;
  color: var(--text);
  background: transparent !important;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: transparent !important;
}

#root {
  width: 100%;
  max-width: 100%;
  margin: 0;
  text-align: left;
  border-inline: none;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

h1,
h2 {
  font-family: var(--heading);
  font-weight: 500;
  color: var(--text-h);
}

h1 {
  font-size: 56px;
  letter-spacing: -1.68px;
  margin: 32px 0;
  @media (max-width: 1024px) {
    font-size: 36px;
    margin: 20px 0;
  }
}
h2 {
  font-size: 24px;
  line-height: 118%;
  letter-spacing: -0.24px;
  margin: 0 0 8px;
  @media (max-width: 1024px) {
    font-size: 20px;
  }
}
p {
  margin: 0;
}

code,
.counter {
  font-family: var(--mono);
  display: inline-flex;
  border-radius: 4px;
  color: var(--text-h);
}

code {
  font-size: 15px;
  line-height: 135%;
  padding: 4px 8px;
  background: var(--code-bg);
}

/* Social Bar Styles */
.vertical-social {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.vertical-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vertical-social li {
  margin: 0;
}

.vertical-social a {
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  transition: color 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  letter-spacing: 1px;
}

.vertical-social a:hover {
  color: #c0a080;
  transform: scale(1.05);
}

.vertical-social .social-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  display: block;
  white-space: nowrap;
}

.vertical-social i {
  font-size: 16px;
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-weight: 600;
  color: #888888;
  margin-top: 30px;
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
}
/* Navbar Styles */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
}

.octf-main-header {
  padding: 15px 0;
  background: transparent !important;
}

.octf-area-wrap {
  background: transparent !important;
}

.container-fluid {
  background: transparent !important;
}

.octf-mainbar-container {
  background: transparent !important;
}

.is-fixed {
  background: transparent !important;
}

.octf-mainbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.octf-row {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.octf-col {
  flex: 1;
}

.logo,
.mobile_logo {
  flex: 0 0 auto;
}

.logo-col {
  flex: 0 0 auto;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  min-height: 56px;
  text-decoration: none;
}

.brand-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.navbar-logo {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  display: block;
  background-image: var(--navbar-logo-url);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  transition: opacity 0.3s, transform 0.3s;
}

.brand-link:hover .navbar-logo {
  opacity: 0.78;
  transform: translateY(-1px);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
  min-width: 0;
}

.brand-name {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
}

.brand-discipline {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-col {
  flex: 1;
  margin-left: 28px;
}

.main-navigation .menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 35px;
  align-items: center;
}

.main-navigation a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.main-navigation a:hover {
  color: #c0a080;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c0a080;
  transition: width 0.3s;
}

.main-navigation a:hover::after {
  width: 100%;
}

.cta-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.octf-cta-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.octf-search,
.octf-cart,
.octf-menu-toggle {
  cursor: pointer;
}

.octf-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.menu-toggle {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  transition: color 0.3s, transform 0.3s;
}

.menu-toggle:hover {
  color: #c0a080;
  transform: scale(1.1);
}

.menu-toggle .nav-icon {
  width: auto;
  height: auto;
}

.nav-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  color: #ffffff;
  flex: 0 0 auto;
  box-sizing: border-box;
  transition: color 0.3s;
}

.search-icon::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-sizing: border-box;
}

.search-icon::after {
  content: '';
  position: absolute;
  top: 13px;
  left: 12px;
  width: 8px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: rotate(45deg);
  transform-origin: left center;
}

.cart-icon::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 2px;
  width: 16px;
  height: 10px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 2px 2px;
  box-sizing: border-box;
}

.cart-icon::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 5px;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 9px 0 0 currentColor;
}

.menu-icon {
  width: 22px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.menu-icon::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.octf-search .nav-icon,
.octf-cart .nav-icon {
  color: #ffffff;
}

.octf-search:hover .nav-icon,
.octf-cart:hover .nav-icon {
  color: #c0a080;
}

.octf-cart {
  position: relative;
}

.octf-cart .count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #c0a080;
  color: #1a1a1a;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.octf-btn-primary {
  background: #d1ad78;
  color: #1a1a1a;
  padding: 12px 30px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  display: inline-block;
  border: 2px solid #c0a080;
  cursor: pointer;
}

.octf-btn-primary:hover {
  background: transparent;
  color: #d1ad78;
}

/* Hero Section */
.hero-slider {
  position: relative;
  margin-top: 0px;
  overflow: hidden;
  min-height: 800px;
}
/* =========================================
   HERO SECTION
========================================= */

.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background: #000;
}

/* =========================================
   HERO GRID LINES
========================================= */

.grid-lines-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* =========================
   HORIZONTAL LINES
========================= */

.grid-horizontal {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.grid-horizontal .g-line-horizontal {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

/* Top line */
.grid-horizontal .g-line-horizontal:nth-child(1) {
  top: 14%;
}

/* Center line */
.grid-horizontal .g-line-horizontal:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

/* Bottom line */
.grid-horizontal .g-line-horizontal:nth-child(3) {
  bottom: 8%;
}

/* =========================
   VERTICAL LINES
========================= */

.grid-vertical {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.grid-vertical .g-line-vertical {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.32);
}

/* Left vertical line */
.grid-vertical .g-line-vertical:nth-child(1) {
  left: 22%;
}

/* Center vertical line */
.grid-vertical .g-line-vertical:nth-child(2) {
  left: 50%;
  transform: translateX(-50%);
}

/* Right vertical line */
.grid-vertical .g-line-vertical:nth-child(3) {
  right: 8%;
}

/* =========================================
   SWIPER
========================================= */

.hero-swiper {
  width: 100%;
  height: 100%;
}

/* =========================================
   SLIDE BACKGROUND
========================================= */

.slide-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark Overlay */
.slide-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* =========================================
   CONTENT WRAPPER
========================================= */

.slide-content-wrapper {
  position: relative;
  z-index: 5;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 40px;
}

/* =========================================
   CONTENT
========================================= */

.slide-content {
  position: relative;
  z-index: 5;

  max-width: 750px;
  text-align: center;
  color: #ffffff;
}

/* Large Background Word */
.slide-title {
  font-size: 110px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 8px;

  margin: 0 0 10px;

  color: rgba(255, 255, 255, 0.18);

  text-transform: uppercase;
}

/* Main Heading */
.slide-subtitle {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;

  margin: 0 0 30px;

  color: #ffffff;
}

/* Description */
.slide-description {
  max-width: 600px;

  margin: 0 auto 35px;

  font-size: 15px;
  line-height: 1.9;

  color: rgba(255, 255, 255, 0.82);
}

/* =========================================
   HERO NAVIGATION BUTTONS
========================================= */

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  position: absolute;
  bottom: 45px;
  top: auto !important;

  width: 58px;
  height: 58px;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);

  background: rgba(0, 0, 0, 0.45);

  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  transition: all 0.35s ease;

  z-index: 20;

  backdrop-filter: blur(6px);
}

/* Hover */
.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  background: #c0a080;
  border-color: #c0a080;
  transform: translateY(-4px);
}

/* Previous Button */
.hero-slider .swiper-button-prev {
  left: auto !important;
  right: 120px !important;
}

/* Next Button */
.hero-slider .swiper-button-next {
  left: auto !important;
  right: 45px !important;
}

/* Swiper Arrow Icons */
.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
}

/* =========================================
   PAGINATION
========================================= */

.hero-slider .swiper-pagination {
  bottom: 35px !important;
  left: 50% !important;
  transform: translateX(-50%);
}

.hero-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;

  background: rgba(255, 255, 255, 0.5);

  opacity: 1;

  transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  background: #c0a080;
  transform: scale(1.2);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
  .slide-title {
    font-size: 70px;
  }

  .slide-subtitle {
    font-size: 42px;
  }

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

  .grid-vertical .g-line-vertical:nth-child(1) {
    left: 12%;
  }

  .grid-vertical .g-line-vertical:nth-child(3) {
    right: 12%;
  }
}

@media (max-width: 767px) {
  .slide-content {
    padding: 0 20px;
  }

  .slide-title {
    font-size: 46px;
    letter-spacing: 4px;
  }

  .slide-subtitle {
    font-size: 30px;
  }

  .slide-description {
    font-size: 13px;
    line-height: 1.7;
  }

  .hero-slider .swiper-button-prev {
    right: 90px !important;
  }

  .hero-slider .swiper-button-next {
    right: 20px !important;
  }

  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    width: 48px;
    height: 48px;
  }

  .grid-horizontal .g-line-horizontal:nth-child(1) {
    top: 12%;
  }

  .grid-horizontal .g-line-horizontal:nth-child(3) {
    bottom: 10%;
  }
}
/* Social Bar Styles */
.vertical-social {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.vertical-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vertical-social li {
  margin: 0;
}

.vertical-social a {
  color: #ffffff;
  font-size: 14px;
  transition: color 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vertical-social a:hover {
  color: #c0a080;
  transform: scale(1.1);
}

.vertical-social i {
  font-size: 16px;
}

.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-weight: 600;
  color: #888888;
  margin-top: 30px;
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
}

/* Grid Lines */
.grid-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.grid-lines-vertical {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  justify-content: space-around;
}

.g-line-vertical {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
}

/* Carousel Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(192, 160, 128, 0.3);
  color: #c0a080;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #c0a080;
  opacity: 1;
}

/* Banner Description */
.banner-desc-1 {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 100;
}

.banner-desc-1 h1 {
  font-size: 120px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.05);
  margin: 0;
  line-height: 1;
  letter-spacing: 5px;
}

/* Mobile Menu */
.header_mobile {
  display: none;
}

.octf-menu-mobile {
  display: flex;
  align-items: center;
}

.mmenu-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  cursor: pointer;
}

.mmenu-toggle .nav-icon {
  color: #ffffff;
}

.mmenu-toggle:hover .nav-icon {
  color: #c0a080;
}

.site-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.site-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mmenu-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  width: min(82vw, 320px);
  height: 100vh;
  padding: 86px 28px 32px;
  background: #111111;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.3s;
}

.mmenu-wrapper.open {
  transform: translateX(0);
}

.mobile-nav .menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
/* "Titillium Web", sans-serif */
.mobile-nav .menu-item a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family:Titillium Web, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-nav .menu-item a:hover {
  color: #c0a080;
}

@media (max-width: 1180px) {
  .main-navigation .menu {
    gap: 22px;
  }

  .menu-col {
    margin-left: 18px;
  }

  .brand-discipline {
    display: none;
  }
}

@media (max-width: 960px) {
  .octf-btn-cta {
    display: none;
  }

  .main-navigation .menu {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .octf-main-header {
    display: none;
  }

  .header_mobile {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(20, 20, 20, 0.95);
    padding: 10px 16px;
    min-height: 66px;
  }

  .header_mobile .octf-row {
    gap: 12px;
    justify-content: space-between;
  }

  .header_mobile .octf-col:first-child {
    flex: 1 1 auto;
    min-width: 0;
  }

  .header_mobile .octf-col.justify-content-end {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
  }

  .header_mobile .octf-menu-mobile {
    position: absolute;
    top: 50%;
    right: auto;
    left: min(338px, calc(100vw - 52px));
    z-index: 1002;
    transform: translateY(-50%);
  }

  .header_mobile .octf-search,
  .header_mobile .octf-cart {
    display: none;
  }

  .mobile_logo .brand-link {
    gap: 10px;
    min-height: 46px;
    padding-right: 52px;
  }

  .mobile_logo .navbar-logo {
    width: 48px;
    height: 48px;
  }

  .mobile_logo .brand-name {
    font-size: 16px;
  }

  .mobile_logo .brand-discipline {
    display: block;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .main-navigation {
    display: none;
  }

  .menu-col {
    display: none;
  }

  .hero-slider {
    margin-top: 0px;
  }

  .slide-bg {
    height: 400px;
  }

  .slide-subtitle,
  .slide-title {
    font-size: 28px;
  }

  .vertical-social {
    left: 10px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .header_mobile .octf-menu-mobile {
    left: min(338px, calc(100vw - 52px));
  }

  .mobile_logo .brand-link {
    gap: 8px;
  }

  .mobile_logo .navbar-logo {
    width: 42px;
    height: 42px;
  }

  .mobile_logo .brand-discipline {
    display: none;
  }
}

/* ==================== SECTION STYLES ==================== */

/* Section Title Common Styles */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.section-title p {
  font-size: 16px;
  color: #888888;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: #1a1a1a;
}

.services-section .service-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(192, 160, 128, 0.2);
  padding: 50px 30px;
  border-radius: 5px;
  text-align: center;
  transition: all 0.3s;
  margin-bottom: 30px;
}

.services-section .service-box:hover {
  background: rgba(192, 160, 128, 0.05);
  border-color: #c0a080;
  transform: translateY(-5px);
}

.services-section .service-box .icon {
  font-size: 60px;
  color: #c0a080;
  margin-bottom: 20px;
}

.services-section .service-box h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #ffffff;
}

.services-section .service-box p {
  font-size: 14px;
  color: #888888;
  line-height: 1.8;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: #1a1a1a;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.about-content p {
  font-size: 15px;
  color: #888888;
  line-height: 2;
  margin-bottom: 20px;
}

.about-img img {
  width: 100%;
  border-radius: 5px;
}

/* Portfolio Section */
.portfolio-section {
  padding: 100px 0;
  background: #0a0a0a;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 1;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-content {
  text-align: center;
  color: #ffffff;
}

.portfolio-overlay-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.portfolio-overlay-content p {
  font-size: 13px;
  color: #c0a080;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background: #1a1a1a;
}

.team-swiper {
  max-width: 1200px;
  margin: 50px auto 0;
}

.team-member {
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s;
}

.team-member:hover {
  background: rgba(192, 160, 128, 0.05);
}

.team-member img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.team-member-info {
  padding: 30px 20px;
}

.team-member h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #ffffff;
}

.team-member p {
  font-size: 14px;
  color: #c0a080;
}

/* Blog Section */
.blog-section {
  padding: 100px 0;
  background: #0a0a0a;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card:hover {
  background: rgba(192, 160, 128, 0.05);
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-card-content {
  padding: 30px;
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.5;
}

.blog-card p {
  font-size: 14px;
  color: #888888;
  margin-bottom: 20px;
  line-height: 1.8;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #666666;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
}

/* Testimonial/Story Section */
.testimonial-section,
.story-section {
  padding: 100px 0;
  background: #1a1a1a;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.story-text p {
  font-size: 15px;
  color: #888888;
  line-height: 2;
  margin-bottom: 20px;
}

.story-author img {
  width: 100%;
  border-radius: 46%;
}

.quote-section {
  text-align: center;
  padding: 80px 40px;
}

.quote-section blockquote {
  font-size: 24px;
  font-style: italic;
  color: #ffffff;
  margin: 0 0 30px;
  line-height: 1.8;
}

.quote-section .stars {
  margin-bottom: 20px;
  color: #c0a080;
  font-size: 16px;
}

.quote-section .author {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

/* Stats Section */
.stats-section {
  padding: 100px 0;
  background: rgba(192, 160, 128, 0.05);
  border-top: 1px solid rgba(192, 160, 128, 0.2);
  border-bottom: 1px solid rgba(192, 160, 128, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item .number {
  font-size: 48px;
  font-weight: 600;
  color: #c0a080;
  margin-bottom: 10px;
}

.stat-item .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888888;
}

/* Clients Section */
.clients-section {
  padding: 30px 0;
  background: #F4F4F4;
  max-height: 400px !important;
}

.clients-swiper {
  max-width: 1200px;
  margin: 0 auto;

}

.client-logo {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding-top: 50px !important;
}

.client-logo img {
  max-width: 80%;
  max-height: 40px;
  opacity: 20;
  transition: opacity 0.3s;
}

.client-logo img:hover {
  opacity: 1;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(192, 160, 128, 0.1) 0%, rgba(192, 160, 128, 0.05) 100%);
  text-align: center;
  border-top: 1px solid rgba(192, 160, 128, 0.2);
}

.cta-section h2 {
  font-size: 42px;
  margin-bottom: 30px;
}

/* Hero Slider Styles */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 600px;
  margin-top: 0px;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.slide-bg {
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.slide-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  color: white;
}

.slide-title {
  font-size: 64px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  text-transform: capitalize;
}

.slide-subtitle {
  font-size: 32px;
  font-weight: 500;
  margin: 0;
  color: #c0a080;
  text-transform: capitalize;
}

.slide-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.octf-btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #d1ad78;
  color: #000000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid #c0a080;
  cursor: pointer;
  width: fit-content;
}

.octf-btn-primary:hover {
  background: transparent;
  color: #d1ad78;
}

.btn-large {
  padding: 15px 40px;
  font-size: 16px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: #c0a080;
  background: rgba(192, 160, 128, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(192, 160, 128, 0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background: #c0a080;
}

/* Grid lines */
.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.grid-lines-vertical {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.g-line-vertical {
  flex: 1;
  border-right: 1px solid rgba(192, 160, 128, 0.1);
}

.color-line-default {
  border-color: rgba(192, 160, 128, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider {
    min-height: 400px;
    margin-top: 60px;
  }

  .swiper-slide,
  .slide-bg {
    min-height: 400px;
  }

  .slide-title {
    font-size: 42px;
  }

  .slide-subtitle {
    font-size: 24px;
  }

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

  .container {
    padding: 0 20px;
  }

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  top: auto;          /* remove default vertical center */
  bottom: 20px;       /* distance from bottom */
}

/* Next button */
.swiper-button-next {
  right: 20px;
}

/* Previous button */
.swiper-button-prev {
  right: 70px;        /* place left of next button */
  left: auto;         /* remove default left positioning */
}
}

.cta-section p {
  font-size: 16px;
  color: #888888;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer Section */
.footer-section {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 14px;
  color: #888888;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #c0a080;
}

.footer-col .contact-info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-col .contact-info i {
  color: #c0a080;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-col p {
  font-size: 14px;
  color: #888888;
  line-height: 1.8;
}

.footer-newsletter form {
  display: flex;
  gap: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(192, 160, 128, 0.2);
  border-radius: 3px;
  color: #ffffff;
  font-size: 14px;
}

.footer-newsletter input::placeholder {
  color: #666666;
}

.footer-newsletter button {
  padding: 12px 30px;
  background: #c0a080;
  color: #1a1a1a;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.footer-newsletter button:hover {
  background: #d4b896;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: #666666;
}

/* Skill Bars */
.skill-bars {
  margin-top: 30px;
}

.skill-bar {
  margin-bottom: 20px;
}

.skill-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.skill-progress {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 5px;
}

.skill-progress::after {
  content: '';
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #c0a080 0%, #d4b896 100%);
  border-radius: 5px;
  animation: fillProgress 0.6s ease-out;
}

.skill-percent {
  font-size: 12px;
  color: #c0a080;
  font-weight: 600;
}

@keyframes fillProgress {
  from {
    width: 0;
  }
}

/* ==================== RESPONSIVE STYLES ==================== */

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .story-content {
    grid-template-columns: 1fr;
  }

  .services-section .service-box {
    padding: 30px 20px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-item .number {
    font-size: 32px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/**
 * Swiper 12.1.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 24, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }

  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  ::slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}
.working-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.working-container {
  width: 100%;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.working-content {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.working-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
  color: var(--primary, #333);
  opacity: 0.8;
  animation: spin 3s linear infinite;
}

.working-icon svg {
  width: 100%;
  height: 100%;
}

.working-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-color, #222);
  letter-spacing: -0.5px;
}

.working-subtitle {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--primary, #666);
  line-height: 1.4;
}

.working-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--text-muted, #888);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.working-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.working-btn {
  display: inline-block;
  padding: 15px 45px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid var(--primary, #333);
  color: var(--primary, #333);
  background: transparent;
  cursor: pointer;
}

.working-btn:hover {
  background: var(--primary, #333);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .working-page {
    padding: 40px 20px;
    min-height: calc(100vh - 80px);
  }

  .working-title {
    font-size: 36px;
  }

  .working-subtitle {
    font-size: 18px;
  }

  .working-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .working-page {
    padding: 30px 15px;
  }

  .working-title {
    font-size: 28px;
  }

  .working-subtitle {
    font-size: 16px;
  }

  .working-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .working-btn {
    padding: 12px 30px;
    font-size: 12px;
  }
}
.enquiry-page {
  position: relative;
  min-height: 100vh;
  padding: 60px 20px;
  background: #f9f9f9;
}

.enquiry-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.enquiry-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease-out;
}

.enquiry-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color, #222);
  letter-spacing: -0.5px;
}

.enquiry-subtitle {
  font-size: 18px;
  color: var(--text-muted, #666);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  font-weight: 500;
  animation: slideDown 0.4s ease-out;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.enquiry-form {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-color, #222);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: white;
  color: var(--text-color, #222);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary, #333);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group select {
  cursor: pointer;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 35px;
  justify-content: center;
  flex-wrap: wrap;
}

.submit-btn,
.cancel-btn {
  padding: 15px 45px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--primary, #333);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
}

.submit-btn {
  color: white;
  background: var(--primary, #333);
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cancel-btn {
  color: var(--primary, #333);
  background: transparent;
}

.cancel-btn:hover {
  background: var(--primary, #333);
  color: white;
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .enquiry-page {
    padding: 40px 20px;
  }

  .enquiry-title {
    font-size: 36px;
  }

  .enquiry-subtitle {
    font-size: 16px;
  }

  .enquiry-form {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-actions {
    flex-direction: column;
  }

  .submit-btn,
  .cancel-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .enquiry-page {
    padding: 30px 15px;
  }

  .enquiry-title {
    font-size: 28px;
  }

  .enquiry-subtitle {
    font-size: 14px;
  }

  .enquiry-form {
    padding: 20px;
  }

  .form-group {
    margin-bottom: 20px;
  }
}
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(2px);
  animation: fadeInOverlay 0.3s ease-out;
  pointer-events: all;
}

.loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  padding: 0 40px;
}

.loader-content {
  text-align: center;
  width: 100%;
}

/* Progress Bar Container */
.progress-bar-container {
  position: relative;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 50px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5) inset;
}

/* Progress Bar - expands from left to right */
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #d4a574, #e8c5a0, #d4a574);
  width: 0%;
  transition: width 0.2s ease-out;
  box-shadow: 0 0 20px rgba(212, 165, 116, 0.8);
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: -3px;
  right: 0;
  width: 9px;
  height: 9px;
  background: #d4a574;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(212, 165, 116, 1);
  transform: translateY(50%);
}

/* Percentage Display */
.progress-percentage {
  font-size: 56px;
  font-weight: 700;
  color: #d4a574;
  letter-spacing: 3px;
  margin-bottom: 30px;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 30px rgba(212, 165, 116, 0.4);
  animation: fadeInUp 0.6s ease-out;
  line-height: 1;
}

.loader-message {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  animation: pulse 2s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .loader-container {
    padding: 0 30px;
  }

  .progress-percentage {
    font-size: 42px;
  }

  .loader-message {
    font-size: 12px;
  }

  .progress-bar-container {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .loader-container {
    padding: 0 20px;
  }

  .progress-percentage {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .loader-message {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .progress-bar-container {
    margin-bottom: 35px;
    height: 2px;
  }
}
.counter {
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--accent);
  background: var(--accent-bg);
  border: 2px solid transparent;
  transition: border-color 0.3s;
  margin-bottom: 24px;

  &:hover {
    border-color: var(--accent-border);
  }
  &:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
}

.hero {
  position: relative;

  .base,
  .framework,
  .vite {
    inset-inline: 0;
    margin: 0 auto;
  }

  .base {
    width: 170px;
    position: relative;
    z-index: 0;
  }

  .framework,
  .vite {
    position: absolute;
  }

  .framework {
    z-index: 1;
    top: 34px;
    height: 28px;
    transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg)
      scale(1.4);
  }

  .vite {
    z-index: 0;
    top: 107px;
    height: 26px;
    width: auto;
    transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg)
      scale(0.8);
  }
}

#center {
  display: flex;
  flex-direction: column;
  gap: 25px;
  place-content: center;
  place-items: center;
  flex-grow: 1;

  @media (max-width: 1024px) {
    padding: 32px 20px 24px;
    gap: 18px;
  }
}

#next-steps {
  display: flex;
  border-top: 1px solid var(--border);
  text-align: left;

  & > div {
    flex: 1 1 0;
    padding: 32px;
    @media (max-width: 1024px) {
      padding: 24px 20px;
    }
  }

  .icon {
    margin-bottom: 16px;
    width: 22px;
    height: 22px;
  }

  @media (max-width: 1024px) {
    flex-direction: column;
    text-align: center;
  }
}

#docs {
  border-right: 1px solid var(--border);

  @media (max-width: 1024px) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

#next-steps ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 8px;
  margin: 32px 0 0;

  .logo {
    height: 18px;
  }

  a {
    color: var(--text-h);
    font-size: 16px;
    border-radius: 6px;
    background: var(--social-bg);
    display: flex;
    padding: 6px 12px;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: box-shadow 0.3s;

    &:hover {
      box-shadow: var(--shadow);
    }
    .button-icon {
      height: 18px;
      width: 18px;
    }
  }

  @media (max-width: 1024px) {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;

    li {
      flex: 1 1 calc(50% - 8px);
    }

    a {
      width: 100%;
      justify-content: center;
    }
  }
}

/* Horizontal Menu Navigation */
.main-navigation .menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-navigation .menu-item {
  margin: 0;
  padding: 0;
}

.main-navigation .menu-item a {
  display: inline-block;
  padding: 0.5rem 0;
  text-decoration: none;
  color: var(--text-h);
  transition: color 0.3s ease;
  font-weight: 500;
}

.main-navigation .menu-item a:hover {
  color: var(--accent);
}
      box-sizing: border-box;
    }
  }
}

#spacer {
  height: 88px;
  border-top: 1px solid var(--border);
  @media (max-width: 1024px) {
    height: 48px;
  }
}

.ticks {
  position: relative;
  width: 100%;

  &::before,
  &::after {
    content: '';
    position: absolute;
    top: -4.5px;
    border: 5px solid transparent;
  }

  &::before {
    left: 0;
    border-left-color: var(--border);
  }
  &::after {
    right: 0;
    border-right-color: var(--border);
  }
}
