:root {
  --muhit-card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(14, 14, 14, 0.92) 100%);
  --muhit-card-border: rgba(255, 255, 255, 0.08);
  --muhit-card-glow: rgba(225, 29, 46, 0.42);
  --muhit-card-glow-strong: rgba(248, 66, 84, 0.62);
}

body.muhit-intro-open {
  overflow: hidden;
}

.muhit-welcome {
  position: fixed;
  inset: 0;
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background:
    radial-gradient(circle at top, rgba(225, 29, 46, 0.24), transparent 36%),
    linear-gradient(135deg, rgba(8, 8, 10, 0.96) 0%, rgba(20, 20, 24, 0.94) 100%);
  backdrop-filter: blur(18px);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.muhit-welcome.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.muhit-welcome_card {
  width: min(560px, 100%);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(225, 29, 46, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(10, 10, 12, 0.94) 100%);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
  text-align: center;
}

.muhit-welcome_wave {
  display: inline-flex;
  align-items: flex-end;
  gap: 7px;
  margin-bottom: 24px;
}

.muhit-welcome_wave span {
  width: 8px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(225, 29, 46, 0.72) 100%);
  animation: muhitWelcomeWave 1.35s ease-in-out infinite;
  transform-origin: center bottom;
}

.muhit-welcome_wave span:nth-child(2) {
  animation-delay: 0.14s;
}

.muhit-welcome_wave span:nth-child(3) {
  animation-delay: 0.28s;
}

.muhit-welcome_wave span:nth-child(4) {
  animation-delay: 0.42s;
}

.muhit-welcome_wave span:nth-child(5) {
  animation-delay: 0.56s;
}

.muhit-welcome_title {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08em;
}

