* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #05070b;
  color: #fff;
  overflow-x: hidden;
}

.intro {
  position: fixed;
  inset: 0;
  background: #05070b;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: introClose 1s ease forwards;
  animation-delay: 2.5s;
}

.intro img {
  width: 340px;
  max-width: 85%;
  border-radius: 22px;
  box-shadow: 0 0 55px rgba(229, 28, 35, 0.35);
  animation: introLogo 2s ease-in-out infinite;
}

.intro-line {
  width: 280px;
  height: 6px;
  background: rgba(255,255,255,0.12);
  margin-top: 28px;
  border-radius: 50px;
  overflow: hidden;
}

.intro-line::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #e51c23, #ff4747);
  animation: loading 2s ease forwards;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 7, 11, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
}

.brand img {
  width: 170px;
  height: auto;
  display: block;
  border-radius: 10px;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  position: relative;
}

nav a.active,
nav a:hover {
  color: #ff2d35;
}

nav a.active::after,
nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 100%;
  height: 2px;
  background: #e51c23;
}

.quote-btn {
  background: linear-gradient(135deg, #e51c23, #ff3838);
  color: white;
  text-decoration: none;
  padding: 15px 24px;
  border-radius: 10px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(229, 28, 35, 0.35);
}

.hero {
  min-height: 100vh;
  padding: 135px 7% 70px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 60px;
  position: relative;
  background:
    radial-gradient(circle at 72% 42%, rgba(229,28,35,0.38), transparent 28%),
    radial-gradient(circle at 20% 60%, rgba(255,255,255,0.04), transparent 30%),
    linear-gradient(135deg, #05070b 0%, #090d13 48%, #05070b 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(229,28,35,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229,28,35,0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.8;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -120px;
  width: 100%;
  height: 260px;
  background: radial-gradient(circle, rgba(229,28,35,0.24), transparent 60%);
}

.hero-content,
.dashboard-wrap {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 26px;
}

.hero-content h1 span {
  color: #ff2b34;
  text-shadow: 0 0 26px rgba(229,28,35,0.25);
}

.hero-content p {
  color: #d2d2d2;
  font-size: 18px;
  line-height: 1.8;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.primary-btn,
.secondary-btn {
  text-decoration: none;
  padding: 17px 25px;
  border-radius: 12px;
  font-weight: 900;
}

.primary-btn {
  background: linear-gradient(135deg, #e51c23, #ff3b3b);
  color: white;
  box-shadow: 0 20px 45px rgba(229,28,35,0.35);
}

.secondary-btn {
  color: white;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.045);
}

.hero-features {
  margin-top: 38px;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.hero-features div {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 10px;
  align-items: center;
}

.hero-features span {
  grid-row: span 2;
  color: #ff2b34;
  font-size: 28px;
}

.hero-features strong {
  font-size: 15px;
}

.hero-features small {
  color: #999;
  margin-top: 4px;
}

.dashboard-wrap {
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1100px;
}

.dashboard {
  width: 690px;
  height: 390px;
  display: grid;
  grid-template-columns: 145px 1fr;
  background: rgba(14, 17, 23, 0.88);
  border: 1px solid rgba(229,28,35,0.38);
  border-radius: 22px;
  box-shadow:
    0 35px 100px rgba(0,0,0,0.5),
    0 0 70px rgba(229,28,35,0.18);
  backdrop-filter: blur(16px);
  transform: rotateY(-12deg) rotateX(4deg);
  overflow: hidden;
  animation: dashboardFloat 4s ease-in-out infinite;
}

.dashboard aside {
  padding: 26px 18px;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.22);
}

.dashboard aside h3 {
  color: #ff2b34;
  font-size: 28px;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.dashboard aside p {
  color: #aaa;
  font-size: 13px;
  padding: 11px 10px;
  border-radius: 8px;
}

.dashboard aside .active-item {
  color: white;
  background: rgba(229,28,35,0.24);
  border: 1px solid rgba(229,28,35,0.3);
}

.dashboard main {
  padding: 24px;
}

.search {
  width: 230px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #777;
  display: flex;
  align-items: center;
  padding-left: 14px;
  font-size: 13px;
  margin-bottom: 20px;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-cards div {
  padding: 15px;
  border-radius: 12px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
}

.mini-cards small {
  display: block;
  color: #aaa;
  margin-bottom: 8px;
}

.mini-cards b {
  display: block;
  font-size: 18px;
}

.mini-cards span {
  display: block;
  color: #22c55e;
  font-size: 12px;
  margin-top: 8px;
}

.chart-box {
  margin-top: 18px;
  height: 170px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.chart-box h4 {
  font-size: 14px;
  margin-bottom: 18px;
}

.chart-line {
  position: absolute;
  left: 35px;
  right: 35px;
  bottom: 35px;
  height: 95px;
  background:
    linear-gradient(135deg, transparent 8%, rgba(229,28,35,0.9) 9%, transparent 11%),
    linear-gradient(45deg, transparent 25%, rgba(229,28,35,0.9) 26%, transparent 28%),
    linear-gradient(135deg, transparent 48%, rgba(229,28,35,0.9) 49%, transparent 51%),
    linear-gradient(45deg, transparent 70%, rgba(229,28,35,0.9) 71%, transparent 73%);
  filter: drop-shadow(0 0 12px rgba(229,28,35,0.7));
}

.platform {
  position: absolute;
  bottom: 35px;
  width: 520px;
  height: 82px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255,60,60,0.9), transparent 18%),
    radial-gradient(circle at center, rgba(229,28,35,0.4), transparent 43%),
    linear-gradient(180deg, #242424, #050505);
  border: 1px solid rgba(255, 62, 62, 0.75);
  box-shadow:
    0 0 28px rgba(229,28,35,0.85),
    0 0 90px rgba(229,28,35,0.38),
    inset 0 0 45px rgba(229,28,35,0.45);
  z-index: -1;
}

.services-preview {
  width: 86%;
  margin: -45px auto 26px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 210px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  transition: 0.35s;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(229,28,35,0.55);
  box-shadow: 0 30px 70px rgba(229,28,35,0.16);
}

.icon {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(229,28,35,0.55);
  background: rgba(229,28,35,0.08);
  color: #ff2b34;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.service-card h3 {
  margin-bottom: 13px;
}

.service-card p {
  color: #bdbdbd;
  line-height: 1.7;
  font-size: 14px;
}

.service-card a {
  display: inline-block;
  margin-top: 18px;
  color: #ff2b34;
  font-weight: 800;
}

.partners,
.stats,
.contact-section {
  width: 86%;
  margin: 24px auto;
  background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 30px;
}

.partners h3 {
  margin-bottom: 24px;
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.partner-row span {
  color: #aaa;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stats b {
  color: #ff2b34;
  font-size: 38px;
}

.stats p {
  color: #bbb;
  margin-top: 8px;
}

.contact-section {
  margin-bottom: 90px;
}

.contact-section h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.contact-section p {
  color: #c7c7c7;
  line-height: 1.8;
}

.chat-widget {
  display: none;
  position: fixed;
  right: 34px;
  bottom: 105px;
  width: 320px;
  background: #f5f5f5;
  color: #111;
  border-radius: 22px;
  overflow: hidden;
  z-index: 1001;
  box-shadow: 0 28px 90px rgba(0,0,0,0.45);
}

.chat-top {
  padding: 16px;
  background: linear-gradient(135deg, #8f1217, #e51c23);
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-top img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  background: white;
}

.chat-top span {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-left: auto;
}

.chat-body {
  padding: 22px;
}

.chat-body h4 {
  margin-bottom: 10px;
}

.chat-body p {
  line-height: 1.6;
  margin-bottom: 16px;
}

.chat-body a,
.chat-body button {
  width: 100%;
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  margin-top: 10px;
}

.chat-body a {
  background: linear-gradient(135deg, #e51c23, #ff3838);
  color: white;
}

.chat-body button {
  border: 1px solid #ddd;
  background: white;
  color: #111;
  cursor: pointer;
}

.chat-toggle {
  position: fixed;
  right: 45px;
  bottom: 35px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #e51c23, #ff3838);
  color: white;
  font-size: 34px;
  cursor: pointer;
  z-index: 1002;
  box-shadow: 0 18px 45px rgba(229,28,35,0.4);
}

@keyframes introClose {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes introLogo {
  50% {
    transform: translateY(-12px) scale(1.03);
  }
}

@keyframes loading {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes dashboardFloat {
  50% {
    transform: rotateY(-8deg) rotateX(6deg) translateY(-16px);
  }
}

@media (max-width: 1100px) {
  nav,
  .quote-btn {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 130px;
  }

  .hero-content p {
    margin: auto;
  }

  .hero-buttons,
  .hero-features {
    justify-content: center;
  }

  .dashboard {
    transform: none;
    width: 95%;
  }

  .services-preview,
  .partner-row,
  .stats {
    grid-template-columns: 1fr;
  }

  .chat-widget {
    right: 20px;
    width: 310px;
  }
}

@media (max-width: 600px) {
  .brand img {
    width: 130px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .dashboard {
    grid-template-columns: 1fr;
    height: auto;
  }

  .dashboard aside {
    display: none;
  }

  .mini-cards {
    grid-template-columns: 1fr;
  }
}

.header {
  height: 96px;
  padding: 0 6%;
}

.brand {
  height: 96px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 185px;
  height: 70px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.intro {
  background:
    radial-gradient(circle at center, rgba(229, 28, 35, 0.28), transparent 32%),
    linear-gradient(135deg, #05070b 0%, #090d13 50%, #05070b 100%);
}

.intro img {
  width: 520px;
  max-width: 82%;
  height: auto;
  object-fit: contain;
  border-radius: 28px;
  box-shadow:
    0 0 60px rgba(229, 28, 35, 0.45),
    0 0 120px rgba(229, 28, 35, 0.18);
}


.intro::before {
  content: "";
  position: absolute;
  width: 620px;
  max-width: 90%;
  height: 260px;
  background: radial-gradient(circle, rgba(229,28,35,0.22), transparent 65%);
  filter: blur(18px);
  z-index: -1;
}

.header {
  height: 92px;
  padding: 0 6.5%;
}

.brand {
  width: 290px;
  height: 90px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 270px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.intro {
  background:
    radial-gradient(circle at center, rgba(229, 28, 35, 0.18), transparent 34%),
    linear-gradient(135deg, #030509 0%, #080b10 55%, #030509 100%);
}

.intro img {
  width: 330px;
  max-width: 72%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow:
    0 0 32px rgba(229, 28, 35, 0.28),
    0 0 85px rgba(229, 28, 35, 0.12);
  animation: introLogo 2.2s ease-in-out infinite;
}

.intro-line {
  width: 230px;
  height: 4px;
  margin-top: 22px;
  background: rgba(255,255,255,0.10);
  border-radius: 50px;
}

.intro::before {
  width: 420px;
  height: 160px;
  background: radial-gradient(circle, rgba(229,28,35,0.20), transparent 65%);
}

.service-card button {
  margin-top: 18px;
  background: transparent;
  border: none;
  color: #ff2b34;
  font-weight: 900;
  cursor: pointer;
  font-size: 15px;
}

.detail-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
  z-index: 5000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.detail-content {
  width: 520px;
  max-width: 100%;
  background: linear-gradient(145deg, #11151d, #07090d);
  border: 1px solid rgba(229,28,35,0.45);
  border-radius: 22px;
  padding: 34px;
  color: white;
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
  position: relative;
}

.detail-content h3 {
  font-size: 28px;
  color: #ff2b34;
  margin-bottom: 18px;
}

.detail-content p {
  color: #d4d4d4;
  line-height: 1.8;
  margin-bottom: 24px;
}

.detail-content a {
  display: inline-block;
  background: linear-gradient(135deg, #e51c23, #ff3838);
  color: white;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 900;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  color: white;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

.page-section {
  width: 86%;
  margin: 70px auto;
  padding: 45px;
  background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
}

.section-head span {
  color: #ff2b34;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 13px;
}

.section-head h2 {
  font-size: 42px;
  max-width: 760px;
  margin: 14px 0;
}

.section-head p {
  color: #c7c7c7;
  line-height: 1.8;
  max-width: 760px;
}

.info-grid,
.project-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 35px;
}

.info-card,
.project-item,
.blog-grid article {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 28px;
  transition: 0.35s;
}

.info-card:hover,
.project-item:hover,
.blog-grid article:hover {
  transform: translateY(-10px);
  border-color: rgba(229,28,35,0.55);
  box-shadow: 0 25px 60px rgba(229,28,35,0.16);
}

.info-card h3,
.project-item h3,
.blog-grid h3 {
  margin-bottom: 14px;
}

.info-card p,
.project-item p,
.blog-grid p {
  color: #bebebe;
  line-height: 1.7;
}

.project-item b {
  display: inline-block;
  color: #ff2b34;
  font-size: 34px;
  margin-bottom: 16px;
}

.blog-grid button {
  margin-top: 18px;
  background: transparent;
  border: none;
  color: #ff2b34;
  font-weight: 900;
  cursor: pointer;
  font-size: 15px;
}

@media (max-width: 1000px) {
  .info-grid,
  .project-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    font-size: 32px;
  }

  .page-section {
    padding: 28px;
  }
}

.social-section{
    width:86%;
    margin:60px auto;
    text-align:center;
}

.social-section h2{
    font-size:42px;
    margin-bottom:15px;
}

.social-section p{
    color:#bdbdbd;
    margin-bottom:40px;
}

.social-cards{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.social-card{
    width:320px;
    padding:30px;
    border-radius:24px;
    text-decoration:none;
    color:white;

    display:flex;
    align-items:center;
    gap:20px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    transition:.35s;
}

.social-card:hover{
    transform:translateY(-10px);

    border-color:rgba(229,28,35,.45);

    box-shadow:
    0 20px 60px rgba(229,28,35,.18);
}

.social-icon{
    width:70px;
    height:70px;

    border-radius:18px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(229,28,35,.08);
}

.social-icon img{
    width:38px;
}

.social-card h3{
    font-size:24px;
    margin-bottom:8px;
}

.social-card span{
    color:#aaaaaa;
}

.social-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
  background: #121217;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-social{
    display:flex;
    align-items:center;
    gap:10px;
}

.header-social a{
    width:40px;
    height:40px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:10px;

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;
}

.header-social a:hover{
    transform:translateY(-3px);

    border-color:#ff3030;

    box-shadow:0 0 15px rgba(255,48,48,.35);
}

.header-social img{
    width:22px;
    height:22px;
    object-fit:contain;
}

.header-social:hover {
  transform: translateY(-4px);
  border-color: rgba(229,28,35,0.9);
  box-shadow: 0 0 28px rgba(229,28,35,0.32);
}

.header-social img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.linkedin-header img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  border-radius: 10px;
}

.quote-btn {
  margin-left: 8px;
}

@media (max-width: 1100px) {
  .header-actions {
    display: none;
  }
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:60px;
}

.project-item{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    padding:35px;
    transition:.4s;
}

.project-item:hover{
    transform:translateY(-8px);
    border-color:#ff2a2a;
    box-shadow:0 0 35px rgba(255,42,42,.2);
}

.project-item b{
    font-size:48px;
    color:#ff2a2a;
    display:block;
    margin-bottom:15px;
}

.project-item h3{
    margin-bottom:15px;
    color:#fff;
}

.project-item p{
    color:#bdbdbd;
    line-height:1.8;
}

.technologies-section{
    margin-top:120px;
    margin-bottom:120px;
}

.testimonials-section{
    margin-top:120px;
}

.tech-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:60px;
}

.tech-card{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.tech-card:hover{
    transform:translateY(-8px);
    border-color:#ff2a2a;
    box-shadow:0 0 35px rgba(255,42,42,.25);
}

.tech-icon{
    font-size:42px;
    margin-bottom:20px;
}

.tech-card h3{
    color:#fff;
    margin-bottom:15px;
}

.tech-card p{
    color:#bdbdbd;
    line-height:1.7;
}


.tech-section {
  width: 86%;
  margin: 80px auto;
}

.tech-header span {
  color: #ff2b34;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 13px;
}

.tech-header h2 {
  font-size: 42px;
  margin: 14px 0;
  max-width: 700px;
}

.tech-header p {
  color: #c7c7c7;
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.tech-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
}

.tech-card:hover {
  transform: translateY(-8px);
  border-color: rgba(229,28,35,0.6);
  box-shadow: 0 20px 50px rgba(229,28,35,0.15);
}

.tech-card .icon {
  font-size: 30px;
  margin-bottom: 15px;
}

.tech-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.tech-card p {
  font-size: 14px;
  color: #aaa;
}

@media (max-width: 1100px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

.header {
  height: 92px !important;
  padding: 0 6.5% !important;
}

.brand {
  width: 260px !important;
  height: 90px !important;
  display: flex;
  align-items: center;
}

.brand img {
  width: 240px !important;
  height: auto !important;
  object-fit: contain !important;
}

.intro img {
  width: 340px !important;
  max-width: 80% !important;
}

.tech-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 25px !important;
}

.header-social a {
  width: 40px;
  height: 40px;
}

.header-social img {
  width: 20px !important;
  height: 20px !important;
  object-fit: contain !important;
}

.project-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
}

.service-card button {
  border: none;
  background: transparent;
  color: #ff2b34;
  cursor: pointer;
}

.chat-widget {
  display: none;
}

.chat-widget.active {
  display: block;
}

#detailModal {
  display: none;
}

#detailModal.active {
  display: flex;
}


.tech-wrapper {
  padding: 80px 6%;
}

.tech-box {
  background: linear-gradient(145deg, #0c0f14, #0a0d12);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 0 40px rgba(255,0,0,0.05);
}


.section-header span {
  color: #ff2b34;
  font-size: 12px;
  letter-spacing: 2px;
}

.section-header h2 {
  margin: 10px 0;
  font-size: 28px;
}

.section-header p {
  color: #aaa;
  max-width: 600px;
}


.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}


.tech-card {
  background: #0f141b;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}

.tech-card:hover {
  transform: translateY(-5px);
  border-color: #ff2b34;
}

.tech-card span {
  font-size: 26px;
}

.tech-card h3 {
  margin: 10px 0;
}

.tech-card p {
  color: #aaa;
}

.pricing-wrapper {
  padding: 80px 6%;
}

.pricing-box {
  background: #0c0f14;
  padding: 50px;
  border-radius: 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.price-card {
  background: #0f141b;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card .price {
  font-size: 28px;
  color: #ff2b34;
  margin: 15px 0;
}

.price-card ul {
  list-style: none;
  padding: 0;
  color: #aaa;
}

.price-card li {
  margin: 8px 0;
}

.price-card .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #ff2b34;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

.highlight {
  border: 1px solid #ff2b34;
}

.pricing-wrapper {
  padding: 80px 6%;
}

.pricing-wrapper .tech-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.pricing-wrapper .quote-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 25px;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  transition: 0.3s;
}

.pricing-wrapper .quote-btn:hover {
  background: #ff2b34;
  color: #fff;
}

.technologies-section .tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .technologies-section .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .technologies-section .tech-grid {
    grid-template-columns: 1fr;
  }
}

.technologies-section .tech-card {
  background: #0f141b;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.technologies-section .tech-card:hover {
  transform: translateY(-5px);
  border-color: #ff2b34;
  box-shadow: 0 8px 30px rgba(255, 43, 52, 0.15);
}

.pricing-wrapper {
  padding: 80px 6%;
}

.pricing-wrapper .tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.pricing-wrapper .tech-card {
  background: #0f141b;
  padding: 35px 25px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-wrapper .tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.pricing-wrapper .quote-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 25px;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  transition: 0.3s;
}

@media (min-width: 993px) {
  #technologies .tech-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(2, auto) !important;
  }
}

.whatsapp-btn{
  display:block;
  width:100%;
  text-align:center;
  margin-top:12px;
  padding:12px;
  border-radius:10px;
  background:#25d366;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.whatsapp-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(37,211,102,0.35);
}

.products-panel {
  width: 100%;
  max-width: 1180px;
  margin: 80px auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  color: #333;
}

.products-column {
  padding: 0 34px;
  border-right: 1px solid #e5e5e5;
}

.products-column:last-child {
  border-right: none;
}

.products-column h3 {
  font-size: 22px;
  font-weight: 800;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.products-column a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 21px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.products-column a:hover {
  color: #e51c23;
  transform: translateX(6px);
}

.panel-sub-title {
  margin-top: 22px;
}

@media (max-width: 1000px) {
  .products-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 0;
  }

  .products-column:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .products-panel {
    grid-template-columns: 1fr;
  }

  .products-column {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 25px 15px;
  }

  .products-column:last-child {
    border-bottom: none;
  }
}

.product-hero{
  min-height:520px;
  padding:150px 8% 90px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(120deg,rgba(5,7,11,.92),rgba(5,7,11,.75)),
    radial-gradient(circle at right,rgba(229,28,35,.35),transparent 35%);
}

.product-hero-content{
  max-width:820px;
}

.product-hero-content span,
.product-label{
  display:inline-block;
  color:#ff3838;
  font-weight:800;
  letter-spacing:2px;
  margin-bottom:18px;
}

.product-hero-content h1{
  font-size:70px;
  line-height:1;
  margin-bottom:25px;
}

.product-hero-content p{
  font-size:20px;
  color:#d8d8d8;
  line-height:1.8;
  max-width:760px;
}

.product-hero-buttons{
  display:flex;
  gap:18px;
  margin-top:35px;
  flex-wrap:wrap;
}

.product-detail-section{
  padding:100px 8%;
}

.product-two-column{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:45px;
  align-items:center;
  margin-bottom:70px;
}

.product-two-column h2{
  font-size:44px;
  margin-bottom:22px;
}

.product-two-column p{
  color:#cfcfcf;
  line-height:1.8;
  font-size:17px;
  margin-bottom:18px;
}

.product-highlight-card{
  background:linear-gradient(145deg,rgba(229,28,35,.22),rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:35px;
  box-shadow:0 30px 80px rgba(0,0,0,.25);
}

.product-highlight-card h3{
  font-size:26px;
  margin-bottom:16px;
}

.product-feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.product-feature-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:22px;
  padding:30px;
  transition:.3s;
}

.product-feature-card:hover{
  transform:translateY(-8px);
  border-color:rgba(229,28,35,.55);
  box-shadow:0 20px 50px rgba(229,28,35,.12);
}

.product-feature-card h3{
  font-size:23px;
  margin-bottom:14px;
  color:#fff;
}

.product-feature-card p{
  color:#cfcfcf;
  line-height:1.7;
}

.dark-product-section{
  background:linear-gradient(145deg,#080b12,#111722);
}

.product-step-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-top:55px;
}

.product-step-grid div{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:22px;
  padding:34px;
}

.product-step-grid b{
  color:#e51c23;
  font-size:34px;
}

.product-step-grid h3{
  margin:18px 0 12px;
  font-size:24px;
}

.product-step-grid p{
  color:#cfcfcf;
  line-height:1.7;
}

.faq-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin-top:50px;
}

.faq-item{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:20px;
  padding:28px;
}

.faq-item h3{
  font-size:22px;
  margin-bottom:12px;
}

.faq-item p{
  color:#cfcfcf;
  line-height:1.7;
}

@media(max-width:1000px){
  .product-hero-content h1{
    font-size:52px;
  }

  .product-two-column,
  .product-feature-grid,
  .product-step-grid,
  .faq-list{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .product-hero{
    padding:130px 6% 70px;
  }

  .product-hero-content h1{
    font-size:42px;
  }

  .product-hero-content p{
    font-size:17px;
  }

  .product-detail-section{
    padding:70px 6%;
  }

  .product-two-column h2{
    font-size:34px;
  }
}

.product-video-section{
  padding:90px 8%;
  background:#080b12;
}

.video-frame{
  max-width:1000px;
  margin:45px auto 0;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.12);
}

.video-frame iframe{
  width:100%;
  height:560px;
  display:block;
  border:none;
}

.related-solutions-section{
  padding:90px 8%;
  background:#fff;
  color:#222;
}

.related-title{
  background:#c91518;
  color:#fff;
  text-align:center;
  padding:38px 20px;
  border-radius:4px;
  box-shadow:0 18px 35px rgba(0,0,0,.18);
  margin-bottom:55px;
}

.related-title h2{
  font-size:36px;
  font-weight:800;
}

.related-solutions-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:42px;
  align-items:center;
}

.related-solution-card{
  display:block;
  background:#fff;
  border:1px solid #e6e6e6;
  box-shadow:0 8px 22px rgba(0,0,0,.12);
  text-decoration:none;
  color:#222;
  overflow:hidden;
  transition:.3s;
}

.related-solution-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(0,0,0,.2);
}

.related-solution-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  background:#f2f2f2;
}

.related-solution-card span{
  display:block;
  text-align:center;
  padding:18px;
  font-size:20px;
  font-weight:800;
}

.faq-accordion{
  max-width:1050px;
  margin:55px auto 0;
  background:rgba(255,255,255,.04);
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
}

.faq-accordion details{
  border-bottom:1px solid rgba(255,255,255,.1);
  padding:0;
}

.faq-accordion details:last-child{
  border-bottom:none;
}

.faq-accordion summary{
  cursor:pointer;
  list-style:none;
  padding:22px 28px;
  font-size:18px;
  font-weight:700;
  color:#fff;
  position:relative;
}

.faq-accordion summary::-webkit-details-marker{
  display:none;
}

.faq-accordion summary::after{
  content:"+";
  position:absolute;
  right:28px;
  color:#e51c23;
  font-size:24px;
  top:18px;
}

.faq-accordion details[open] summary{
  color:#ff3838;
  background:rgba(255,255,255,.04);
}

.faq-accordion details[open] summary::after{
  content:"−";
}

.faq-accordion p{
  padding:0 28px 24px;
  color:#cfcfcf;
  line-height:1.7;
}

@media(max-width:1000px){
  .related-solutions-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .video-frame iframe{
    height:420px;
  }
}

@media(max-width:650px){
  .related-solutions-grid{
    grid-template-columns:1fr;
  }

  .related-solution-card img{
    height:230px;
  }

  .video-frame iframe{
    height:260px;
  }

  .related-title h2{
    font-size:28px;
  }
}

.related-solutions-grid-three{
  grid-template-columns:repeat(3,1fr);
}

.product-image-showcase{
  max-width:760px;
  margin:50px auto 0;
  background:#fff;
  border-radius:24px;
  padding:35px;
  box-shadow:0 25px 70px rgba(0,0,0,.35);
}

.product-image-showcase img{
  width:100%;
  display:block;
  object-fit:contain;
}

.header{
  height:92px !important;
  padding:0 4.5% !important;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  width:230px !important;
  min-width:230px !important;
  height:90px !important;
  display:flex;
  align-items:center;
}

.brand img{
  width:220px !important;
  height:auto !important;
  object-fit:contain !important;
}

nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:26px;
  flex:1;
  min-width:0;
}

nav > a,
.nav-dropdown > a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:800;
  white-space:nowrap;
  position:relative;
  transition:.3s;
}



nav > a.active,
nav > a:hover,
.nav-dropdown > a:hover{
  color:#ff2d35;
}

nav > a.active::after,
nav > a:hover::after,
.nav-dropdown > a:hover::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-16px;
  width:100%;
  height:2px;
  background:#e51c23;
}

.nav-dropdown{
  position:static;
  display:flex;
  align-items:center;
}

.mega-menu{
  position:fixed;
  top:92px;
  left:0;
  width:100%;
  background:#fff;
  color:#222;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:0;
  padding:42px 5%;
  opacity:0;
  visibility:hidden;
  transform:translateY(14px);
  transition:.3s ease;
  z-index:9999;
  box-shadow:0 25px 70px rgba(0,0,0,.25);
  border-top:1px solid rgba(229,28,35,.25);
}

.nav-dropdown:hover .mega-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.mega-column{
  padding:0 22px;
  border-right:1px solid #e8e8e8;
}

.mega-column:last-child{
  border-right:none;
}

.mega-column h3{
  color:#d71920;
  font-size:15px;
  font-weight:900;
  margin-bottom:18px;
  white-space:nowrap;
}

.mega-column a{
  display:block;
  color:#333;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  line-height:1.35;
  margin-bottom:13px;
  transition:.25s;
}

.mega-column a:hover{
  color:#e51c23;
  transform:translateX(6px);
}

.mega-sub-title{
  margin-top:24px;
}

@media(max-width:1400px){
  .header{
    padding:0 3% !important;
  }

  .brand{
    width:190px !important;
    min-width:190px !important;
  }

  .brand img{
    width:185px !important;
  }

  nav{
    gap:18px;
  }

  nav > a,
  .nav-dropdown > a{
    font-size:14px;
  }

  .mega-menu{
    grid-template-columns:repeat(3,1fr);
    max-height:80vh;
    overflow-y:auto;
  }

  .mega-column{
    padding:22px;
    border-right:none;
    border-bottom:1px solid #eee;
  }
}

@media(max-width:1100px){
  nav,
  .quote-btn,
  .header-social{
    display:none !important;
  }

  .brand{
    width:220px !important;
    min-width:220px !important;
  }

  .brand img{
    width:210px !important;
  }
}

@media(max-width:768px){
  .mega-menu{
    grid-template-columns:1fr;
    padding:28px;
  }
}

.vertical-video-frame{
  max-width:420px;
  margin:45px auto 0;
  background:#000;
}

.vertical-video-frame video{
  width:100%;
  height:580px;
  object-fit:contain;
  display:block;
  background:#000;
}

@media(max-width:600px){
  .vertical-video-frame{
    max-width:92%;
  }

  .vertical-video-frame video{
    height:560px;
  }
}

.product-video{
    width:100%;
    display:flex;
    justify-content:center;
    margin-top:40px;
}

.product-video-player{
    width:100%;
    max-width:1050px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
    background:#000;
}

.product-image-box{
  max-width:1100px;
  margin:0 auto;
  border-radius:24px;
  overflow:hidden;
}

.product-image-box img{
  width:100%;
  display:block;
  border-radius:24px;
}

@media(max-width:700px){
}


.reviews-section .tech-grid{
  margin-bottom:45px;
}

.review-form-box{
  max-width:900px !important;
  margin:50px auto 0 !important;
  padding:35px !important;
  border-radius:26px !important;
  background:linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02)) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  box-shadow:0 25px 80px rgba(0,0,0,.35) !important;
}

.review-form-box h3{
  font-size:28px !important;
  margin-bottom:25px !important;
  color:#fff !important;
}

.review-form-box form{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:18px !important;
}

.review-form-box input,
.review-form-box select,
.review-form-box textarea{
  width:100% !important;
  background:#080b12 !important;
  border:1px solid rgba(255,255,255,.14) !important;
  color:#fff !important;
  border-radius:14px !important;
  padding:15px 16px !important;
  font-size:15px !important;
  outline:none !important;
}

.review-form-box textarea{
  grid-column:1 / -1 !important;
  min-height:130px !important;
  resize:vertical !important;
}

.review-form-box button{
  grid-column:1 / -1 !important;
  justify-self:start !important;
  border:none !important;
  cursor:pointer !important;
}

.review-stars{
  color:#ffcc00 !important;
  font-size:24px !important;
  letter-spacing:3px !important;
  margin-bottom:15px !important;
}

@media(max-width:700px){
  .review-form-box form{
    grid-template-columns:1fr !important;
  }
}

.review-form-box{
  max-width:900px;
  margin:50px auto 0;
  padding:35px;
  border-radius:26px;
  background:#10141d;
  border:1px solid rgba(255,255,255,.12);
}

.review-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.review-field.full{
  grid-column:1 / -1;
}

.review-form input,
.review-form select,
.review-form textarea{
  width:100%;
  background:#05070b;
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  border-radius:14px;
  padding:15px 16px;
  font-size:15px;
}

.review-form textarea{
  min-height:130px;
}

.review-form button{
  grid-column:1 / -1;
  width:max-content;
  border:none;
  cursor:pointer;
}

@media(max-width:700px){
  .review-form{
    grid-template-columns:1fr;
  }
}

.star-rating{
  display:flex;
  gap:8px;
  font-size:34px;
  color:#FFD700;
  cursor:pointer;
  align-items:center;
}

.star-rating span{
  transition:.2s;
}

.star-rating span:hover{
  transform:scale(1.15);
}

.file-upload-box{
  width:100% !important;
  background:#05070b !important;
  border:1px dashed rgba(255,255,255,.25) !important;
  border-radius:16px !important;
  padding:18px !important;
  cursor:pointer !important;
  box-sizing:border-box !important;
}

.file-upload-box input{
  display:none !important;
}

.file-upload-box span{
  display:block !important;
  color:#fff !important;
  font-weight:800 !important;
  margin-bottom:6px !important;
}

.file-upload-box small{
  color:#9ca3af !important;
}

.file-upload-box{
  display:block !important;
  width:100% !important;
}

.offer-form-box{
  max-width:900px;
  margin:0 auto;
  padding:35px;
  border-radius:26px;
  background:#10141d;
  border:1px solid rgba(255,255,255,.12);
}

.offer-form-box h3{
  font-size:28px;
  margin-bottom:25px;
  color:#fff;
}

.upload-clean{
  display:block;
  width:100%;
  background:#05070b;
  border:1px dashed rgba(255,255,255,.22);
  color:#fff;
  border-radius:14px;
  padding:18px;
  cursor:pointer;
}

.upload-clean input{
  display:none;
}

.upload-clean strong{
  display:block;
  margin-bottom:6px;
}

.upload-clean small{
  color:#9ca3af;
}

.offer-form-box textarea{
  min-height:220px !important;
}

.header{
  height:92px !important;
  padding:0 4.8% !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:18px !important;
  overflow:visible !important;
  z-index:4000 !important;
}
.brand{
    width:170px !important;
    min-width:170px !important;
    height:92px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    overflow:hidden !important;
    padding:0 !important;
    margin:0 !important;
    background:transparent !important;
}

.brand img{
    width:155px !important;
    max-width:100% !important;
    height:auto !important;
    object-fit:contain !important;
    object-position:left center !important;
    display:block !important;
    border-radius:0 !important;
    box-shadow:none !important;
    background:transparent !important;
}

.header nav{
  flex:1 !important;
  min-width:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:25px !important;
  position:static !important;
  width:auto !important;
  height:auto !important;
  background:transparent !important;
  border:none !important;
  padding:0 !important;
  overflow:visible !important;
}

.header nav > a,
.header nav .nav-dropdown > a{
  display:inline-block !important;
  width:auto !important;
  height:auto !important;
  padding:0 !important;
  color:#fff !important;
  text-decoration:none !important;
  background:transparent !important;
  border:none !important;
  font-size:15px !important;
  font-weight:800 !important;
  white-space:nowrap !important;
  position:relative !important;
}

.header nav > a:hover,
.header nav > a.active,
.header nav .nav-dropdown > a:hover,
.header nav .nav-dropdown > a.active{
  color:#ff2d35 !important;
}

.header nav > a:hover::after,
.header nav > a.active::after,
.header nav .nav-dropdown > a:hover::after,
.header nav .nav-dropdown > a.active::after{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  bottom:-16px !important;
  width:100% !important;
  height:2px !important;
  background:#e51c23 !important;
}

.header-social{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  flex-shrink:0 !important;
}

.header-social a{
  width:44px !important;
  height:44px !important;
  min-width:44px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  border-radius:12px !important;
  background:#111827 !important;
  border:1px solid rgba(255,255,255,.09) !important;
  transition:.3s !important;
  overflow:hidden !important;
}

.header-social a:hover{
  transform:translateY(-3px) !important;
  border-color:#ff3030 !important;
  box-shadow:0 0 18px rgba(255,48,48,.35) !important;
}

.header-social img{
  width:22px !important;
  height:22px !important;
  object-fit:contain !important;
  display:block !important;
}

.header .quote-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex-shrink:0 !important;
  margin-left:8px !important;
  padding:15px 24px !important;
  border-radius:10px !important;
  white-space:nowrap !important;
}

.nav-dropdown{
  position:static !important;
  display:flex !important;
  align-items:center !important;
}

.nav-dropdown::after{
  content:"";
  position:fixed;
  top:72px;
  left:0;
  width:100%;
  height:34px;
  display:none;
  z-index:4998;
}

.nav-dropdown:hover::after{
  display:block;
}

.mega-menu{
  position:fixed !important;
  top:92px !important;
  left:0 !important;
  width:100% !important;
  background:#fff !important;
  color:#222 !important;
  display:grid !important;
  grid-template-columns:repeat(6,1fr) !important;
  gap:0 !important;
  padding:42px 5% !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
  transform:translateY(10px) !important;
  transition:opacity .22s ease, transform .22s ease, visibility .22s ease !important;
  z-index:5000 !important;
  box-shadow:0 25px 70px rgba(0,0,0,.25) !important;
  border-top:1px solid rgba(229,28,35,.25) !important;
  border-radius:0 !important;
  max-height:none !important;
  overflow:visible !important;
}

.nav-dropdown:hover .mega-menu,
.mega-menu:hover{
  opacity:1 !important;
  visibility:visible !important;
  pointer-events:auto !important;
  transform:translateY(0) !important;
}

.mega-column{
  padding:0 22px !important;
  border-right:1px solid #e8e8e8 !important;
}

.mega-column:last-child{
  border-right:none !important;
}

.mega-column h3{
  color:#d71920 !important;
  font-size:15px !important;
  font-weight:900 !important;
  margin:0 0 18px !important;
  white-space:nowrap !important;
  line-height:1.25 !important;
}

.mega-column a{
  display:block !important;
  color:#333 !important;
  text-decoration:none !important;
  font-size:14px !important;
  font-weight:700 !important;
  line-height:1.35 !important;
  margin-bottom:13px !important;
  padding:0 !important;
  background:transparent !important;
  transition:.25s !important;
}

.mega-column a:hover{
  color:#e51c23 !important;
  transform:translateX(6px) !important;
}

.mega-column a::after{
  display:none !important;
}

.chat-widget{
  z-index:900 !important;
}

.chat-toggle{
  z-index:901 !important;
}

.mobile-menu-btn,
.mobile-menu-button,
.mobile-open-btn,
.mobile-menu,
.mobile-menu-bg,
.mobile-menu-panel,
.mobile-menu-overlay,
.meg-mobile-panel,
.meg-mobile-overlay{
  display:none !important;
}

@media(max-width:1500px){
  .header{
    padding:0 3.2% !important;
    gap:14px !important;
  }

  .brand{
    width:220px !important;
    min-width:220px !important;
  }

  .brand img{
    width:210px !important;
  }

  .header nav{
    gap:20px !important;
  }

  .header nav > a,
  .header nav .nav-dropdown > a{
    font-size:14px !important;
  }

  .header-social a{
    width:40px !important;
    height:40px !important;
    min-width:40px !important;
  }

  .header .quote-btn{
    padding:14px 22px !important;
  }
}

@media(max-width:1250px){
  .header{
    padding:0 2% !important;
  }

  .brand{
    width:190px !important;
    min-width:190px !important;
  }

  .brand img{
    width:180px !important;
  }

  .header nav{
    gap:15px !important;
  }

  .header nav > a,
  .header nav .nav-dropdown > a{
    font-size:13px !important;
  }

  .header .quote-btn{
    padding:13px 18px !important;
    font-size:14px !important;
  }

  .mega-menu{
    grid-template-columns:repeat(3,1fr) !important;
    max-height:calc(100vh - 92px) !important;
    overflow-y:auto !important;
  }

  .mega-column{
    padding:22px !important;
    border-right:none !important;
    border-bottom:1px solid #eee !important;
  }
}

@media(max-width:1100px){
  .header{
    height:82px !important;
    padding:0 5% !important;
  }

  .brand{
    width:auto !important;
    min-width:0 !important;
    height:75px !important;
  }

.brand img{
    width:110px !important;
    max-width:100% !important;
    height:auto !important;
}

  .header nav,
  .header-social,
  .header .quote-btn{
    display:none !important;
  }

  .mobile-menu-btn{
    width:48px !important;
    height:48px !important;
    border:1px solid rgba(255,255,255,.12) !important;
    border-radius:14px !important;
    background:rgba(255,255,255,.04) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    flex-direction:column !important;
    gap:6px !important;
    cursor:pointer !important;
  }

  .mobile-menu-btn span{
    width:22px !important;
    height:2px !important;
    background:#fff !important;
    border-radius:20px !important;
    display:block !important;
  }

  .mobile-menu-overlay{
    position:fixed !important;
    inset:0 !important;
    background:rgba(0,0,0,.62) !important;
    backdrop-filter:blur(4px) !important;
    opacity:0 !important;
    visibility:hidden !important;
    z-index:2998 !important;
    display:block !important;
    transition:.3s !important;
  }

  .mobile-menu-overlay.active{
    opacity:1 !important;
    visibility:visible !important;
  }

  .mobile-menu-panel{
    position:fixed !important;
    top:0 !important;
    right:-420px !important;
    width:390px !important;
    max-width:88% !important;
    height:100vh !important;
    background:#fff !important;
    color:#111 !important;
    z-index:2999 !important;
    display:block !important;
    transition:.35s ease !important;
    box-shadow:-25px 0 80px rgba(0,0,0,.35) !important;
    overflow-y:auto !important;
  }

  .mobile-menu-panel.active{
    right:0 !important;
  }

  .mobile-menu-head{
    height:90px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    padding:0 22px !important;
    border-bottom:1px solid #e7e7e7 !important;
  }

  .mobile-menu-head img{
    width:138px !important;
    height:auto !important;
    display:block !important;
  }

  .mobile-menu-head button{
    width:42px !important;
    height:42px !important;
    border:none !important;
    background:transparent !important;
    color:#111 !important;
    font-size:34px !important;
    cursor:pointer !important;
    line-height:1 !important;
  }

  .mobile-menu-body{
    padding-bottom:30px !important;
  }

  .mobile-menu-body a,
  .mobile-accordion-btn,
  .mobile-subtitle{
    width:100% !important;
    min-height:52px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    color:#111 !important;
    background:#fff !important;
    border:none !important;
    border-bottom:1px solid #eee !important;
    text-decoration:none !important;
    padding:0 22px !important;
    font-size:16px !important;
    font-weight:700 !important;
    cursor:pointer !important;
  }

  .mobile-menu-body a:hover,
  .mobile-accordion-btn:hover,
  .mobile-subtitle:hover{
    color:#e51c23 !important;
    background:#fafafa !important;
  }

  .mobile-accordion-btn span,
  .mobile-subtitle span{
    transition:.25s !important;
    font-size:24px !important;
  }

  .mobile-accordion-btn.active span,
  .mobile-subtitle.active span{
    transform:rotate(90deg) !important;
  }

  .mobile-submenu{
    display:none !important;
    background:#f8f8f8 !important;
  }

  .mobile-submenu.active{
    display:block !important;
  }

  .mobile-submenu a{
    background:#f8f8f8 !important;
    font-size:15px !important;
    font-weight:600 !important;
    padding-left:34px !important;
  }

  .mobile-submenu.inner a{
    padding-left:48px !important;
    font-size:14px !important;
    color:#333 !important;
  }

  .mobile-subtitle{
    background:#f8f8f8 !important;
    font-size:15px !important;
    padding-left:34px !important;
  }

  .mobile-quote-link{
    margin:22px auto 0 !important;
    width:calc(100% - 44px) !important;
    min-height:54px !important;
    border-radius:14px !important;
    justify-content:center !important;
    background:linear-gradient(135deg,#e51c23,#ff3838) !important;
    color:#fff !important;
    border-bottom:none !important;
    box-shadow:0 16px 34px rgba(229,28,35,.25) !important;
  }

  body.mobile-menu-open{
    overflow:hidden !important;
  }
}

@media(max-width:520px){
  .mobile-menu-panel{
    width:100% !important;
    max-width:100% !important;
  }

  .mobile-menu-head img{
    width:128px !important;
  }

  .brand img{
    width:155px !important;
  }
}

.mega-menu{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.25s;
}

.mega-menu.show{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.mobile-menu-btn,
.mobile-menu-overlay,
.mobile-menu-panel{
  display:none;
}

@media(max-width:1100px){
  .header{
    height:82px !important;
    padding:0 5% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
  }

  .header nav,
  .header-social,
  .header .quote-btn{
    display:none !important;
  }

  .brand{
    width:auto !important;
    min-width:0 !important;
    height:75px !important;
  }

.brand img{
    width:110px !important;
    max-width:100% !important;
    height:auto !important;
}

  .mobile-menu-btn{
    width:48px !important;
    height:48px !important;
    border:1px solid rgba(255,255,255,.14) !important;
    border-radius:14px !important;
    background:rgba(255,255,255,.04) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    flex-direction:column !important;
    gap:6px !important;
    cursor:pointer !important;
    z-index:5001 !important;
  }

  .mobile-menu-btn span{
    width:23px !important;
    height:2px !important;
    background:#fff !important;
    display:block !important;
    border-radius:20px !important;
  }

  .mobile-menu-overlay{
    position:fixed !important;
    inset:0 !important;
    background:rgba(0,0,0,.62) !important;
    backdrop-filter:blur(4px) !important;
    opacity:0 !important;
    visibility:hidden !important;
    display:block !important;
    z-index:7998 !important;
    transition:.25s !important;
  }

  .mobile-menu-overlay.active{
    opacity:1 !important;
    visibility:visible !important;
  }

  .mobile-menu-panel{
    position:fixed !important;
    top:0 !important;
    right:-100% !important;
    width:min(390px,100%) !important;
    height:100vh !important;
    background:#fff !important;
    color:#111 !important;
    display:block !important;
    z-index:7999 !important;
    transition:.35s ease !important;
    overflow-y:auto !important;
    box-shadow:-25px 0 80px rgba(0,0,0,.35) !important;
  }

  .mobile-menu-panel.active{
    right:0 !important;
  }

  .mobile-menu-head{
    height:90px !important;
    padding:0 22px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    border-bottom:1px solid #e8e8e8 !important;
  }

  .mobile-menu-head img{
    width:150px !important;
    height:auto !important;
    display:block !important;
  }

  .mobile-menu-head button{
    border:none !important;
    background:transparent !important;
    color:#111 !important;
    font-size:34px !important;
    cursor:pointer !important;
    line-height:1 !important;
  }

  .mobile-menu-page{
    display:none !important;
  }

  .mobile-menu-page.active{
    display:block !important;
  }

  .mobile-menu-page a,
  .mobile-menu-page > button{
    width:100% !important;
    min-height:56px !important;
    padding:0 22px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    border:none !important;
    border-bottom:1px solid #ececec !important;
    background:#fff !important;
    color:#111 !important;
    text-decoration:none !important;
    font-size:16px !important;
    font-weight:800 !important;
    text-align:left !important;
    cursor:pointer !important;
  }

  .mobile-menu-page a:hover,
  .mobile-menu-page > button:hover{
    color:#e51c23 !important;
    background:#fafafa !important;
  }

  .mobile-menu-page span{
    font-size:24px !important;
  }

  .mobile-sub-head{
    height:64px !important;
    display:grid !important;
    grid-template-columns:52px 1fr 52px !important;
    align-items:center !important;
    border-bottom:1px solid #e8e8e8 !important;
  }

  .mobile-sub-head strong{
    text-align:center !important;
    color:#e51c23 !important;
    font-size:16px !important;
    font-weight:900 !important;
  }

  .mobile-sub-head button{
    border:none !important;
    background:transparent !important;
    color:#111 !important;
    font-size:32px !important;
    line-height:1 !important;
    cursor:pointer !important;
  }

  .mobile-offer-btn{
    margin:22px auto 0 !important;
    width:calc(100% - 44px) !important;
    min-height:54px !important;
    border-radius:14px !important;
    justify-content:center !important;
    background:linear-gradient(135deg,#e51c23,#ff3838) !important;
    color:#fff !important;
    border-bottom:none !important;
    box-shadow:0 16px 34px rgba(229,28,35,.25) !important;
  }

  body.mobile-menu-open{
    overflow:hidden !important;
  }
}

.brand img{
    width:150px !important;
}

  .mobile-menu-panel{
    width:100% !important;
  }

.header{height:92px!important;padding:0 4.8%!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:18px!important;overflow:visible!important;z-index:4000!important}
.brand{width:260px!important;min-width:260px!important;height:92px!important;display:flex!important;align-items:center!important;justify-content:flex-start!important;overflow:hidden!important;padding:0!important;margin:0!important;background:transparent!important}
.brand img{width:245px!important;height:auto!important;object-fit:contain!important;object-position:left center!important;display:block!important;border-radius:0!important;box-shadow:none!important;background:transparent!important}
.header nav{flex:1!important;min-width:0!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:25px!important;position:static!important;width:auto!important;height:auto!important;background:transparent!important;border:none!important;padding:0!important;overflow:visible!important}
.header nav>a,.header nav .nav-dropdown>a{display:inline-block!important;width:auto!important;height:auto!important;padding:0!important;color:#fff!important;text-decoration:none!important;background:transparent!important;border:none!important;font-size:15px!important;font-weight:800!important;white-space:nowrap!important;position:relative!important}
.header nav>a:hover,.header nav>a.active,.header nav .nav-dropdown>a:hover,.header nav .nav-dropdown>a.active{color:#ff2d35!important}
.header nav>a:hover::after,.header nav>a.active::after,.header nav .nav-dropdown>a:hover::after,.header nav .nav-dropdown>a.active::after{content:""!important;position:absolute!important;left:0!important;bottom:-16px!important;width:100%!important;height:2px!important;background:#e51c23!important}
.header-social{display:flex!important;align-items:center!important;gap:10px!important;flex-shrink:0!important}
.header-social a{width:44px!important;height:44px!important;min-width:44px!important;display:flex!important;align-items:center!important;justify-content:center!important;border-radius:12px!important;background:#111827!important;border:1px solid rgba(255,255,255,.09)!important;transition:.3s!important;overflow:hidden!important}
.header-social img{width:22px!important;height:22px!important;object-fit:contain!important;display:block!important}
.header .quote-btn{display:inline-flex!important;align-items:center!important;justify-content:center!important;flex-shrink:0!important;margin-left:8px!important;padding:15px 24px!important;border-radius:10px!important;white-space:nowrap!important}
.nav-dropdown{position:static!important;display:flex!important;align-items:center!important}
.nav-dropdown::after{content:"";position:fixed;top:72px;left:0;width:100%;height:90px;display:none;z-index:4998}
.nav-dropdown:hover::after{display:block}
.mega-menu{position:fixed!important;top:92px!important;left:0!important;width:100%!important;background:#fff!important;color:#222!important;display:grid!important;grid-template-columns:repeat(6,1fr)!important;gap:0!important;padding:42px 5%!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important;transform:translateY(10px)!important;transition:opacity .22s ease,transform .22s ease,visibility .22s ease!important;z-index:5000!important;box-shadow:0 25px 70px rgba(0,0,0,.25)!important;border-top:1px solid rgba(229,28,35,.25)!important;border-radius:0!important;max-height:none!important;overflow:visible!important}
.nav-dropdown:hover .mega-menu,.mega-menu:hover{opacity:1!important;visibility:visible!important;pointer-events:auto!important;transform:translateY(0)!important}
.mega-column{padding:0 22px!important;border-right:1px solid #e8e8e8!important}
.mega-column:last-child{border-right:none!important}
.mega-column h3{color:#d71920!important;font-size:15px!important;font-weight:900!important;margin:0 0 18px!important;white-space:nowrap!important;line-height:1.25!important}
.mega-column a{display:block!important;color:#333!important;text-decoration:none!important;font-size:14px!important;font-weight:700!important;line-height:1.35!important;margin-bottom:13px!important;padding:0!important;background:transparent!important;transition:.25s!important}
.mega-column a:hover{color:#e51c23!important;transform:translateX(6px)!important}
.mega-column a::after{display:none!important}
.chat-widget{z-index:900!important}.chat-toggle{z-index:901!important}
.mobile-menu-button,.mobile-open-btn,.mobile-menu,.mobile-menu-bg,.meg-mobile-panel,.meg-mobile-overlay{display:none!important}
.mobile-menu-btn{display:none!important}.mobile-menu-overlay,.mobile-menu-panel{display:none}
@media(max-width:1500px){.header{padding:0 3.2%!important;gap:14px!important}.brand{width:220px!important;min-width:220px!important}.brand img{width:210px!important}.header nav{gap:20px!important}.header nav>a,.header nav .nav-dropdown>a{font-size:14px!important}.header-social a{width:40px!important;height:40px!important;min-width:40px!important}.header .quote-btn{padding:14px 22px!important}}
@media(max-width:1250px){.header{padding:0 2%!important}.brand{width:190px!important;min-width:190px!important}.brand img{width:180px!important}.header nav{gap:15px!important}.header nav>a,.header nav .nav-dropdown>a{font-size:13px!important}.header .quote-btn{padding:13px 18px!important;font-size:14px!important}.mega-menu{grid-template-columns:repeat(3,1fr)!important;max-height:calc(100vh - 92px)!important;overflow-y:auto!important}.mega-column{padding:22px!important;border-right:none!important;border-bottom:1px solid #eee!important}}
@media(max-width:1100px){.header{height:76px!important;padding:0 5%!important;display:flex!important;align-items:center!important;justify-content:space-between!important}.brand{width:auto!important;min-width:0!important;height:76px!important;display:flex!important;align-items:center!important;justify-content:flex-start!important;overflow:hidden!important}.brand img{width:150px!important;height:auto!important;object-fit:contain!important;object-position:left center!important;display:block!important;border-radius:0!important;box-shadow:none!important;background:transparent!important}.header nav,.header-social,.header .quote-btn{display:none!important}.mobile-menu-btn{width:48px!important;height:48px!important;border:1px solid rgba(255,255,255,.12)!important;border-radius:14px!important;background:rgba(255,255,255,.04)!important;display:flex!important;align-items:center!important;justify-content:center!important;flex-direction:column!important;gap:6px!important;cursor:pointer!important;z-index:5001!important}.mobile-menu-btn span{width:22px!important;height:2px!important;background:#fff!important;border-radius:20px!important;display:block!important}.mobile-menu-overlay{position:fixed!important;inset:0!important;background:rgba(0,0,0,.62)!important;backdrop-filter:blur(4px)!important;opacity:0!important;visibility:hidden!important;z-index:7998!important;display:block!important;transition:.3s!important}.mobile-menu-overlay.active{opacity:1!important;visibility:visible!important}.mobile-menu-panel{position:fixed!important;top:0!important;right:-420px!important;width:390px!important;max-width:88%!important;height:100vh!important;background:#fff!important;color:#111!important;z-index:7999!important;display:block!important;transition:.35s ease!important;box-shadow:-25px 0 80px rgba(0,0,0,.35)!important;overflow-y:auto!important}.mobile-menu-panel.active{right:0!important}.mobile-menu-head{height:86px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;padding:0 20px!important;border-bottom:1px solid #e7e7e7!important;background:#fff!important}.mobile-menu-head img{width:120px!important;height:auto!important;object-fit:contain!important;display:block!important;border-radius:0!important;box-shadow:none!important;background:transparent!important}.mobile-menu-head button{width:42px!important;height:42px!important;border:none!important;background:transparent!important;color:#111!important;font-size:34px!important;cursor:pointer!important;line-height:1!important}.mobile-menu-body{padding-bottom:30px!important}.mobile-menu-body a,.mobile-accordion-btn,.mobile-subtitle{width:100%!important;min-height:52px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;color:#111!important;background:#fff!important;border:none!important;border-bottom:1px solid #eee!important;text-decoration:none!important;padding:0 22px!important;font-size:16px!important;font-weight:700!important;cursor:pointer!important}.mobile-menu-body a:hover,.mobile-accordion-btn:hover,.mobile-subtitle:hover{color:#e51c23!important;background:#fafafa!important}.mobile-accordion-btn span,.mobile-subtitle span{transition:.25s!important;font-size:24px!important}.mobile-accordion-btn.active span,.mobile-subtitle.active span{transform:rotate(90deg)!important}.mobile-submenu{display:none!important;background:#f8f8f8!important}.mobile-submenu.active{display:block!important}.mobile-submenu a{background:#f8f8f8!important;font-size:15px!important;font-weight:600!important;padding-left:34px!important}.mobile-submenu.inner a{padding-left:48px!important;font-size:14px!important;color:#333!important}.mobile-subtitle{background:#f8f8f8!important;font-size:15px!important;padding-left:34px!important}.mobile-quote-link,.mobile-offer-btn{margin:22px auto 0!important;width:calc(100% - 44px)!important;min-height:54px!important;border-radius:14px!important;justify-content:center!important;background:linear-gradient(135deg,#e51c23,#ff3838)!important;color:#fff!important;border-bottom:none!important;box-shadow:0 16px 34px rgba(229,28,35,.25)!important}body.mobile-menu-open{overflow:hidden!important}}
@media(max-width:520px){.mobile-menu-panel{width:100%!important;max-width:100%!important}.mobile-menu-head img{width:112px!important}.brand img{width:140px!important}}


.mobile-menu-head{
  height:90px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:0 !important;
  background:#fff !important;
  position:relative !important;
  overflow:hidden !important;
}

.mobile-menu-head img{
  width:145px !important;
  height:auto !important;
  display:block !important;
  object-fit:contain !important;
  object-position:center !important;
  margin:0 auto !important;
  padding:0 !important;
  transform:translateY(8px) !important;
}

.mobile-menu-head button{
  position:absolute !important;
  right:18px !important;
  top:50% !important;
  transform:translateY(-50%) !important;
}



.header{
  position:fixed !important;
  top:0 !important;
  left:0 !important;
  width:100% !important;
  height:92px !important;
  padding:0 4.8% !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:18px !important;
  background:rgba(5,7,11,.82) !important;
  backdrop-filter:blur(18px) !important;
  border-bottom:1px solid rgba(255,255,255,.08) !important;
  overflow:visible !important;
  z-index:4000 !important;
}

.brand{
  width:260px !important;
  min-width:260px !important;
  height:92px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  overflow:visible !important;
  padding:0 !important;
  margin:0 !important;
  background:transparent !important;
}

.brand a{
  height:92px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  padding:0 !important;
  margin:0 !important;
}

.desktop-logo{
    display:block;
}

.mobile-logo{
    display:none;
}
@media (max-width:1100px){
    .desktop-logo{
        display:none !important;
    }
}

.mobile-logo{
    display:none;
}

@media (max-width:1100px){
    .mobile-logo{
        display:block !important;
        width:150px;
        height:auto;
        margin-top:12px;
    }
}
.brand img,
.brand .desktop-logo{
  width:235px !important;
  max-width:235px !important;
  height:auto !important;
  display:block !important;
  object-fit:contain !important;
  object-position:left center !important;
  margin:0 !important;
  padding:0 !important;
  position:relative !important;
  top:0 !important;
  left:0 !important;
  transform:none !important;
  border-radius:0 !important;
  box-shadow:none !important;
  background:transparent !important;
}

.header nav{
  flex:1 !important;
  min-width:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:25px !important;
  position:static !important;
  width:auto !important;
  height:auto !important;
  background:transparent !important;
  border:none !important;
  padding:0 !important;
  margin:0 !important;
  overflow:visible !important;
}

.header nav > a,
.header nav .nav-dropdown > a{
  display:inline-block !important;
  width:auto !important;
  height:auto !important;
  padding:0 !important;
  color:#fff !important;
  text-decoration:none !important;
  background:transparent !important;
  border:none !important;
  font-size:15px !important;
  font-weight:800 !important;
  white-space:nowrap !important;
  position:relative !important;
}

.header nav > a:hover,
.header nav > a.active,
.header nav .nav-dropdown > a:hover,
.header nav .nav-dropdown > a.active{
  color:#ff2d35 !important;
}

.header nav > a:hover::after,
.header nav > a.active::after,
.header nav .nav-dropdown > a:hover::after,
.header nav .nav-dropdown > a.active::after{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  bottom:-16px !important;
  width:100% !important;
  height:2px !important;
  background:#e51c23 !important;
}

.header-social{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  flex-shrink:0 !important;
}

.header-social a{
  width:44px !important;
  height:44px !important;
  min-width:44px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  border-radius:12px !important;
  background:#111827 !important;
  border:1px solid rgba(255,255,255,.09) !important;
  transition:.3s !important;
  overflow:hidden !important;
}

.header-social a:hover{
  transform:translateY(-3px) !important;
  border-color:#ff3030 !important;
  box-shadow:0 0 18px rgba(255,48,48,.35) !important;
}

.header-social img{
  width:22px !important;
  height:22px !important;
  object-fit:contain !important;
  display:block !important;
}

.header .quote-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex-shrink:0 !important;
  margin-left:8px !important;
  padding:15px 24px !important;
  border-radius:10px !important;
  white-space:nowrap !important;
}

.nav-dropdown{
  position:static !important;
  display:flex !important;
  align-items:center !important;
}

.nav-dropdown::after{
  content:"";
  position:fixed;
  top:72px;
  left:0;
  width:100%;
  height:90px;
  display:none;
  z-index:4998;
}

.nav-dropdown:hover::after{
  display:block;
}

.mega-menu{
  position:fixed !important;
  top:92px !important;
  left:0 !important;
  width:100% !important;
  background:#fff !important;
  color:#222 !important;
  display:grid !important;
  grid-template-columns:repeat(6,1fr) !important;
  gap:0 !important;
  padding:42px 5% !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
  transform:translateY(10px) !important;
  transition:opacity .22s ease, transform .22s ease, visibility .22s ease !important;
  z-index:5000 !important;
  box-shadow:0 25px 70px rgba(0,0,0,.25) !important;
  border-top:1px solid rgba(229,28,35,.25) !important;
  border-radius:0 !important;
  max-height:none !important;
  overflow:visible !important;
}

.nav-dropdown:hover .mega-menu,
.mega-menu:hover{
  opacity:1 !important;
  visibility:visible !important;
  pointer-events:auto !important;
  transform:translateY(0) !important;
}

.mega-column{
  padding:0 22px !important;
  border-right:1px solid #e8e8e8 !important;
}

.mega-column:last-child{
  border-right:none !important;
}

.mega-column h3{
  color:#d71920 !important;
  font-size:15px !important;
  font-weight:900 !important;
  margin:0 0 18px !important;
  white-space:nowrap !important;
  line-height:1.25 !important;
}

.mega-column a{
  display:block !important;
  color:#333 !important;
  text-decoration:none !important;
  font-size:14px !important;
  font-weight:700 !important;
  line-height:1.35 !important;
  margin-bottom:13px !important;
  padding:0 !important;
  background:transparent !important;
  transition:.25s !important;
}

.mega-column a:hover{
  color:#e51c23 !important;
  transform:translateX(6px) !important;
}

.mega-column a::after{
  display:none !important;
}

.chat-widget{
  z-index:900 !important;
}

.chat-toggle{
  z-index:901 !important;
}

.mobile-menu-btn,
.mobile-menu-overlay,
.mobile-menu-panel{
  display:none;
}

@media(max-width:1500px){
  .header{
    padding:0 3.2% !important;
    gap:14px !important;
  }

  .brand{
    width:220px !important;
    min-width:220px !important;
  }

  .brand img,
  .brand .desktop-logo{
    width:205px !important;
    max-width:205px !important;
  }

  .header nav{
    gap:20px !important;
  }

  .header nav > a,
  .header nav .nav-dropdown > a{
    font-size:14px !important;
  }

  .header-social a{
    width:40px !important;
    height:40px !important;
    min-width:40px !important;
  }

  .header .quote-btn{
    padding:14px 22px !important;
  }
}

@media(max-width:1250px){
  .header{
    padding:0 2% !important;
  }

  .brand{
    width:190px !important;
    min-width:190px !important;
  }

  .brand img,
  .brand .desktop-logo{
    width:100px !important;
    max-width:100px !important;
  }

  .header nav{
    gap:15px !important;
  }

  .header nav > a,
  .header nav .nav-dropdown > a{
    font-size:13px !important;
  }

  .header .quote-btn{
    padding:13px 18px !important;
    font-size:14px !important;
  }

  .mega-menu{
    grid-template-columns:repeat(3,1fr) !important;
    max-height:calc(100vh - 92px) !important;
    overflow-y:auto !important;
  }

  .mega-column{
    padding:22px !important;
    border-right:none !important;
    border-bottom:1px solid #eee !important;
  }
}

@media(max-width:1100px){
  .header{
    height:76px !important;
    padding:0 5% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
  }

  .brand{
    width:auto !important;
    min-width:0 !important;
    height:76px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    overflow:visible !important;
  }

  .brand a{
    height:76px !important;
    display:flex !important;
    align-items:center !important;
  }

  .desktop-logo{
    display:none !important;
  }

  .mobile-logo{
    display:block !important;
    width:145px !important;
    max-width:145px !important;
    height:auto !important;
    object-fit:contain !important;
    object-position:left center !important;
    margin:0 !important;
    padding:0 !important;
    transform:none !important;
    border-radius:0 !important;
    box-shadow:none !important;
    background:transparent !important;
  }

  .header nav,
  .header-social,
  .header .quote-btn{
    display:none !important;
  }

  .mobile-menu-btn{
    width:48px !important;
    height:48px !important;
    border:1px solid rgba(255,255,255,.12) !important;
    border-radius:14px !important;
    background:rgba(255,255,255,.04) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    flex-direction:column !important;
    gap:6px !important;
    cursor:pointer !important;
    z-index:5001 !important;
  }

  .mobile-menu-btn span{
    width:22px !important;
    height:2px !important;
    background:#fff !important;
    border-radius:20px !important;
    display:block !important;
  }

  .mobile-menu-overlay{
    position:fixed !important;
    inset:0 !important;
    background:rgba(0,0,0,.62) !important;
    backdrop-filter:blur(4px) !important;
    opacity:0 !important;
    visibility:hidden !important;
    z-index:7998 !important;
    display:block !important;
    transition:.3s !important;
  }

  .mobile-menu-overlay.active{
    opacity:1 !important;
    visibility:visible !important;
  }

  .mobile-menu-panel{
    position:fixed !important;
    top:0 !important;
    right:-420px !important;
    width:390px !important;
    max-width:88% !important;
    height:100vh !important;
    background:#fff !important;
    color:#111 !important;
    z-index:7999 !important;
    display:block !important;
    transition:.35s ease !important;
    box-shadow:-25px 0 80px rgba(0,0,0,.35) !important;
    overflow-y:auto !important;
  }

  .mobile-menu-panel.active{
    right:0 !important;
  }

  .mobile-menu-head{
    height:90px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:0 !important;
    margin:0 !important;
    background:#fff !important;
    border-bottom:1px solid #ececec !important;
    position:relative !important;
    overflow:hidden !important;
  }

  .mobile-menu-head img{
    width:145px !important;
    max-width:145px !important;
    height:auto !important;
    display:block !important;
    object-fit:contain !important;
    object-position:center center !important;
    margin:0 auto !important;
    padding:0 !important;
    transform:none !important;
    border-radius:0 !important;
    box-shadow:none !important;
    background:transparent !important;
  }

  .mobile-menu-head button{
    position:absolute !important;
    right:18px !important;
    top:50% !important;
    transform:translateY(-50%) !important;
    width:40px !important;
    height:40px !important;
    border:none !important;
    background:transparent !important;
    color:#111 !important;
    font-size:32px !important;
    line-height:1 !important;
    cursor:pointer !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .mobile-menu-page{
    display:none !important;
  }

  .mobile-menu-page.active{
    display:block !important;
  }

  .mobile-menu-page a,
  .mobile-menu-page > button{
    width:100% !important;
    min-height:56px !important;
    padding:0 22px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    border:none !important;
    border-bottom:1px solid #ececec !important;
    background:#fff !important;
    color:#111 !important;
    text-decoration:none !important;
    font-size:16px !important;
    font-weight:800 !important;
    text-align:left !important;
    cursor:pointer !important;
  }

  .mobile-menu-page a:hover,
  .mobile-menu-page > button:hover{
    color:#e51c23 !important;
    background:#fafafa !important;
  }

  .mobile-menu-page span{
    font-size:24px !important;
  }

  .mobile-sub-head{
    height:64px !important;
    display:grid !important;
    grid-template-columns:52px 1fr 52px !important;
    align-items:center !important;
    border-bottom:1px solid #e8e8e8 !important;
  }

  .mobile-sub-head strong{
    text-align:center !important;
    color:#e51c23 !important;
    font-size:16px !important;
    font-weight:900 !important;
  }

  .mobile-sub-head button{
    border:none !important;
    background:transparent !important;
    color:#111 !important;
    font-size:32px !important;
    line-height:1 !important;
    cursor:pointer !important;
  }

  .mobile-offer-btn{
    margin:22px auto 0 !important;
    width:calc(100% - 44px) !important;
    min-height:54px !important;
    border-radius:14px !important;
    justify-content:center !important;
    background:linear-gradient(135deg,#e51c23,#ff3838) !important;
    color:#fff !important;
    border-bottom:none !important;
    box-shadow:0 16px 34px rgba(229,28,35,.25) !important;
  }

  body.mobile-menu-open{
    overflow:hidden !important;
  }
}

@media(max-width:520px){
  .mobile-logo{
    width:138px !important;
    max-width:138px !important;
  }

  .mobile-menu-panel{
    width:100% !important;
    max-width:100% !important;
  }

  .mobile-menu-head{
    height:88px !important;
  }

  .mobile-menu-head img{
    width:138px !important;
    max-width:138px !important;
  }
}

.blog-mega-menu{
  grid-template-columns:repeat(2,1fr) !important;
  width:720px !important;
  left:auto !important;
  right:260px !important;
  padding:34px 38px !important;
}

.blog-mega-menu .mega-column{
  padding:0 28px !important;
}

@media(max-width:1250px){
  .blog-mega-menu{
    width:100% !important;
    left:0 !important;
    right:auto !important;
    grid-template-columns:repeat(2,1fr) !important;
  }
}

.header .brand{
  width:170px !important;
  min-width:170px !important;
  height:92px !important;
  overflow:hidden !important;
}

.header .brand a{
  width:170px !important;
  height:92px !important;
  display:flex !important;
  align-items:center !important;
  overflow:hidden !important;
}

.header-logo-small{
  width:145px !important;
  max-width:145px !important;
  height:auto !important;
  max-height:58px !important;
  object-fit:contain !important;
  object-position:left center !important;
}

.main-header-logo{
  width:210px !important;
  height:82px !important;
  object-fit:cover !important;
  object-position:center !important;
  display:block !important;
  border-radius:0 !important;
}

.header .brand{
  width:230px !important;
  min-width:230px !important;
  height:92px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  overflow:hidden !important;
}

.header .brand a{
  width:230px !important;
  height:92px !important;
  display:flex !important;
  align-items:center !important;
  overflow:hidden !important;
}

@media(max-width:1100px){
  .main-header-logo{
    width:150px !important;
    height:72px !important;
  }

  .header .brand{
    width:160px !important;
    min-width:160px !important;
    height:82px !important;
  }

  .header .brand a{
    width:160px !important;
    height:82px !important;
  }
}

.blog-content-box{max-width:1050px;margin:55px auto 0;color:#d7d7d7;line-height:1.8;font-size:17px}
.blog-content-box h2{font-size:34px;color:#fff;margin:55px 0 24px}
.blog-content-box .faq-accordion{margin-top:30px}
.blog-detail-section .product-feature-grid{margin-top:35px}
@media(max-width:700px){.blog-content-box{font-size:15px}.blog-content-box h2{font-size:27px}}

.blog-content-box{
  max-width:1050px;
  margin:55px auto 0;
  color:#d7d7d7;
  line-height:1.8;
  font-size:17px;
}

.blog-content-box h2{
  font-size:34px;
  color:#fff;
  margin:55px 0 24px;
}

.blog-content-box .faq-accordion{
  margin-top:30px;
}

.blog-content-box .product-feature-grid{
  margin-top:35px;
}

.blog-detail-image{
  margin:32px 0 0;
  max-width:780px;
}

.blog-detail-image img{
  width:100%;
  display:block;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  background:#fff;
}

.pricing-wrapper{
  width:86%;
  margin:100px auto;
  padding:0;
}

.packages-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:26px;
  margin-top:50px;
}

.package-card{
  min-height:420px;
  background:linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.10);
  border-radius:26px;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  position:relative;
  overflow:hidden;
  transition:.35s;
}

.package-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:radial-gradient(circle at top right,rgba(229,28,35,.22),transparent 38%);
  opacity:.8;
  pointer-events:none;
}

.package-card:hover{
  transform:translateY(-10px);
  border-color:rgba(229,28,35,.65);
  box-shadow:0 28px 75px rgba(229,28,35,.18);
}

.package-icon{
  width:76px;
  height:76px;
  border-radius:22px;
  background:rgba(229,28,35,.12);
  border:1px solid rgba(229,28,35,.45);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:28px;
  position:relative;
  z-index:2;
}

.package-icon i{
  font-size:34px;
  color:#ff333b;
}

.package-content{
  position:relative;
  z-index:2;
}

.package-content h3{
  font-size:26px;
  margin-bottom:18px;
  color:#fff;
}

.package-content p{
  color:#c9c9c9;
  line-height:1.8;
  font-size:16px;
}

.package-price{
  display:block;
  margin-top:20px;
  color:#ff3838;
  font-size:22px;
}

.package-btn{
  position:relative;
  z-index:2;
  margin-top:30px;
  width:100%;
  display:block;
  text-align:center;
  padding:16px 20px;
  border-radius:14px;
  background:linear-gradient(135deg,#e51c23,#ff3838);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 18px 40px rgba(229,28,35,.30);
  transition:.3s;
}

.package-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 55px rgba(229,28,35,.45);
}

@media(max-width:768px){
  .pricing-wrapper{
    width:90%;
    margin:70px auto;
  }

  .package-card{
    min-height:auto;
    padding:28px;
  }
}

.mega-menu{
  left:50% !important;
  transform:translateX(-50%) !important;
  width:min(1180px,92vw) !important;
  padding:34px 38px !important;
  display:grid !important;
  grid-template-columns:repeat(3,1fr) !important;
  gap:26px 32px !important;
}

.mega-column{
  padding:0 18px !important;
  border-right:1px solid #e5e5e5;
}

.mega-column:nth-child(3n){
  border-right:none !important;
}

.mega-column h3{
  font-size:17px !important;
  margin-bottom:16px !important;
  white-space:normal !important;
}

.mega-column a{
  font-size:16px !important;
  margin-bottom:13px !important;
  line-height:1.35 !important;
}

@media(max-width:1100px){
  .mega-menu{
    display:none !important;
  }
}

.mega-menu{

    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);

    width:95%;
    max-width:1500px;

    display:flex;
    flex-wrap:nowrap;
    justify-content:flex-start;
    align-items:flex-start;
    gap:35px;

    padding:35px;

    background:#fff;

    border-radius:0 0 18px 18px;

    box-shadow:0 20px 60px rgba(0,0,0,.18);

    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:999;
}

.has-mega-menu:hover .mega-menu{

    opacity:1;
    visibility:visible;

}

.mega-column{

    flex:1;
    min-width:180px;

    padding:0 18px;

    border-right:1px solid #ececec;

}

.mega-column:last-child{

    border-right:none;

}

.mega-column h3{

    color:#e11d2e;

    font-size:30px;

    font-weight:700;

    margin-bottom:22px;

    text-transform:uppercase;

}

.mega-column ul{

    list-style:none;

    padding:0;

    margin:0;

}

.mega-column li{

    margin-bottom:16px;

}

.mega-column a{

    color:#333;

    font-size:24px;

    font-weight:600;

    text-decoration:none;

    transition:.25s;

    display:flex;
    align-items:center;
    gap:8px;

}

.mega-column a::before{

    content:"›";

    color:#111;

    font-size:24px;

}

.mega-column a:hover{

    color:#e11d2e;

    transform:translateX(5px);

}

.header .mega-menu{
  position:fixed !important;
  top:92px !important;
  left:50% !important;
  transform:translate(-50%,10px) !important;
  width:min(1380px,92vw) !important;
  max-height:calc(100vh - 120px) !important;
  overflow-y:auto !important;
  background:#fff !important;
  color:#222 !important;
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:0 !important;
  padding:34px 38px !important;
  border-radius:0 0 18px 18px !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
  transition:opacity .22s ease, transform .22s ease, visibility .22s ease !important;
  z-index:5000 !important;
  box-shadow:0 25px 70px rgba(0,0,0,.25) !important;
  border-top:1px solid rgba(229,28,35,.18) !important;
}

.header .nav-dropdown:hover .mega-menu,
.header .mega-menu:hover{
  opacity:1 !important;
  visibility:visible !important;
  pointer-events:auto !important;
  transform:translate(-50%,0) !important;
}

.header .mega-column{
  min-height:160px !important;
  padding:0 30px 24px !important;
  border-right:1px solid #e8e8e8 !important;
  border-bottom:1px solid #eeeeee !important;
}

.header .mega-column:nth-child(4n){
  border-right:none !important;
}

.header .mega-column:nth-last-child(-n+4){
  border-bottom:none !important;
}

.header .mega-column h3{
  color:#d71920 !important;
  font-size:17px !important;
  font-weight:900 !important;
  margin:0 0 18px !important;
  letter-spacing:1.4px !important;
  text-transform:uppercase !important;
  white-space:normal !important;
  line-height:1.25 !important;
}

.header .mega-column a{
  display:block !important;
  color:#333 !important;
  text-decoration:none !important;
  font-size:15px !important;
  font-weight:700 !important;
  line-height:1.35 !important;
  margin-bottom:13px !important;
  padding:0 !important;
  background:transparent !important;
  transition:.25s !important;
}

.header .mega-column a:hover{
  color:#e51c23 !important;
  transform:translateX(6px) !important;
}

.header .mega-column a::after{
  display:none !important;
}

.blog-mega-menu{
  width:min(620px,92vw) !important;
  grid-template-columns:1fr !important;
  left:50% !important;
}

.blog-mega-menu .mega-column{
  border-right:none !important;
  border-bottom:none !important;
}

@media(max-width:1250px){
  .header .mega-menu{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    width:94vw !important;
    padding:28px !important;
  }

  .header .mega-column:nth-child(4n){
    border-right:1px solid #e8e8e8 !important;
  }

  .header .mega-column:nth-child(3n){
    border-right:none !important;
  }

  .header .mega-column:nth-last-child(-n+4){
    border-bottom:1px solid #eeeeee !important;
  }

  .header .mega-column:nth-last-child(-n+3){
    border-bottom:none !important;
  }
}

@media(max-width:1100px){
  .header .mega-menu{
    display:none !important;
  }
}

/* HAKKIMIZDA SAYFASI */
.page-hero{
  min-height:430px;
  padding:150px 8% 80px;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at right, rgba(229,28,35,.32), transparent 34%),
    linear-gradient(135deg,#05070b,#090d13);
}

.page-hero span{
  display:inline-block;
  color:#ff3838;
  font-weight:900;
  letter-spacing:2px;
  margin-bottom:18px;
}

.page-hero h1{
  font-size:64px;
  line-height:1.05;
  margin-bottom:22px;
}

.page-hero p{
  max-width:760px;
  color:#d2d2d2;
  font-size:19px;
  line-height:1.8;
}

.about-page-section{
  width:86%;
  margin:80px auto;
}

.about-page-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.about-page-card{
  background:linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.10);
  border-radius:26px;
  padding:34px;
  transition:.35s;
}

.about-page-card:hover{
  transform:translateY(-8px);
  border-color:rgba(229,28,35,.55);
  box-shadow:0 28px 75px rgba(229,28,35,.15);
}

.about-page-card h2{
  font-size:30px;
  margin-bottom:18px;
  color:#fff;
}

.about-page-card p{
  color:#cfcfcf;
  line-height:1.85;
  font-size:16px;
}

.about-card-image{
  margin-bottom:22px;
  border-radius:20px;
  overflow:hidden;
}

.about-card-image img{
  width:100%;
  display:block;
  border-radius:20px;
}

@media(max-width:900px){
  .about-page-grid{
    grid-template-columns:1fr;
  }

  .page-hero h1{
    font-size:44px;
  }
}

.references-page-section{width:86%;margin:80px auto;}
.references-page-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:26px;}
.reference-page-card{background:linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.025));border:1px solid rgba(255,255,255,.10);border-radius:26px;padding:34px;text-align:center;transition:.35s;}
.reference-page-card:hover{transform:translateY(-8px);border-color:rgba(229,28,35,.55);box-shadow:0 28px 75px rgba(229,28,35,.15);}
.reference-logo-box{width:120px;height:120px;border-radius:24px;background:#fff;margin:0 auto 24px;display:flex;align-items:center;justify-content:center;overflow:hidden;}
.reference-logo-box img{width:100%;height:100%;object-fit:contain;padding:16px;}
.reference-logo-box span{color:#e51c23;font-size:48px;font-weight:900;}
.reference-page-card h2{font-size:26px;margin-bottom:14px;}
.reference-page-card p{color:#cfcfcf;line-height:1.75;margin-bottom:22px;}

.contact-page-hero{
  min-height:390px;
  padding:145px 8% 75px;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at right, rgba(229,28,35,.32), transparent 34%),
    linear-gradient(135deg,#05070b,#090d13);
}

.contact-page-hero span{
  display:inline-block;
  color:#ff3838;
  font-weight:900;
  letter-spacing:2px;
  margin-bottom:18px;
}

.contact-page-hero h1{
  font-size:64px;
  line-height:1.05;
  margin-bottom:22px;
}

.contact-page-hero p{
  max-width:760px;
  color:#d2d2d2;
  font-size:19px;
  line-height:1.8;
}

.contact-main-section{
  width:86%;
  margin:70px auto 100px;
}

.contact-top-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:stretch;
}

.offer-main-box,
.contact-map-box,
.contact-info-card{
  background:linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.10);
  border-radius:26px;
  box-shadow:0 28px 75px rgba(0,0,0,.22);
}

.offer-main-box{
  padding:38px;
}

.offer-main-box span{
  color:#ff3838;
  font-weight:900;
  letter-spacing:2px;
  font-size:13px;
}

.offer-main-box h2{
  font-size:42px;
  margin:14px 0;
}

.offer-main-box p{
  color:#cfcfcf;
  line-height:1.75;
  margin-bottom:24px;
}

.contact-offer-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.contact-offer-form input,
.contact-offer-form textarea,
.contact-offer-form select{
  width:100%;
  background:#05070b;
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  border-radius:14px;
  padding:15px 16px;
  font-size:15px;
  outline:none;
}

.contact-offer-form textarea{
  grid-column:1 / -1;
  min-height:150px;
  resize:vertical;
}

.contact-offer-form button{
  grid-column:1 / -1;
  border:none;
  cursor:pointer;
  background:linear-gradient(135deg,#e51c23,#ff3838);
  color:#fff;
  padding:16px 24px;
  border-radius:14px;
  font-weight:900;
  font-size:16px;
  box-shadow:0 18px 45px rgba(229,28,35,.32);
}

.contact-success{
  background:rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.35);
  color:#86efac;
  padding:14px 16px;
  border-radius:14px;
  margin-bottom:18px;
  font-weight:800;
}

.contact-map-box{
  overflow:hidden;
  min-height:520px;
}

.contact-map-box iframe{
  width:100%;
  height:100%;
  min-height:520px;
  border:0;
  display:block;
}

.map-placeholder{
  height:100%;
  min-height:520px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:30px;
}

.map-placeholder h3{
  font-size:32px;
  margin-bottom:12px;
  color:#ff3838;
}

.map-placeholder p{
  color:#cfcfcf;
}

.contact-info-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:30px;
}

.contact-info-card{
  padding:28px;
  transition:.35s;
}

.contact-info-card:hover{
  transform:translateY(-8px);
  border-color:rgba(229,28,35,.55);
  box-shadow:0 24px 60px rgba(229,28,35,.12);
}

.contact-info-card b{
  display:block;
  color:#ff3838;
  font-size:18px;
  margin-bottom:12px;
}

.contact-info-card p{
  color:#d2d2d2;
  line-height:1.65;
}

@media(max-width:1000px){
  .contact-top-grid,
  .contact-info-grid{
    grid-template-columns:1fr;
  }

  .contact-page-hero h1{
    font-size:44px;
  }

  .contact-offer-form{
    grid-template-columns:1fr;
  }
}

.contact-map-box iframe{
  width:100% !important;
  height:520px !important;
  min-height:520px !important;
  border:0 !important;
  display:block !important;
}


.services-page-section{width:86%;margin:80px auto 100px;}
.services-page-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:28px;}
.service-page-card{min-height:430px;background:linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.025));border:1px solid rgba(255,255,255,.10);border-radius:28px;padding:36px;display:flex;flex-direction:column;transition:.35s;position:relative;overflow:hidden;}
.service-page-card::before{content:"";position:absolute;inset:-1px;background:radial-gradient(circle at top right,rgba(229,28,35,.20),transparent 38%);pointer-events:none;}
.service-page-card:hover{transform:translateY(-10px);border-color:rgba(229,28,35,.60);box-shadow:0 28px 75px rgba(229,28,35,.16);}
.service-page-icon{width:76px;height:76px;border-radius:22px;background:rgba(229,28,35,.12);border:1px solid rgba(229,28,35,.45);display:flex;align-items:center;justify-content:center;margin-bottom:26px;position:relative;z-index:2;}
.service-page-icon i{color:#ff3838;font-size:34px;}
.service-page-card h2{font-size:28px;margin-bottom:16px;color:#fff;position:relative;z-index:2;}
.service-page-card p{color:#cfcfcf;line-height:1.75;margin-bottom:18px;position:relative;z-index:2;}
.service-page-card .service-short{color:#fff;font-weight:700;}
.service-page-card .primary-btn{margin-top:auto;width:max-content;position:relative;z-index:2;}
@media(max-width:900px){.service-page-card{min-height:auto;}}

.projects-page-section{
  width:86%;
  margin:80px auto 100px;
}

.projects-page-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:28px;
}

.project-page-card{
  background:linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.10);
  border-radius:28px;
  overflow:hidden;
  transition:.35s;
  position:relative;
}

.project-page-card:hover{
  transform:translateY(-10px);
  border-color:rgba(229,28,35,.60);
  box-shadow:0 28px 75px rgba(229,28,35,.16);
}

.project-page-image{
  height:230px;
  background:#10141d;
  overflow:hidden;
}

.project-page-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.4s;
}

.project-page-card:hover .project-page-image img{
  transform:scale(1.06);
}

.project-page-body{
  padding:34px;
}

.project-page-body > span{
  display:inline-block;
  color:#ff3838;
  font-weight:900;
  letter-spacing:1.5px;
  font-size:12px;
  margin-bottom:16px;
  text-transform:uppercase;
}

.project-page-body h2{
  font-size:28px;
  margin-bottom:16px;
  color:#fff;
}

.project-page-body p{
  color:#cfcfcf;
  line-height:1.75;
  margin-bottom:20px;
}

.project-tech-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:28px;
}

.project-tech-tags small{
  background:rgba(229,28,35,.12);
  border:1px solid rgba(229,28,35,.35);
  color:#ffb4b4;
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
}

.project-page-body .primary-btn{
  display:inline-block;
  text-decoration:none;
}

.blog-list-section{
  width:86%;
  margin:80px auto 100px;
}

.blog-card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
  gap:30px;
  margin-top:42px;
}

.blog-card-modern{
  background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.11);
  border-radius:30px;
  overflow:hidden;
  transition:.35s;
  box-shadow:0 22px 65px rgba(0,0,0,.18);
}

.blog-card-modern:hover{
  transform:translateY(-10px);
  border-color:rgba(229,28,35,.60);
  box-shadow:0 28px 75px rgba(229,28,35,.16);
}

.blog-card-image{
  height:235px;
  background:#111722;
  overflow:hidden;
}

.blog-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.blog-image-placeholder{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:radial-gradient(circle,rgba(229,28,35,.28),transparent 45%),#10141d;
}

.blog-image-placeholder span{
  color:#ff3838;
  font-size:48px;
  font-weight:900;
}

.blog-card-content{
  padding:32px;
}

.blog-category{
  color:#ff3838;
  font-size:12px;
  font-weight:900;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:16px;
  display:inline-block;
}

.blog-card-content h3{
  color:#fff;
  font-size:27px;
  line-height:1.25;
  margin-bottom:16px;
}

.blog-card-content p{
  color:#cfcfcf;
  line-height:1.75;
  margin-bottom:28px;
}

.blog-read-btn{
  display:inline-flex;
  background:linear-gradient(135deg,#e51c23,#ff3838);
  color:#fff;
  text-decoration:none;
  padding:14px 22px;
  border-radius:14px;
  font-weight:900;
}

.customer-review-section{
    width:100%;
    max-width:1200px;
    margin:100px auto;
    padding:60px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.customer-review-section .section-head{
    width:100%;
    text-align:center;
    margin-bottom:50px;
}

.review-submit-box{
    width:100%;
    max-width:850px;
    margin:0 auto;
    padding:40px;
    border-radius:25px;
    background:#11141d;
    border:1px solid rgba(255,255,255,.08);
}

.review-submit-box h3{
    text-align:center;
    margin-bottom:10px;
}

.review-submit-box p{
    text-align:center;
    margin-bottom:30px;
    color:#bfbfbf;
}

.review-form{
    width:100%;
}

.review-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.review-form input,
.review-form textarea{
    width:100%;
    padding:16px 20px;
    background:#0b0d13;
    border:1px solid rgba(255,255,255,.12);
    border-radius:14px;
    color:#fff;
    font-size:16px;
}

.review-form textarea{
    min-height:180px;
    margin-top:20px;
}

.star-rating{
    display:flex;
    justify-content:center;
    gap:10px;
    margin:25px 0;
}

.star-rating span{
    font-size:38px;
    cursor:pointer;
}

.review-form button{
    display:block;
    margin:30px auto 0;
    padding:16px 40px;
    background:#e51c23;
    color:#fff;
    border:none;
    border-radius:14px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.review-form button:hover{
    background:#ff3038;
    transform:translateY(-2px);
}

@media(max-width:768px){

    .customer-review-section{
        padding:30px;
    }

    .review-form-row{
        grid-template-columns:1fr;
    }

}

.logo-solutions-section{
  width:86%;
  margin:80px auto 110px;
}

.logo-category-block{
  margin-bottom:80px;
}

.logo-category-head{
  margin-bottom:34px;
}

.logo-products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:28px;
}

.logo-product-card{
  min-height:330px;
  position:relative;
  overflow:hidden;
  background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.11);
  border-radius:30px;
  padding:34px;
  display:flex;
  flex-direction:column;
  transition:.35s;
  box-shadow:0 22px 65px rgba(0,0,0,.18);
}

.logo-product-card:hover{
  transform:translateY(-10px);
  border-color:rgba(229,28,35,.60);
  box-shadow:0 28px 75px rgba(229,28,35,.16);
}

.logo-product-glow{
  position:absolute;
  width:180px;
  height:180px;
  right:-60px;
  top:-60px;
  background:radial-gradient(circle,rgba(229,28,35,.28),transparent 65%);
  pointer-events:none;
}

.logo-product-label{
  width:max-content;
  color:#ff3838;
  background:rgba(229,28,35,.12);
  border:1px solid rgba(229,28,35,.35);
  padding:8px 13px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:18px;
  position:relative;
  z-index:2;
}

.logo-product-card h3{
  color:#fff;
  font-size:28px;
  line-height:1.24;
  margin-bottom:16px;
  position:relative;
  z-index:2;
}

.logo-product-card p{
  color:#cfcfcf;
  line-height:1.75;
  margin-bottom:28px;
  position:relative;
  z-index:2;
}

.logo-product-btn{
  margin-top:auto;
  width:max-content;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#e51c23,#ff3838);
  color:#fff;
  text-decoration:none;
  padding:14px 22px;
  border-radius:14px;
  font-weight:900;
  box-shadow:0 16px 42px rgba(229,28,35,.30);
  transition:.3s;
  position:relative;
  z-index:2;
}

.logo-product-btn:hover{
  transform:translateX(5px);
  box-shadow:0 20px 52px rgba(229,28,35,.42);
}

@media(max-width:850px){
  .logo-solutions-section{
    width:90%;
  }

  .logo-product-card{
    min-height:auto;
  }
}

.header nav a {
    font-size: 14px !important; 
    padding: 0 0px !important; 
}


.header {
    gap: 15px !important; 
}

.blog-sidebar a.active{
  color:#e51c23 !important;
  font-weight:900;
}

.blog-detail-hero{
  min-height:430px;
  padding:150px 8% 80px;
  background:
    radial-gradient(circle at right, rgba(229,28,35,.26), transparent 38%),
    linear-gradient(135deg,#05070b,#080b10);
  display:flex;
  align-items:center;
}

.blog-detail-hero span{
  display:inline-block;
  color:#ff3838;
  font-weight:900;
  letter-spacing:2px;
  margin-bottom:18px;
  text-transform:uppercase;
}

.blog-detail-hero h1{
  max-width:1050px;
  font-size:72px;
  line-height:1.05;
  color:#fff;
  margin-bottom:24px;
}

.blog-detail-hero p{
  max-width:900px;
  color:#d0d0d0;
  line-height:1.8;
  font-size:18px;
}

.blog-detail-clean-layout{
  width:86%;
  margin:80px auto;
  display:grid;
  grid-template-columns:320px 1fr;
  gap:38px;
  align-items:start;
}

.blog-detail-sidebar{
  position:sticky;
  top:120px;
  background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.11);
  border-radius:26px;
  padding:30px;
}

.blog-detail-sidebar h3{
  color:#ff3838;
  font-size:18px;
  letter-spacing:2px;
  margin-bottom:24px;
}

.blog-detail-sidebar a{
  display:block;
  color:#e5e5e5;
  text-decoration:none;
  font-weight:800;
  line-height:1.45;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:.25s;
}

.blog-detail-sidebar a:hover,
.blog-detail-sidebar a.active{
  color:#ff3838;
  transform:translateX(6px);
}

.blog-detail-content{
  min-width:0;
}

.blog-detail-main-image{
  width:100%;
  max-height:420px;
  border-radius:26px;
  overflow:hidden;
  margin-bottom:34px;
  border:1px solid rgba(255,255,255,.12);
}

.blog-detail-main-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.blog-detail-card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:26px;
}

.blog-detail-card{
  background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.11);
  border-radius:26px;
  padding:34px;
  transition:.35s;
}

.blog-detail-card:hover{
  transform:translateY(-8px);
  border-color:rgba(229,28,35,.55);
  box-shadow:0 24px 60px rgba(229,28,35,.14);
}

.blog-detail-card h3{
  color:#fff;
  font-size:26px;
  line-height:1.25;
  margin-bottom:18px;
}

.blog-detail-card p{
  color:#d0d0d0;
  line-height:1.8;
  font-size:17px;
}

@media(max-width:1000px){
  .blog-detail-clean-layout{
    grid-template-columns:1fr;
  }

  .blog-detail-sidebar{
    position:relative;
    top:auto;
  }

  .blog-detail-hero h1{
    font-size:46px;
  }
}

.projects-page-section{width:86%;margin:80px auto 110px}.projects-page-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:28px}.project-page-card{background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));border:1px solid rgba(255,255,255,.11);border-radius:30px;overflow:hidden;transition:.35s;box-shadow:0 22px 65px rgba(0,0,0,.18)}.project-page-card:hover{transform:translateY(-10px);border-color:rgba(229,28,35,.60);box-shadow:0 28px 75px rgba(229,28,35,.16)}.project-page-image{height:235px;background:#111722;overflow:hidden}.project-page-image img{width:100%;height:100%;object-fit:cover;display:block;transition:.45s}.project-page-card:hover .project-page-image img{transform:scale(1.07)}.project-image-placeholder{height:100%;display:flex;align-items:center;justify-content:center;background:radial-gradient(circle at center,rgba(229,28,35,.28),transparent 45%),linear-gradient(135deg,#111722,#05070b)}.project-image-placeholder span{color:#ff3838;font-size:48px;font-weight:950;letter-spacing:3px}.project-page-body{padding:34px}.project-page-body>span{display:inline-block;color:#ff3838;font-weight:900;letter-spacing:1.5px;font-size:12px;margin-bottom:16px;text-transform:uppercase}.project-page-body h2{font-size:28px;color:#fff;line-height:1.25;margin-bottom:16px}.project-page-body p{color:#cfcfcf;line-height:1.75;margin-bottom:22px}.project-tech-tags{display:flex;flex-wrap:wrap;gap:10px}.project-tech-tags small{background:rgba(229,28,35,.12);border:1px solid rgba(229,28,35,.35);color:#ffb4b4;padding:8px 12px;border-radius:999px;font-weight:800;font-size:12px}


.blog-list-section{
  width:86%;
  margin:80px auto 100px;
}

.blog-card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
  gap:30px;
  margin-top:42px;
}

.blog-card-modern{
  background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.11);
  border-radius:30px;
  overflow:hidden;
  transition:.35s;
  box-shadow:0 22px 65px rgba(0,0,0,.18);
}

.blog-card-modern:hover{
  transform:translateY(-10px);
  border-color:rgba(229,28,35,.60);
  box-shadow:0 28px 75px rgba(229,28,35,.16);
}

.blog-card-image{
  height:235px;
  background:#111722;
  overflow:hidden;
}

.blog-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.45s;
}

.blog-card-modern:hover .blog-card-image img{
  transform:scale(1.07);
}

.blog-image-placeholder{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:radial-gradient(circle at center,rgba(229,28,35,.28),transparent 45%),linear-gradient(135deg,#111722,#05070b);
}

.blog-image-placeholder span{
  font-size:48px;
  font-weight:950;
  letter-spacing:3px;
  color:#ff3838;
}

.blog-card-content{
  padding:32px;
}

.blog-category{
  display:inline-flex;
  color:#ff3838;
  font-size:12px;
  font-weight:950;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:16px;
}

.blog-card-content h3{
  color:#fff;
  font-size:27px;
  line-height:1.22;
  margin-bottom:16px;
}

.blog-card-content p{
  color:#cfcfcf;
  line-height:1.75;
  margin-bottom:28px;
}

.blog-read-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#e51c23,#ff3838);
  color:#fff;
  text-decoration:none;
  padding:14px 22px;
  border-radius:14px;
  font-weight:900;
  box-shadow:0 16px 42px rgba(229,28,35,.30);
  transition:.3s;
}

.blog-read-btn:hover{
  transform:translateX(5px);
  box-shadow:0 20px 52px rgba(229,28,35,.42);
}

.empty-blog-box{
  grid-column:1/-1;
  padding:55px;
  border-radius:30px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  text-align:center;
}

.customer-review-section{
  width:86%;
  margin:80px auto 120px;
  padding:48px;
  border-radius:32px;
  background:radial-gradient(circle at right,rgba(229,28,35,.16),transparent 35%),linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  border:1px solid rgba(255,255,255,.10);
}

.review-modern-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
  gap:24px;
  margin-top:42px;
}