.muhit-welcome_actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.muhit-welcome_btn {
  min-width: 140px;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.muhit-welcome_btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.muhit-welcome_btn.is-primary {
  border-color: rgba(225, 29, 46, 0.6);
  background: linear-gradient(135deg, rgba(225, 29, 46, 0.92) 0%, rgba(255, 106, 122, 0.78) 100%);
  box-shadow: 0 18px 36px rgba(225, 29, 46, 0.22);
}

.muhit-welcome_btn.is-primary:hover {
  border-color: rgba(255, 125, 138, 0.9);
  background: linear-gradient(135deg, rgba(236, 43, 61, 0.98) 0%, rgba(255, 126, 139, 0.86) 100%);
}

@keyframes muhitWelcomeWave {
  0%,
  100% {
    transform: scaleY(0.52);
    opacity: 0.48;
  }
  50% {
    transform: scaleY(1.18);
    opacity: 1;
  }
}

.muhit-copy {
  max-width: 520px;
}

.muhit-copy p:last-child {
  margin-bottom: 0;
}

.muhit-skills-heading {
  max-width: 620px;
  margin: 0 auto;
}

.muhit-skills-heading .cs-section_title {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.muhit-skill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.muhit-skill-card {
  min-height: 245px;
  height: 100%;
  padding: 30px 24px 28px;
  border-radius: 18px;
  border: 1px solid var(--muhit-card-border);
  background: var(--muhit-card-bg);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.muhit-skill-card::before {
  display: none;
}

.muhit-skill-card > * {
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.muhit-skill-card:hover {
  transform: translateY(-10px);
  border-color: var(--skill-accent, rgba(255, 255, 255, 0.16));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(17, 15, 13, 0.96) 100%);
}

.muhit-skill-logo-wrap {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.35s ease;
}

.muhit-skill-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
  opacity: 0.5;
  filter: grayscale(0.35) saturate(0.18) brightness(0.88) contrast(0.96);
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}

.muhit-skill-card:hover .muhit-skill-logo-wrap {
  transform: translateY(-2px);
}

.muhit-skill-card:hover .muhit-skill-logo {
  opacity: 1;
  transform: scale(1.08);
  filter: grayscale(0) saturate(1.15) brightness(1.04) contrast(1.04);
}

.muhit-skill-name {
  font-size: 24px;
  margin-bottom: 8px;
}

.muhit-skill-desc {
  margin: 0;
  color: rgba(254, 254, 254, 0.72);
}

.muhit-hero-note {
  max-width: 420px;
}

.muhit-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.muhit-inline-list li {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.muhit-marquee-copy {
  white-space: nowrap;
}

.cs-moving_text_wrap {
  -webkit-text-stroke: 2px #fff;
}

.muhit-footer_text,
.muhit-video_caption {
  line-height: 1.8em;
}

.muhit-footer_text {
  max-width: 280px;
}

.muhit-award-title {
  max-width: 420px;
}

.muhit-video_caption {
  margin-top: 18px;
  text-align: center;
  color: rgba(254, 254, 254, 0.68);
}

.muhit-post_label {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cs-hero.cs-style1 .cs-hero_title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.14em;
  margin: 0 auto 32px;
  max-width: 1100px;
  text-align: center;
}

.muhit-hero-line {
  display: block;
  white-space: nowrap;
}

.cs-hero.cs-style1 .cs-hero_text {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.cs-hero.cs-style1 .cs-hero_info {
  justify-content: center;
}

.cs-hero.cs-style1 .cs-hero_info > div {
  width: auto;
}

.muhit-whatsapp-float {
  position: fixed;
  right: 32px;
  bottom: 120px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  min-height: 62px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.muhit-whatsapp-float i {
  font-size: 28px;
  line-height: 1;
}

.muhit-whatsapp-float:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.34);
}

.cs-funfact.cs-style1 .cs-funfact_number {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}

.cs-funfact.cs-style1 .cs-funfact_number .odometer {
  display: inline-flex;
  white-space: nowrap;
}

.cs-shape_wrap_4 .cs-shape_4 {
  background-color: #e11d2e;
}

.cs-social_btns.cs-style1 i,
.cs-member_social i {
  font-size: 16px;
  line-height: 1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease, transform 0.25s ease;
}

.cs-social_btns.cs-style1 a,
.cs-member_social a,
.cs-text_btn,
.cs-site_header a,
.cs-down_btn,
button,
[type="submit"] {
  cursor: pointer;
}

.cs-social_btns.cs-style1 a:hover i,
.cs-member_social a:hover i {
  color: #e11d2e;
  transform: scale(1.08);
}

body.cs-side_header_open {
  overflow: hidden;
}

.cs-side_header {
  display: flex;
  justify-content: flex-end;
}

.cs-side_header .cs-side_header_overlay {
  background: rgba(0, 0, 0, 0.72);
}

.cs-side_header .cs-side_header_in {
  display: flex;
  flex-direction: column;
  width: min(460px, calc(100vw - 20px));
  padding: 90px 42px 34px;
  background: rgba(10, 10, 10, 0.96);
  right: 0;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.cs-side_header.active .cs-side_header_in {
  transform: translateX(0);
}

.muhit-side_nav_box {
  padding-top: 28px;
  padding-bottom: 6px;
}

.muhit-side_nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.muhit-side_nav a {
  display: block;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease, border-color 0.25s ease, padding-left 0.25s ease;
}

.muhit-side_nav a:hover {
  color: #e11d2e;
  border-color: rgba(225, 29, 46, 0.6);
  padding-left: 8px;
}

.muhit-side_social_box {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.muhit-side_social_box .cs-social_btns.cs-style1 {
  justify-content: flex-start;
}

@media screen and (min-width: 992px) {
  .muhit-footer-pages {
    text-align: center;
  }

  .muhit-footer-contact {
    text-align: right;
  }
}

.cs-slider.cs-style3 .cs-portfolio.cs-style1,
.cs-slider.cs-style3 .cs-portfolio.cs-style1 * {
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .cs-side_header {
    display: flex;
  }

  .cs-side_header .cs-side_header_in {
    width: min(420px, calc(100vw - 14px));
    padding: 86px 28px 28px;
  }

  .cs-hero.cs-style1 .cs-hero_title {
    font-size: clamp(30px, 5.5vw, 42px);
    line-height: 1.12em;
  }

  .muhit-whatsapp-float {
    right: 24px;
    bottom: 112px;
  }

  .muhit-skill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media screen and (max-width: 767px) {
  .muhit-welcome {
    padding: 18px;
  }

  .muhit-welcome_card {
    border-radius: 22px;
    padding: 28px 20px;
  }

  .muhit-welcome_actions {
    flex-direction: column;
  }

  .muhit-welcome_btn {
    width: 100%;
  }

  .cs-side_header .cs-side_header_in {
    width: min(360px, calc(100vw - 10px));
    padding: 82px 22px 24px;
  }

  .muhit-side_nav a {
    font-size: 14px;
    padding-bottom: 12px;
  }

  .cs-hero.cs-style1 .cs-hero_title {
    font-size: clamp(28px, 8.2vw, 36px);
    max-width: 340px;
  }

  .muhit-hero-line {
    white-space: normal;
  }

  .muhit-skill-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .muhit-whatsapp-float {
    right: 18px;
    bottom: 92px;
    width: 58px;
    height: 58px;
    min-height: 58px;
  }
}