.review-modern-card{
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  padding:28px;
  transition:.35s;
}

.review-stars{
  color:#FFD700;
  font-size:22px;
  margin-bottom:18px;
}

.review-modern-card p{
  color:#d4d4d4;
  line-height:1.75;
  margin-bottom:22px;
}

.review-submit-box{
  max-width:920px;
  margin:50px auto 0;
  padding:36px;
  background:#10141d;
  border:1px solid rgba(255,255,255,.12);
  border-radius:28px;
}

.review-form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.review-form input,
.review-form textarea{
  width:100%;
  background:#05070b;
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  border-radius:14px;
  padding:15px 16px;
  font-size:15px;
  outline:none;
}

.review-form textarea{
  min-height:150px;
  resize:vertical;
  margin-top:16px;
}

.star-rating{
  margin:18px 0;
}

.star-rating span{
  font-size:30px;
  cursor:pointer;
  transition:.25s;
}

.review-form button{
  margin-top:18px;
  border:none;
  cursor:pointer;
  background:linear-gradient(135deg,#e51c23,#ff3838);
  color:#fff;
  padding:16px 24px;
  border-radius:14px;
  font-weight:900;
  font-size:16px;
  box-shadow:0 18px 45px rgba(229,28,35,.32);
}

/* BLOG DETAY */
.blog-detail-hero{
  min-height:430px;
  padding:150px 8% 80px;
  background:radial-gradient(circle at right, rgba(229,28,35,.26), transparent 38%),linear-gradient(135deg,#05070b,#080b10);
  display:flex;
  align-items:center;
}

.blog-detail-hero span{
  display:inline-block;
  color:#ff3838;
  font-weight:900;
  letter-spacing:2px;
  margin-bottom:18px;
  text-transform:uppercase;
}

.blog-detail-hero h1{
  max-width:1050px;
  font-size:72px;
  line-height:1.05;
  color:#fff;
  margin-bottom:24px;
}

.blog-detail-hero p{
  max-width:900px;
  color:#d0d0d0;
  line-height:1.8;
  font-size:18px;
}

.blog-detail-clean-layout{
  width:86%;
  margin:80px auto;
  display:grid;
  grid-template-columns:320px 1fr;
  gap:38px;
  align-items:start;
}

.blog-detail-sidebar{
  position:sticky;
  top:120px;
  background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.11);
  border-radius:26px;
  padding:30px;
}

.blog-detail-sidebar h3{
  color:#ff3838;
  font-size:18px;
  letter-spacing:2px;
  margin-bottom:24px;
}

.blog-detail-sidebar a{
  display:block;
  color:#e5e5e5;
  text-decoration:none;
  font-weight:800;
  line-height:1.45;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:.25s;
}

.blog-detail-sidebar a:hover,
.blog-detail-sidebar a.active{
  color:#ff3838;
  transform:translateX(6px);
}

.blog-detail-content{
  min-width:0;
}

.blog-detail-main-image{
  width:100%;
  max-height:420px;
  border-radius:26px;
  overflow:hidden;
  margin-bottom:34px;
  border:1px solid rgba(255,255,255,.12);
}

.blog-detail-main-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.blog-detail-card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:26px;
}

.blog-detail-card,
.blog-detail-empty{
  background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.11);
  border-radius:26px;
  padding:34px;
  transition:.35s;
}

.blog-detail-card:hover{
  transform:translateY(-8px);
  border-color:rgba(229,28,35,.55);
  box-shadow:0 24px 60px rgba(229,28,35,.14);
}

.blog-detail-card h3,
.blog-detail-empty h3{
  color:#fff;
  font-size:26px;
  line-height:1.25;
  margin-bottom:18px;
}

.blog-detail-card p,
.blog-detail-empty p{
  color:#d0d0d0;
  line-height:1.8;
  font-size:17px;
}

.blog-detail-navigation{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:34px;
}

.blog-detail-navigation a{
  display:block;
  padding:18px;
  border-radius:16px;
  text-decoration:none;
  color:#fff;
  font-weight:900;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.11);
}

.blog-detail-navigation a:last-child{
  text-align:right;
}

@media(max-width:1000px){
  .blog-detail-clean-layout{
    grid-template-columns:1fr;
  }

  .blog-detail-sidebar{
    position:relative;
    top:auto;
  }

  .blog-detail-hero h1{
    font-size:46px;
  }

  .review-form-row{
    grid-template-columns:1fr;
  }
}


.map-click-link{
  display:block;
  width:100%;
  height:100%;
}

.map-click-link iframe{
  pointer-events:none;
}

.contact-offer-form input,
.contact-offer-form textarea,
.review-form input,
.review-form textarea{
  -webkit-text-fill-color:#fff !important;
  caret-color:#fff !important;
}

.contact-offer-form input:-webkit-autofill,
.contact-offer-form input:-webkit-autofill:hover,
.contact-offer-form input:-webkit-autofill:focus,
.review-form input:-webkit-autofill,
.review-form input:-webkit-autofill:hover,
.review-form input:-webkit-autofill:focus{
  -webkit-text-fill-color:#fff !important;
  box-shadow:0 0 0 1000px #05070b inset !important;
  transition:background-color 9999s ease-in-out 0s !important;
}

.map-click-link{
  display:block;
  width:100%;
  height:100%;
}

.map-click-link iframe{
  pointer-events:none;
}

.contact-offer-form input,
.contact-offer-form textarea,
.review-form input,
.review-form textarea{
  -webkit-text-fill-color:#fff !important;
  caret-color:#fff !important;
}

.contact-offer-form input:-webkit-autofill,
.contact-offer-form input:-webkit-autofill:hover,
.contact-offer-form input:-webkit-autofill:focus,
.review-form input:-webkit-autofill,
.review-form input:-webkit-autofill:hover,
.review-form input:-webkit-autofill:focus{
  -webkit-text-fill-color:#fff !important;
  box-shadow:0 0 0 1000px #05070b inset !important;
  transition:background-color 9999s ease-in-out 0s !important;
}

.map-click-link{
  display:block;
  width:100%;
  height:100%;
}

.map-click-link iframe{
  pointer-events:none;
}

.clean-contact-hero p,
.contact-page-hero > p{
  display:none !important;
}

.blog-detail-main-image,
.blog-detail-image,
.product-detail-image{
  width:100% !important;
  height:auto !important;
  max-height:none !important;
  overflow:hidden !important;
  border-radius:24px !important;
  background:#fff !important;
  padding:12px !important;
}

.blog-detail-main-image img,
.blog-detail-image img,
.product-detail-image img{
  width:100% !important;
  height:auto !important;
  max-height:none !important;
  object-fit:contain !important;
  display:block !important;
  border-radius:18px !important;
}

.blog-detail-card-grid,
.product-feature-grid{
  grid-template-columns: 1fr !important;
}

.mega-menu {

    border-top: 20px solid transparent; 
    margin-top: -20px; 
}

.mega-menu {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;

    border-top: 35px solid transparent; 
    margin-top: -35px; 
}

.menu-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.menu-tab-btn.active {
    color: #ff0000; 
    font-weight: bold;
}