/* Nova Muhendislik redesign layer */
:root {
  --nova-navy: #07111f;
  --nova-navy-2: #0b1b2f;
  --nova-blue: #00a8ff;
  --nova-blue-2: #0878d8;
  --nova-orange: #ff7a00;
  --nova-orange-2: #ff9a2d;
  --nova-white: #ffffff;
  --nova-muted: #a9b4c3;
  --nova-line: rgba(255, 255, 255, 0.15);
  --nova-dark-line: #e4e9f1;
  --nova-soft: #f5f8fc;
  --nova-text: #142033;
  --nova-radius: 8px;
  --nova-shadow: 0 18px 45px rgba(3, 12, 26, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', 'Hind', Arial, sans-serif;
  color: var(--nova-text);
  background: var(--nova-white);
}

h1,
h2,
h3,
h4,
h5,
h6,
.sec-title h1 {
  font-family: 'Sora', 'Poppins', Arial, sans-serif;
  letter-spacing: 0;
}

.nova-site-shell {
  background: var(--nova-white);
}

.nova-site-shell .container,
.nova-hero .container {
  max-width: 1220px;
  width: 100%;
}

.nova-topbar {
  background: #06101e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #c8d2df;
  font-size: 13px;
}

.nova-topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nova-topbar__left,
.nova-topbar__right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.nova-topbar a,
.nova-topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
}

.nova-topbar i {
  color: var(--nova-orange);
}

.nova-header {
  position: sticky;
  top: 0;
  z-index: 950;
  background: rgba(7, 17, 31, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.nova-header.is-scrolled {
  background: rgba(7, 17, 31, 0.98);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.nova-nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.nova-nav__logo img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.nova-nav__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex: 1;
}

.nova-nav__links,
.nova-nav__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nova-nav__links > li {
  position: relative;
}

.nova-nav__links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 13px;
  color: #e8eef7;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--nova-radius);
  transition: color 0.2s ease, background 0.2s ease;
}

.nova-nav__links > li > a:hover,
.nova-nav__links > li > a.active {
  color: var(--nova-blue);
  background: rgba(0, 168, 255, 0.1);
}

.nova-nav__dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  min-width: 220px;
  padding: 8px;
  background: #091527;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--nova-radius);
  box-shadow: var(--nova-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.has-submenu:hover .nova-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nova-nav__dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #dbe7f7;
  font-size: 13px;
  font-weight: 600;
}

.nova-nav__dropdown a:hover {
  background: rgba(0, 168, 255, 0.12);
  color: var(--nova-blue);
}

.nova-nav__call,
.nova-nav__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--nova-radius);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nova-nav__call {
  border: 1px solid var(--nova-orange);
  color: #fff;
}

.nova-nav__whatsapp {
  background: var(--nova-blue);
  border: 1px solid var(--nova-blue);
}

.nova-nav__call:hover,
.nova-nav__whatsapp:hover {
  color: #fff;
  transform: translateY(-1px);
}

.nova-nav__call:hover {
  background: var(--nova-orange);
}

.nova-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--nova-radius);
  border: 1px solid var(--nova-line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nova-nav__toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.nova-hero {
  position: relative;
  min-height: 735px;
  padding: 76px 0 28px;
  background: var(--nova-navy);
  overflow: hidden;
}

.nova-hero__bg,
.nova-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nova-hero__bg img {
  object-fit: cover;
  object-position: center;
}

.nova-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7, 17, 31, 0.97) 0%, rgba(7, 17, 31, 0.82) 38%, rgba(7, 17, 31, 0.42) 72%, rgba(7, 17, 31, 0.72) 100%),
    linear-gradient(0deg, rgba(7, 17, 31, 0.95) 0%, rgba(7, 17, 31, 0) 34%);
}

.nova-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  align-items: center;
}

.nova-hero__content {
  grid-column: 1;
  grid-row: 1;
  max-width: 780px;
}

.nova-hero__stats {
  grid-column: 2;
  grid-row: 1;
}

.nova-hero__brand {
  color: var(--nova-blue);
  font-family: 'Sora', 'Poppins', Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  margin: 0 0 10px;
}

.nova-hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 1.08;
  font-weight: 800;
  margin: 0 0 18px;
}

.nova-hero h1::first-line {
  color: #fff;
}

.nova-hero h1 {
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.nova-hero__text {
  max-width: 560px;
  color: #d4deea;
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 26px;
}

.nova-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.nova-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--nova-radius);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nova-btn:hover {
  color: #fff;
  transform: translateY(-1px);
}

.nova-btn--orange {
  background: linear-gradient(135deg, var(--nova-orange), var(--nova-orange-2));
}

.nova-btn--blue {
  background: linear-gradient(135deg, var(--nova-blue), var(--nova-blue-2));
}

.nova-btn--ghost {
  border: 1px solid var(--nova-line);
  background: rgba(255, 255, 255, 0.08);
}

.nova-hero__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  border: 1px solid var(--nova-line);
  border-radius: var(--nova-radius);
  background: rgba(6, 16, 30, 0.68);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.nova-hero__trust span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 12px 14px;
  color: #eaf2fb;
  font-size: 13px;
  font-weight: 800;
}

.nova-hero__trust i {
  color: var(--nova-blue);
  font-size: 21px;
}

.nova-hero__stats {
  padding: 26px 28px;
  border: 1px solid rgba(255, 122, 0, 0.48);
  border-radius: var(--nova-radius);
  background: linear-gradient(145deg, rgba(6, 16, 30, 0.94), rgba(8, 28, 50, 0.83));
  color: #fff;
  box-shadow: var(--nova-shadow);
  backdrop-filter: blur(10px);
}

.nova-hero__stats h2 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 24px;
}

.nova-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--nova-line);
}

.nova-stat-grid div {
  text-align: center;
}

.nova-stat-grid i {
  display: block;
  color: var(--nova-orange);
  font-size: 30px;
  margin-bottom: 10px;
}

.nova-stat-grid strong {
  display: block;
  color: var(--nova-orange);
  font-family: 'Sora', 'Poppins', Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}

.nova-stat-grid span,
.nova-hero__stats p {
  color: #d6e0ed;
  font-size: 13px;
  font-weight: 700;
}

.nova-hero__stats p {
  margin: 18px 0 0;
  text-align: center;
}

.nova-hero__stats p i {
  color: var(--nova-orange);
  margin-right: 8px;
}

.nova-hero-services {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.nova-hero-service {
  position: relative;
  min-height: 118px;
  padding: 22px 54px 20px 22px;
  border-radius: var(--nova-radius);
  border: 1px solid var(--nova-line);
  background: rgba(8, 25, 45, 0.82);
  color: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nova-hero-service:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.nova-hero-service:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.nova-hero-service:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.nova-hero-service:nth-child(4) {
  grid-column: 4;
  grid-row: 1;
}

.nova-hero-service:hover {
  color: #fff;
  transform: translateY(-3px);
  border-color: rgba(0, 168, 255, 0.55);
  background: rgba(10, 33, 58, 0.94);
}

.nova-hero-service span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--nova-radius);
  margin-bottom: 14px;
  font-size: 24px;
}

.nova-hero-service span.orange {
  color: var(--nova-orange);
  background: rgba(255, 122, 0, 0.13);
}

.nova-hero-service span.blue {
  color: var(--nova-blue);
  background: rgba(0, 168, 255, 0.14);
}

.nova-hero-service strong,
.nova-hero-service small {
  display: block;
}

.nova-hero-service strong {
  font-size: 17px;
  margin-bottom: 8px;
}

.nova-hero-service small {
  color: #c7d3e1;
  font-size: 13px;
  line-height: 1.55;
}

.nova-hero-service > .fa-arrow-right {
  position: absolute;
  right: 22px;
  bottom: 24px;
  color: var(--nova-orange);
}

.nova-section {
  padding: 78px 0;
}

.nova-section .sec-title {
  padding-bottom: 34px;
  margin: 0;
}

.nova-section .sec-title h1 {
  color: var(--nova-text);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 800;
}

.nova-section .sec-title .border {
  width: 46px;
  height: 3px;
  background: var(--nova-orange);
  margin-top: 14px;
}

.nova-products-section {
  background: var(--nova-soft);
}

.nova-products-section .single-product-item,
.nova-services-section .single-item,
.nova-projects-section .single-project,
.nova-blog-section .single-blog-post {
  border: 1px solid var(--nova-dark-line);
  border-radius: var(--nova-radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 31, 58, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nova-products-section .single-product-item:hover,
.nova-services-section .single-item:hover,
.nova-projects-section .single-project:hover,
.nova-blog-section .single-blog-post:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 255, 0.38);
  box-shadow: 0 20px 42px rgba(10, 31, 58, 0.14);
}

.nova-products-section .single-product-item .img-holder,
.nova-services-section .single-item .img-holder,
.nova-projects-section .single-project .img-holder,
.nova-blog-section .single-blog-post .img-holder {
  border-radius: 0;
  overflow: hidden;
}

.nova-products-section .single-product-item .img-holder img,
.nova-services-section .single-item .img-holder img,
.nova-projects-section .single-project .img-holder img,
.nova-blog-section .single-blog-post .img-holder img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.nova-products-section .title-holder,
.nova-services-section .text-holder,
.nova-projects-section .title-holder,
.nova-blog-section .text-holder {
  padding: 20px 22px;
}

.nova-products-section .title-holder h5,
.nova-services-section .text-holder h3,
.nova-projects-section .title-holder h5,
.nova-blog-section .blog-title {
  color: var(--nova-text);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.nova-products-section .rate {
  color: var(--nova-orange);
  font-weight: 800;
}

.nova-products-section .more-project a,
.nova-services-section .more-project a,
.nova-projects-section .more-project a,
.nova-blog-section .more-project a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--nova-dark-line);
  border-radius: var(--nova-radius);
  color: var(--nova-text) !important;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nova-products-section .more-project a:hover,
.nova-services-section .more-project a:hover,
.nova-projects-section .more-project a:hover,
.nova-blog-section .more-project a:hover {
  border-color: var(--nova-orange);
  background: #fff7ed;
}

.nova-about-section {
  background: #fff;
  padding: 82px 0;
}

.nova-about-section .video-holder {
  border-radius: var(--nova-radius);
  overflow: hidden;
  box-shadow: var(--nova-shadow);
}

.nova-about-section .text-holder {
  padding: 28px 0 0;
}

.nova-about-section .text-holder p {
  color: #4d5b6d;
  font-size: 17px;
  line-height: 1.9;
}

.nova-benefits-bar {
  position: relative;
  padding: 58px 0;
  background-size: cover;
  background-position: center;
}

.nova-benefits-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 31, 0.86);
}

.nova-benefits-bar .container {
  position: relative;
  z-index: 2;
}

.nova-benefits-bar .single-item h1 {
  color: var(--nova-orange);
  font-size: 36px;
  font-weight: 800;
}

.nova-benefits-bar .single-item h3 {
  color: #fff;
  font-size: 16px;
}

.nova-process-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.nova-process-section .single-item {
  min-height: 260px;
  padding: 32px 24px;
  border: 1px solid var(--nova-dark-line);
  border-radius: var(--nova-radius);
  background: #fff;
}

.nova-process-section .icon-box {
  color: var(--nova-blue);
}

.nova-testimonial-section {
  position: relative;
  background-size: cover;
  background-position: center;
}

.nova-testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 31, 0.88);
}

.nova-testimonial-section .container {
  position: relative;
  z-index: 2;
}

.nova-testimonial-section .sec-title h1,
.nova-testimonial-section .single-item,
.nova-testimonial-section .single-item h3 {
  color: #fff;
}

.footer-area {
  position: relative;
  background-color: var(--nova-navy) !important;
  background-size: cover;
  background-position: center;
}

.footer-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(7, 30, 54, 0.92));
}

.footer-area > *,
.footer-bottom-area {
  position: relative;
  z-index: 2;
}

.footer-area .footer-top-area .footer-top-content,
.footer-area .single-footer-widget {
  border-radius: var(--nova-radius);
}

.footer-area .single-footer-widget .title h3,
.footer-area p,
.footer-area li,
.footer-area a {
  color: #c9d4e2;
}

.footer-area .single-footer-widget .title h3 {
  color: #fff;
  font-weight: 800;
}

.footer-area .footer-contact-info .icon-holder span,
.footer-area .we-do-list a:hover,
.footer-bottom-area a {
  color: var(--nova-orange) !important;
}

.footer-bottom-area {
  background: #050c17;
}

.scroll-to-top {
  border-radius: var(--nova-radius);
  background: var(--nova-orange);
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.scroll-to-top.is-visible {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.nova-floating-contact {
  position: fixed;
  left: 8px;
  bottom: 12px;
  z-index: 99999;
}

.nova-floating-contact > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 10px;
}

.nova-floating-contact .whatspp,
.nova-floating-contact .arama {
  margin-bottom: 0;
}

@media only screen and (max-width: 1199px) {
  .nova-nav {
    min-height: 78px;
  }

  .nova-nav__toggle {
    display: flex;
  }

  .nova-nav__menu {
    position: fixed;
    top: 120px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--nova-line);
    border-radius: var(--nova-radius);
    background: #07111f;
    box-shadow: var(--nova-shadow);
  }

  .nova-nav__menu.is-open {
    display: flex;
  }

  .nova-nav__links,
  .nova-nav__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nova-nav__links > li > a,
  .nova-nav__call,
  .nova-nav__whatsapp {
    width: 100%;
    justify-content: space-between;
  }

  .nova-nav__dropdown {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 4px 0 8px;
    box-shadow: none;
  }

  .has-submenu:hover .nova-nav__dropdown {
    display: block;
  }

  .nova-hero__inner {
    grid-template-columns: 1fr;
  }

  .nova-hero__content,
  .nova-hero__stats {
    grid-column: 1;
  }

  .nova-hero__content {
    grid-row: 1;
  }

  .nova-hero__stats {
    grid-row: 2;
  }

  .nova-hero__stats {
    max-width: 620px;
  }

  .nova-hero-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .nova-hero-service:nth-child(1),
  .nova-hero-service:nth-child(2),
  .nova-hero-service:nth-child(3),
  .nova-hero-service:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media only screen and (max-width: 767px) {
  .nova-topbar {
    display: none;
  }

  .nova-nav {
    min-height: 72px;
  }

  .nova-nav__logo img {
    max-height: 54px;
  }

  .nova-nav__menu {
    top: 84px;
  }

  .nova-hero {
    min-height: auto;
    padding: 54px 0 22px;
  }

  .nova-hero__inner {
    gap: 28px;
  }

  .nova-hero h1 {
    font-size: 36px;
  }

  .nova-hero__buttons,
  .nova-hero__trust,
  .nova-stat-grid,
  .nova-hero-services {
    grid-template-columns: 1fr;
  }

  .nova-hero__buttons {
    flex-direction: column;
  }

  .nova-btn {
    width: 100%;
  }

  .nova-hero__trust span {
    min-height: 52px;
  }

  .nova-hero__stats {
    padding: 22px;
  }

  .nova-section {
    padding: 56px 0;
  }

  .nova-floating-contact {
    display: none;
  }

  .nova-products-section .single-product-item,
  .nova-services-section .single-item,
  .nova-projects-section .single-project,
  .nova-blog-section .single-blog-post {
    margin-bottom: 24px;
  }
}

/* Concept alignment pass */
.nova-topbar__inner {
  min-height: 36px;
}

.nova-nav {
  min-height: 76px;
}

.nova-nav__logo img {
  max-height: 62px;
}

.nova-hero__inner::before,
.nova-hero__inner::after,
.nova-hero-services::before,
.nova-hero-services::after,
.nova-home-products__grid::before,
.nova-home-products__grid::after,
.nova-feature-bar__grid::before,
.nova-feature-bar__grid::after {
  display: none;
  content: none;
}

.nova-nav__links > li > a {
  padding: 0 12px;
}

.nova-nav__links > li > a.active {
  color: var(--nova-blue);
  background: transparent;
  border-bottom: 2px solid var(--nova-blue);
  border-radius: 0;
}

.nova-nav__call,
.nova-nav__whatsapp {
  min-height: 42px;
  padding: 0 22px;
}

.nova-hero {
  min-height: 430px;
  padding: 28px 0 8px;
}

.nova-hero__bg::after {
  background:
    linear-gradient(100deg, rgba(7, 17, 31, 0.98) 0%, rgba(7, 17, 31, 0.78) 42%, rgba(7, 17, 31, 0.36) 72%, rgba(7, 17, 31, 0.8) 100%),
    linear-gradient(0deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0) 44%);
}

.nova-hero__inner {
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 46px;
}

.nova-hero__brand {
  font-size: 26px;
  margin-bottom: 6px;
}

.nova-hero h1 {
  max-width: 620px;
  font-size: 40px;
  line-height: 1.14;
  margin-bottom: 12px;
}

.nova-hero h1 span {
  color: var(--nova-orange);
}

.nova-hero__text {
  font-size: 16px;
  margin-bottom: 18px;
}

.nova-hero__buttons {
  gap: 12px;
  margin-bottom: 18px;
}

.nova-btn {
  min-height: 44px;
  padding: 0 23px;
}

.nova-hero__trust {
  max-width: 540px;
}

.nova-hero__trust span {
  min-height: 46px;
  padding: 10px 12px;
  font-size: 12px;
}

.nova-hero__stats {
  align-self: end;
  margin-bottom: 10px;
  padding: 18px 22px 14px;
}

.nova-hero__stats h2 {
  font-size: 15px;
  margin-bottom: 16px;
}

.nova-stat-grid {
  gap: 10px;
  padding-bottom: 18px;
}

.nova-stat-grid i {
  font-size: 24px;
  margin-bottom: 8px;
}

.nova-stat-grid strong {
  font-size: 24px;
}

.nova-hero-services {
  gap: 8px;
  margin-top: 14px;
}

.nova-hero-service {
  min-height: 82px;
  padding: 12px 36px 12px 15px;
}

.nova-hero-service span {
  width: 46px;
  height: 46px;
  margin-bottom: 0;
  float: left;
  margin-right: 14px;
}

.nova-hero-service strong {
  font-size: 15px;
  margin: 4px 0 5px;
}

.nova-hero-service small {
  font-size: 11px;
  line-height: 1.4;
}

.nova-products-section {
  display: none;
}

.nova-home-products {
  background: #fff;
  padding: 15px 0 8px;
}

.nova-home-products__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 232px;
  gap: 22px;
  align-items: stretch;
}

.nova-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 11px;
}

.nova-strip-head h2 {
  position: relative;
  color: var(--nova-navy);
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  padding-bottom: 10px;
}

.nova-strip-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--nova-orange);
}

.nova-strip-head a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid #d9e2ee;
  border-radius: 6px;
  color: var(--nova-navy);
  font-size: 12px;
  font-weight: 800;
}

.nova-product-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.nova-product-card {
  display: block;
  min-height: 138px;
  border: 1px solid #dfe6ef;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  color: var(--nova-navy);
  box-shadow: 0 8px 22px rgba(10, 31, 58, 0.06);
}

.nova-product-card img {
  display: block;
  width: 100%;
  height: 90px;
  object-fit: cover;
  background: #f2f4f7;
}

.nova-product-card span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 47px;
  padding: 8px 10px;
  color: var(--nova-navy);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.nova-product-card i {
  color: var(--nova-orange);
}

.nova-quote-card {
  min-height: 166px;
  padding: 18px 16px 14px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(6, 16, 30, 0.98), rgba(3, 54, 91, 0.9)),
    url("../admin/assets/img/genel/nova-hero-dogalgaz-hirdavat.png") center/cover;
  color: #fff;
  box-shadow: 0 12px 28px rgba(3, 12, 26, 0.18);
}

.nova-quote-card h3 {
  color: #fff;
  font-size: 21px;
  line-height: 1.12;
  margin: 0 0 11px;
}

.nova-quote-card p {
  color: #d2deea;
  font-size: 12px;
  line-height: 1.45;
  margin: 0 0 12px;
}

.nova-quote-card__input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  color: #d9e2ef;
  font-size: 12px;
  margin-bottom: 10px;
}

.nova-quote-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 34px;
  border-radius: 5px;
  background: var(--nova-orange);
  color: #fff;
  font-weight: 800;
}

.nova-quote-card__button:hover {
  color: #fff;
  background: var(--nova-orange-2);
}

.nova-feature-bar {
  background: #06101e;
  color: #fff;
  padding: 18px 0;
}

.nova-feature-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.nova-feature-bar__grid div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
  min-height: 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.nova-feature-bar__grid div:last-child {
  border-right: 0;
}

.nova-feature-bar i {
  grid-row: span 2;
  color: var(--nova-orange);
  font-size: 30px;
}

.nova-feature-bar strong {
  color: #fff;
  font-size: 14px;
}

.nova-feature-bar span {
  color: #aebbc9;
  font-size: 12px;
}

.breadcrumb-area {
  position: relative;
  min-height: 238px;
  display: flex;
  align-items: center;
  background-image: url("../admin/assets/img/genel/nova-hero-dogalgaz-hirdavat.png") !important;
  background-size: cover !important;
  background-position: center !important;
  padding: 72px 0 !important;
  overflow: hidden;
}

.breadcrumb-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7, 17, 31, 0.95), rgba(7, 17, 31, 0.58), rgba(7, 17, 31, 0.9)),
    linear-gradient(0deg, rgba(7, 17, 31, 0.86), rgba(7, 17, 31, 0.08));
}

.breadcrumb-area .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-area h1 {
  color: #fff;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.breadcrumb-botton-area {
  background: #07111f;
  border: 0;
  padding: 16px 0;
}

.breadcrumb-botton-area ul li,
.breadcrumb-botton-area ul li a {
  color: #cbd6e3 !important;
  font-weight: 700;
}

.breadcrumb-botton-area i {
  color: var(--nova-orange);
  margin: 0 8px;
}

.latest-project-area,
.call-to-action-area,
.blog-area,
.single-shop-area,
.single-service-area,
.single-project-area {
  background: #f5f8fc;
}

.latest-project-area .single-product-item,
.call-to-action-area .single-item,
.single-blog-post,
.single-project,
.project-content .single-project-item {
  border: 1px solid #dfe6ef !important;
  border-radius: 7px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(10, 31, 58, 0.08);
}

.latest-project-area .single-product-item .img-holder img,
.call-to-action-area .single-item .img-holder img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.single-product-item .title-holder,
.single-item .text-holder {
  padding: 18px 18px !important;
}

.single-product-item .title-holder h5,
.single-item .text-holder h3 {
  color: var(--nova-navy);
  font-weight: 800;
}

.single-product-item .rate {
  color: var(--nova-orange) !important;
  font-weight: 800;
}

.left-sidebar .single-sidebar,
.shop-sidebar .single-sidebar {
  border: 1px solid #dfe6ef;
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(10, 31, 58, 0.06);
}

.left-sidebar .sec-title,
.shop-sidebar .sec-title {
  background: #07111f;
  padding: 18px 20px;
}

.left-sidebar .sec-title h3,
.shop-sidebar .sec-title h3 {
  color: #fff;
  margin: 0;
}

.left-sidebar .categories li a,
.shop-sidebar .categories li a {
  color: #233148;
  font-weight: 700;
}

.left-sidebar .categories li a:hover,
.left-sidebar .categories li a.active,
.shop-sidebar .categories li a:hover,
.shop-sidebar .categories li a.active {
  color: var(--nova-orange) !important;
}

.footer-logo img {
  max-height: 72px;
  width: auto;
}

.nova-floating-contact {
  display: none;
}

@media only screen and (max-width: 1199px) {
  .nova-home-products__grid {
    grid-template-columns: 1fr;
  }

  .nova-product-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nova-feature-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .nova-hero {
    padding: 44px 0 18px;
  }

  .nova-hero h1 {
    font-size: 34px;
  }

  .nova-product-strip,
  .nova-feature-bar__grid {
    grid-template-columns: 1fr;
  }

  .nova-feature-bar__grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 12px;
  }

  .breadcrumb-area h1 {
    font-size: 32px;
  }
}

/* Nova site-wide interior refinement */
.breadcrumb-area {
  min-height: 148px;
  padding: 34px 0 30px !important;
}

.breadcrumb-area h1 {
  font-size: 36px;
}

.breadcrumb-botton-area {
  padding: 12px 0;
  background: #07111f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.breadcrumb-botton-area ul {
  margin: 0;
}

.breadcrumb-botton-area ul li {
  line-height: 1.35;
}

.breadcrumb-botton-area .left {
  float: none !important;
}

.latest-project-area,
.call-to-action-area,
.blog-area,
.single-shop-area,
.single-service-area,
.single-project-area,
.contact-info-area,
.contact-form-area,
.google-map-area {
  background: #f5f8fc !important;
}

.latest-project-area,
.call-to-action-area,
.blog-area,
.single-shop-area,
.single-service-area,
.single-project-area {
  padding-top: 64px !important;
}

.latest-project-area .single-product-item,
.call-to-action-area .single-item,
.nova-services-section .single-item,
.nova-projects-section .single-project,
.project-content .single-project,
.project-content .single-project-item,
.single-blog-post {
  border: 1px solid #dce5ef !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 14px 32px rgba(7, 17, 31, 0.08) !important;
}

.latest-project-area .single-product-item:hover,
.call-to-action-area .single-item:hover,
.nova-projects-section .single-project:hover,
.project-content .single-project:hover,
.single-blog-post:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 255, 0.42) !important;
  box-shadow: 0 22px 44px rgba(7, 17, 31, 0.14) !important;
}

.latest-project-area .single-product-item .img-holder img,
.call-to-action-area .single-item .img-holder img,
.project-content .single-project .img-holder img,
.project-content .single-project-item .img-holder img,
.single-blog-post .img-holder img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.left-sidebar .single-sidebar,
.shop-sidebar .single-sidebar,
.sidebar-wrapper .single-sidebar {
  border: 1px solid #dce5ef !important;
  border-radius: 8px !important;
  overflow: hidden;
  background: #fff !important;
  box-shadow: 0 14px 32px rgba(7, 17, 31, 0.08) !important;
}

.left-sidebar .sec-title,
.shop-sidebar .sec-title,
.sidebar-wrapper .sec-title {
  background: #07111f !important;
  border-bottom: 1px solid rgba(255, 122, 0, 0.18);
  padding: 18px 22px !important;
}

.left-sidebar .sec-title h3,
.shop-sidebar .sec-title h3,
.sidebar-wrapper .sec-title h3 {
  color: #fff !important;
  font-size: 22px;
}

.left-sidebar .sec-title .border,
.shop-sidebar .sec-title .border,
.sidebar-wrapper .sec-title .border {
  background: var(--nova-orange) !important;
}

.left-sidebar .categories li,
.shop-sidebar .categories li {
  border-color: #e7edf5 !important;
}

.left-sidebar .categories li a,
.shop-sidebar .categories li a {
  color: var(--nova-navy) !important;
  font-weight: 800;
}

.left-sidebar .categories li a.active,
.shop-sidebar .categories li a.active,
.left-sidebar .categories li a:hover,
.shop-sidebar .categories li a:hover {
  color: var(--nova-orange) !important;
  background: transparent !important;
}

.left-sidebar .categories li:has(a.active),
.shop-sidebar .categories li:has(a.active) {
  background: #fff7ed;
}

.nova-section {
  padding: 70px 0;
}

.nova-about-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(9, 34, 58, 0.94)),
    url("../admin/assets/img/genel/nova-hero-dogalgaz-hirdavat.png") center/cover;
}

.nova-about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 30%, rgba(0, 168, 255, 0.16), transparent 32%),
              radial-gradient(circle at 85% 68%, rgba(255, 122, 0, 0.14), transparent 30%);
}

.nova-about-section .container {
  position: relative;
  z-index: 2;
}

.nova-about-section .about-flex {
  display: flex;
  align-items: center;
}

.nova-about-section .video-holder {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.nova-about-section .video-holder img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.nova-about-section .text-holder {
  padding: 0 0 0 28px;
}

.nova-about-section .text-holder::before {
  content: "Nova Mühendislik";
  display: block;
  color: var(--nova-blue);
  font-family: 'Sora', 'Poppins', Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

.nova-about-section .text-holder h2,
.nova-about-section .text-holder h3 {
  color: #fff;
}

.nova-about-section .text-holder h2::after,
.nova-about-section .text-holder h3::after {
  background: var(--nova-orange);
}

.nova-about-section .text-holder p {
  color: #d7e2ef;
  font-size: 17px;
  line-height: 1.85;
}

.nova-services-section,
.nova-projects-section,
.nova-blog-section,
.nova-process-section {
  background: #f5f8fc !important;
}

.nova-services-section .single-item .text-holder,
.nova-projects-section .title-holder {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nova-benefits-bar {
  padding: 42px 0;
  background-image: url("../admin/assets/img/genel/nova-hero-dogalgaz-hirdavat.png") !important;
}

.nova-benefits-bar::before {
  background: rgba(7, 17, 31, 0.92);
}

.nova-benefits-bar .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.nova-benefits-bar .row::before,
.nova-benefits-bar .row::after {
  display: none;
  content: none;
}

.nova-benefits-bar .col-md-3 {
  width: auto;
  float: none;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.nova-benefits-bar .col-md-3:last-child {
  border-right: 0;
}

.nova-benefits-bar .single-item {
  padding: 8px 12px;
}

.nova-benefits-bar .single-item h1 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 8px;
}

.nova-benefits-bar .single-item .border {
  background: var(--nova-orange);
}

.nova-benefits-bar .single-item h3 {
  color: #d8e3ef;
  font-size: 14px;
  font-weight: 700;
}

.nova-process-section .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.nova-process-section .row::before,
.nova-process-section .row::after {
  display: none;
  content: none;
}

.nova-process-section .col-md-4 {
  width: auto;
  float: none;
}

.nova-process-section .single-item {
  min-height: 250px;
  border-radius: 8px;
  border-color: #dce5ef;
  box-shadow: 0 14px 32px rgba(7, 17, 31, 0.07);
}

.nova-process-section .icon-box {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 20px;
  background: rgba(255, 122, 0, 0.12);
  color: var(--nova-orange) !important;
  font-size: 30px;
}

.nova-process-section .text-box h3 {
  color: var(--nova-navy);
  font-weight: 800;
}

.nova-process-section .text-box p {
  color: #4b5b6d;
  line-height: 1.7;
}

.nova-testimonial-section {
  padding: 72px 0;
  background-image: url("../admin/assets/img/genel/nova-hero-dogalgaz-hirdavat.png") !important;
}

.nova-testimonial-section::before {
  background: rgba(7, 17, 31, 0.9);
}

.nova-testimonial-section .sec-title {
  padding-bottom: 24px;
}

.nova-testimonial-section .text-holder p {
  max-width: 780px;
  margin: 0 auto 24px;
  color: #d6e2ee;
  font-size: 17px;
  line-height: 1.7;
}

.nova-testimonial-section .client-info .img-holder img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.85);
}

.nova-blog-section .single-blog-post .published-date {
  background: var(--nova-orange) !important;
}

.nova-blog-section .single-blog-post .meta-info {
  border-top: 1px solid #e7edf5;
}

.nova-blog-section .single-blog-post .meta-info a,
.nova-blog-section .single-blog-post .post-share {
  color: #6a7686 !important;
}

.nova-brand-section {
  background: #fff !important;
  padding: 58px 0 66px;
}

.nova-brand-section .sec-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 30px;
}

.nova-brand-section .sec-title h1 {
  max-width: 360px;
}

.nova-brand-section .brand .single-item {
  border: 1px solid #e2e8f1 !important;
  border-radius: 6px;
  background: #fff;
  filter: grayscale(1);
  opacity: 0.74;
  transition: opacity 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.nova-brand-section .brand .single-item:hover {
  opacity: 1;
  filter: grayscale(0);
  border-color: rgba(255, 122, 0, 0.48) !important;
}

.contact-info-area,
.get-touch-area,
.contact-form-area {
  padding: 58px 0 !important;
}

.contact-info-area .single-item,
.get-touch-area .single-item,
.contact-form-area input,
.contact-form-area textarea,
.contact-form-area .contact-form {
  border-color: #dce5ef !important;
  border-radius: 8px !important;
  box-shadow: 0 14px 32px rgba(7, 17, 31, 0.06);
}

.contact-info-area .single-item,
.get-touch-area .single-item {
  background: #fff;
}

.contact-info-area .single-item .icon-holder span,
.contact-info-area .single-item .icon-holder i,
.get-touch-area .single-item .icon-holder span,
.get-touch-area .single-item .icon-holder i {
  color: var(--nova-orange) !important;
}

.contact-info-area .single-item .icon-holder span::before,
.contact-info-area .single-item .icon-holder i::before,
.get-touch-area .single-item .icon-holder span::before,
.get-touch-area .single-item .icon-holder i::before {
  color: var(--nova-orange) !important;
}

.contact-form-area .sec-title .border,
.contact-info-area .sec-title .border,
.get-touch-area .sec-title .border,
.get-touch-area .single-item .text-holder .border {
  background: var(--nova-orange) !important;
}

.contact-form-area .sec-title .border::before,
.contact-info-area .sec-title .border::before,
.get-touch-area .sec-title .border::before,
.contact-form-area .sec-title .border::after,
.contact-info-area .sec-title .border::after,
.get-touch-area .sec-title .border::after {
  background: var(--nova-orange) !important;
}

.contact-form-area button,
.contact-form-area .thm-btn {
  background: var(--nova-orange) !important;
  border-color: var(--nova-orange) !important;
  border-radius: 6px !important;
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-area {
    min-height: 132px;
    padding: 30px 0 26px !important;
  }

  .nova-process-section .row,
  .nova-benefits-bar .row {
    grid-template-columns: repeat(2, 1fr);
  }

  .nova-benefits-bar .col-md-3:nth-child(2n) {
    border-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .breadcrumb-area {
    min-height: 112px;
    padding: 24px 0 22px !important;
  }

  .breadcrumb-area .container,
  .breadcrumb-botton-area .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px;
    padding-right: 16px;
  }

  .breadcrumb-area h1 {
    font-size: 22px;
    line-height: 1.18;
    padding: 0;
    text-align: center;
  }

  .breadcrumb-botton-area {
    padding: 10px 0;
  }

  .breadcrumb-botton-area .left {
    float: none !important;
    width: 100% !important;
  }

  .breadcrumb-botton-area ul,
  .breadcrumb-botton-area .left ul {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center;
    row-gap: 6px;
    column-gap: 8px;
    max-width: 100%;
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: visible !important;
  }

  .breadcrumb-botton-area ul li,
  .breadcrumb-botton-area .left ul li,
  .breadcrumb-botton-area ul li a,
  .breadcrumb-botton-area .left ul li a {
    float: none !important;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .breadcrumb-botton-area ul li:last-child,
  .breadcrumb-botton-area .left ul li:last-child {
    flex: 0 0 100%;
    margin-top: 2px;
  }

  .latest-project-area,
  .call-to-action-area,
  .blog-area,
  .single-shop-area,
  .single-service-area,
  .single-project-area {
    padding-top: 42px !important;
  }

  .nova-about-section .about-flex {
    display: block;
  }

  .nova-about-section .text-holder {
    padding: 28px 0 0;
  }

  .nova-benefits-bar .row,
  .nova-process-section .row {
    grid-template-columns: 1fr;
  }

  .nova-benefits-bar .col-md-3 {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .nova-benefits-bar .col-md-3:last-child {
    border-bottom: 0;
  }

  .nova-brand-section .sec-title {
    display: block;
  }
}

/* Nova complete public-surface pass */
:root {
  --renk: var(--nova-blue) !important;
  --renk2: var(--nova-orange) !important;
}

.bg-clr1,
.thm-btn.bg-clr1,
button.bg-clr1,
input[type="submit"].bg-clr1,
.post-pagination li.active a,
.post-pagination li a:hover,
.accordion-box .accordion .accord-btn.active,
.accordion-box .accordion .accord-btn:hover,
.product-tab-box .tab-menu li.active a,
.product-tab-box .tab-menu li a:hover,
.scroll-to-top {
  background: var(--nova-orange) !important;
  border-color: var(--nova-orange) !important;
  color: #fff !important;
}

.thm-btn.bg-clr1:hover,
button.bg-clr1:hover,
.scroll-to-top:hover {
  background: var(--nova-blue) !important;
  border-color: var(--nova-blue) !important;
}

.sec-title .border,
.sec-title .border::before,
.sec-title .border::after,
.product-tab-box .nav-tabs > li.active > a::before,
.single-shop-content .content-box .price::before {
  background: var(--nova-orange) !important;
}

.single-footer-widget .title h3::before,
.footer-contact-info .icon-holder span,
.footer-social-links li a:hover,
.product-tab-box .nav-tabs > li.active > a,
.single-shop-content .content-box .price,
.rate,
.not-found-content h1 {
  color: var(--nova-orange) !important;
}

.financial-projections-area,
.cart-area,
.not-found-area,
.video-gallery-area:not(.nova-about-section),
.image-gallery-area,
.project-single-area,
.blog-single-area,
.latest-blog-area:not(.nova-blog-section),
.google-map-area {
  background: #f5f8fc !important;
  padding: 64px 0 !important;
}

.financial-projections-area .content-box,
.cart-area .table-outer,
.cart-area .cart-total,
.single-shop-content,
.product-tab-box,
.related-product,
.profit-improvement-content,
.blog-single-area .blog-post,
.blog-single-area .comment-box,
.blog-single-area .add-comment-box,
.not-found-content,
.contact-form,
.get-touch-area .single-item,
.google-map-area iframe,
.video-gallery-area .single-project-item,
.image-gallery-area .single-project-item {
  background: #fff !important;
  border: 1px solid #dce5ef !important;
  border-radius: 8px !important;
  box-shadow: 0 16px 36px rgba(7, 17, 31, 0.08) !important;
}

.profit-improvement-content,
.blog-single-area .blog-post,
.not-found-content {
  padding: 28px !important;
}

.single-shop-content {
  padding: 24px !important;
}

.single-shop-content .img-holder,
.profit-improvement-content .carousel-default,
.project-single-area .carousel-default,
.blog-single-area .carousel-default {
  overflow: hidden;
  border-radius: 8px;
  background: #eef3f8;
}

.single-shop-content .img-holder img,
.profit-improvement-content .carousel-default img,
.project-single-area .carousel-default img,
.blog-single-area .carousel-default img {
  width: 100% !important;
  max-height: 430px;
  object-fit: cover;
}

.single-shop-content .content-box h3,
.profit-improvement-content .sec-title h2,
.financial-projections-area .sec-title h2,
.related-product .sec-title h3,
.product-tab-box .tab-content h1,
.product-tab-box .tab-content h2,
.product-tab-box .tab-content h3 {
  color: var(--nova-navy) !important;
  font-family: 'Sora', 'Poppins', Arial, sans-serif;
  font-weight: 800;
}

.product-tab-box .nav-tabs > li.active > a,
.product-tab-box .tab-menu li.active a,
.product-tab-box .tab-menu li:hover a,
.product-tab-box .tab-menu li a:hover {
  color: #fff !important;
}

.single-shop-content .content-box p,
.profit-improvement-content p,
.product-details-content,
.accordion-box .accordion .accord-content p,
.cart-area,
.cart-area p,
.not-found-content p {
  color: #506174 !important;
  font-size: 16px;
  line-height: 1.75;
}

.not-found-content .nova-nav__call {
  color: var(--nova-orange) !important;
}

.not-found-content .nova-nav__call:hover,
.not-found-content .nova-nav__whatsapp {
  color: #fff !important;
}

.left-sidebar .page-link,
.sidebar-wrapper .page-link {
  overflow: hidden;
  border: 1px solid #dce5ef !important;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(7, 17, 31, 0.08);
}

.left-sidebar .page-link > li:first-child,
.sidebar-wrapper .page-link > li:first-child {
  background: #07111f !important;
  color: #fff !important;
  border-bottom: 1px solid rgba(255, 122, 0, 0.2);
}

.left-sidebar .page-link > li:first-child h3,
.sidebar-wrapper .page-link > li:first-child h3 {
  color: #fff !important;
  font-size: 21px;
  margin: 0;
}

.left-sidebar .page-link li a,
.sidebar-wrapper .page-link li a {
  color: var(--nova-navy) !important;
  font-weight: 800;
  border-bottom-color: #e7edf5 !important;
}

.left-sidebar .page-link li a.active,
.left-sidebar .page-link li a:hover,
.sidebar-wrapper .page-link li a.active,
.sidebar-wrapper .page-link li a:hover {
  color: var(--nova-orange) !important;
  background: #fff7ed !important;
}

.left-sidebar .page-link li a i,
.sidebar-wrapper .page-link li a i,
.categories li a i {
  color: var(--nova-orange) !important;
}

.accordion-box .accordion {
  border: 1px solid #dce5ef !important;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #fff;
}

.accordion-box .accordion .accord-btn {
  background: #07111f !important;
  color: #fff !important;
  padding: 18px 22px !important;
}

.accordion-box .accordion .accord-btn h4 {
  color: #fff !important;
  font-family: 'Sora', 'Poppins', Arial, sans-serif;
}

.accordion-box .accordion .accord-content {
  padding: 18px 22px !important;
  border-top: 1px solid #dce5ef;
}

.contact-form-area input,
.contact-form-area textarea,
.contact-form-area select,
.cart-area input,
.cart-area textarea,
.cart-area select,
.checkout-area input,
.checkout-area textarea,
.checkout-area select {
  border: 1px solid #dce5ef !important;
  border-radius: 6px !important;
  color: var(--nova-navy) !important;
  background: #fff !important;
}

.contact-form-area input:focus,
.contact-form-area textarea:focus,
.contact-form-area select:focus,
.cart-area input:focus,
.cart-area textarea:focus,
.cart-area select:focus {
  border-color: var(--nova-blue) !important;
  box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.14) !important;
}

.footer-area,
.footer-bottom-area {
  background-color: #07111f !important;
}

.footer-top-area .thm-btn,
.nova-floating-contact .whatspp,
.nova-floating-contact .arama {
  background: var(--nova-orange) !important;
  color: #fff !important;
}

.nova-floating-contact .whatspp:hover,
.nova-floating-contact .arama:hover {
  background: var(--nova-blue) !important;
}

.nova-nav__whatsapp,
.order-action-whatsapp {
  background: var(--nova-blue) !important;
  border-color: var(--nova-blue) !important;
  color: #fff !important;
}

.nova-nav__whatsapp:hover,
.order-action-whatsapp:hover {
  background: var(--nova-orange) !important;
  border-color: var(--nova-orange) !important;
}

.order-action-phone {
  background: var(--nova-orange) !important;
  border-color: var(--nova-orange) !important;
  color: #fff !important;
}

.order-action-buy {
  background: #07111f !important;
  border-color: #07111f !important;
  color: #fff !important;
}

.not-found-content h1 {
  font-family: 'Sora', 'Poppins', Arial, sans-serif;
  font-size: 92px;
  font-weight: 800;
  line-height: 1;
}

.not-found-content h3 {
  color: var(--nova-navy) !important;
  font-weight: 800;
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sitemap-card {
  background: #fff;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 16px 36px rgba(7, 17, 31, 0.08);
}

.sitemap-card h3 {
  color: var(--nova-navy);
  font-family: 'Sora', 'Poppins', Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
}

.sitemap-card a {
  display: block;
  color: #506174;
  font-weight: 700;
  padding: 8px 0;
  border-top: 1px solid #edf2f7;
}

/* Current visual polish pass */
.nova-topbar__inner {
  justify-content: flex-start;
}

.nova-topbar__left {
  flex: 1 1 auto;
}

.nova-topbar__right {
  margin-left: auto;
}

.nova-nav__logo {
  display: inline-flex;
  align-items: center;
  background: transparent !important;
  box-shadow: none !important;
}

.nova-nav__logo img,
.footer-logo img {
  background: transparent !important;
  box-shadow: none !important;
}

.nova-section {
  padding: 56px 0;
}

.nova-services-section,
.nova-blog-section {
  padding-top: 46px !important;
}

.nova-services-section .sec-title,
.nova-blog-section .sec-title {
  padding-bottom: 24px;
}

.nova-services-section .more-project,
.nova-blog-section .more-project {
  margin-bottom: 12px;
}

.nova-services-section .latest-project-area,
.nova-blog-section .latest-project-area {
  margin-bottom: 0;
}

.left-sidebar .single-sidebar,
.shop-sidebar .single-sidebar,
.sidebar-wrapper .single-sidebar {
  overflow: hidden !important;
}

.left-sidebar .page-link,
.sidebar-wrapper .page-link,
.left-sidebar .categories,
.shop-sidebar .categories {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.left-sidebar .page-link li,
.sidebar-wrapper .page-link li,
.left-sidebar .categories li,
.shop-sidebar .categories li {
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid #e7edf5 !important;
  list-style: none !important;
}

.left-sidebar .page-link li::before,
.sidebar-wrapper .page-link li::before,
.left-sidebar .categories li::before,
.shop-sidebar .categories li::before {
  content: none !important;
  display: none !important;
}

.left-sidebar .page-link li:last-child,
.sidebar-wrapper .page-link li:last-child,
.left-sidebar .categories li:last-child,
.shop-sidebar .categories li:last-child {
  border-bottom: 0 !important;
}

.left-sidebar .page-link li a,
.sidebar-wrapper .page-link li a,
.left-sidebar .categories li a,
.shop-sidebar .categories li a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 13px 22px !important;
  color: var(--nova-navy) !important;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
  background: #fff !important;
  border: 0 !important;
  overflow: visible !important;
  white-space: normal !important;
}

.left-sidebar .page-link li a::before,
.sidebar-wrapper .page-link li a::before,
.left-sidebar .categories li a::before,
.shop-sidebar .categories li a::before {
  content: none !important;
  display: none !important;
}

.left-sidebar .page-link li a.active,
.left-sidebar .page-link li a:hover,
.sidebar-wrapper .page-link li a.active,
.sidebar-wrapper .page-link li a:hover,
.left-sidebar .categories li a.active,
.left-sidebar .categories li a:hover,
.shop-sidebar .categories li a.active,
.shop-sidebar .categories li a:hover {
  color: #fff !important;
  background: var(--nova-orange) !important;
}

.left-sidebar .page-link li a.active i,
.left-sidebar .page-link li a:hover i,
.sidebar-wrapper .page-link li a.active i,
.sidebar-wrapper .page-link li a:hover i,
.left-sidebar .categories li a.active i,
.left-sidebar .categories li a:hover i,
.shop-sidebar .categories li a.active i,
.shop-sidebar .categories li a:hover i {
  color: #fff !important;
}

.left-sidebar .sec-title,
.shop-sidebar .sec-title,
.sidebar-wrapper .sec-title,
.left-sidebar .page-link > li:first-child,
.sidebar-wrapper .page-link > li:first-child {
  padding: 18px 22px !important;
}

.left-sidebar .page-link > li:first-child,
.sidebar-wrapper .page-link > li:first-child {
  min-height: auto;
}

.left-sidebar .page-link > li:first-child h3,
.sidebar-wrapper .page-link > li:first-child h3,
.left-sidebar .sec-title h3,
.shop-sidebar .sec-title h3,
.sidebar-wrapper .sec-title h3 {
  line-height: 1.2;
}

.project-content .single-project .title-holder h5,
.project-content .single-project-item .title-holder h5 {
  color: var(--nova-navy) !important;
  font-family: 'Sora', 'Poppins', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  padding: 0 8px;
}

.profit-improvement-content .sec-title {
  margin: -4px 0 22px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.profit-improvement-content .sec-title h2 {
  line-height: 1.22;
  padding: 0 !important;
}

.nova-service-detail-image {
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid #dce5ef;
  border-radius: 8px;
  background: #eef3f8;
}

.nova-service-detail-image img {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.nova-process-section .icon-box {
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  background: rgba(255, 122, 0, 0.11);
  box-shadow: inset 0 -8px 0 rgba(0, 168, 255, 0.08);
}

.nova-process-section .icon-box span,
.nova-process-section .icon-box i,
.nova-process-section .icon-box span::before,
.nova-process-section .icon-box i::before {
  display: inline-block;
  color: var(--nova-blue) !important;
  font-size: 34px !important;
  line-height: 1 !important;
}

.nova-process-section .single-item {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: center;
}

.nova-process-section .text-box h3 {
  margin-bottom: 14px;
}

.nova-blog-section .single-blog-post .img-holder .overlay-style-one .box .content a,
.nova-blog-section .single-blog-post .img-holder .overlay-style-one .box .content a i {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: var(--nova-orange) !important;
  border-color: var(--nova-orange) !important;
  color: #fff !important;
}

.nova-blog-section .single-blog-post .img-holder .overlay-style-one .box .content a {
  text-decoration: none !important;
}

.nova-blog-section .single-blog-post .img-holder .overlay-style-one .box .content a i {
  font-size: 15px !important;
  transform: none !important;
  opacity: 1 !important;
}

.nova-blog-section .single-blog-post .img-holder .overlay-style-one .box .content a:hover,
.nova-blog-section .single-blog-post .img-holder .overlay-style-one .box .content a:hover i {
  background: var(--nova-blue) !important;
  border-color: var(--nova-blue) !important;
  color: #fff !important;
}

@media only screen and (max-width: 991px) {
  .nova-topbar__inner {
    justify-content: center;
  }

  .nova-topbar__right {
    margin-left: 0;
  }

  .nova-services-section,
  .nova-blog-section {
    padding-top: 38px !important;
  }
}

.sitemap-card a:hover {
  color: var(--nova-orange);
}

@media only screen and (max-width: 991px) {
  .sitemap-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .sitemap-list {
    grid-template-columns: 1fr;
  }

  .financial-projections-area,
  .cart-area,
  .not-found-area,
  .video-gallery-area:not(.nova-about-section),
  .latest-blog-area:not(.nova-blog-section) {
    padding: 42px 0 !important;
  }

  .not-found-content h1 {
    font-size: 64px;
  }
}

/* Latest detail and homepage refinement pass */
.nova-nav__logo {
  background: transparent !important;
  box-shadow: none !important;
}

.has-submenu:focus-within .nova-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nova-hero__trust {
  display: flex !important;
  max-width: 760px !important;
  flex-wrap: nowrap;
  gap: 1px;
}

.nova-hero__trust span {
  flex: 0 0 auto;
  min-width: 0;
  white-space: nowrap;
}

.nova-services-section,
.nova-blog-section {
  padding-top: 34px !important;
}

.nova-services-section .sec-title,
.nova-blog-section .sec-title {
  margin-bottom: 0 !important;
  padding-bottom: 8px !important;
}

.nova-services-section .more-project,
.nova-blog-section .more-project {
  margin-bottom: 0 !important;
}

.nova-services-section .row.latest-project-area > .col-md-12:first-child,
.nova-blog-section .row.latest-project-area > .col-md-12:first-child {
  height: 0;
  min-height: 0;
  position: relative;
  z-index: 2;
}

.nova-services-section .row.latest-project-area > .col-md-12:first-child .more-project,
.nova-blog-section .row.latest-project-area > .col-md-12:first-child .more-project {
  transform: translateY(-28px);
}

.nova-services-section .latest-project-area,
.nova-blog-section .latest-project-area {
  margin-top: -2px !important;
}

.nova-process-section .icon-box {
  width: auto !important;
  height: auto !important;
  margin: 0 auto 18px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.nova-process-section .icon-box span,
.nova-process-section .icon-box i,
.nova-process-section .icon-box span::before,
.nova-process-section .icon-box i::before {
  font-size: 44px !important;
}

.single-shop-content .content-box h3,
.profit-improvement-content .sec-title h2 {
  line-height: 1.18 !important;
}

.profit-improvement-content > .col-md-12 {
  width: 100%;
  float: none;
  padding-right: 0;
  padding-left: 0;
}

.profit-improvement-content .sec-title {
  margin: 0 0 22px !important;
  padding: 0 0 13px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.profit-improvement-content .sec-title h2 {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 30px !important;
}

.related-product {
  padding: 24px 28px 30px !important;
}

.related-product .sec-title {
  margin: 0 0 20px !important;
  padding: 0 0 12px !important;
}

.related-product .sec-title h3 {
  margin: 0 !important;
  font-size: 24px !important;
  line-height: 1.2 !important;
}

.nova-product-partners {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

.nova-product-partner-card {
  padding: 18px;
  border: 1px solid rgba(255, 122, 0, 0.28);
  border-left: 4px solid var(--nova-orange);
  border-radius: 8px;
  background: #07111f;
  color: #fff;
  box-shadow: 0 18px 36px rgba(7, 17, 31, 0.16);
}

.nova-product-partner-card--blue {
  border-color: rgba(0, 168, 255, 0.28);
  border-left-color: var(--nova-blue);
  background: #092135;
}

.nova-product-partner-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.nova-product-partner-avatar {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a00, #ff9b28);
  color: #fff;
  font-weight: 900;
}

.nova-product-partner-card--blue .nova-product-partner-avatar {
  background: linear-gradient(135deg, #00a8ff, #3fc0ff);
}

.nova-product-partner-head strong,
.nova-product-partner-head small {
  display: block;
}

.nova-product-partner-head strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
}

.nova-product-partner-head small {
  color: #a9b8ca;
  font-size: 13px;
  margin-top: 3px;
}

.nova-product-partner-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 10px;
}

.nova-product-partner-phone,
.nova-product-partner-whatsapp {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.nova-product-partner-phone {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff !important;
}

.nova-product-partner-phone i {
  color: var(--nova-orange);
}

.nova-product-partner-card--blue .nova-product-partner-phone i {
  color: var(--nova-blue);
}

.nova-product-partner-whatsapp {
  background: linear-gradient(180deg, #24d365, #12b84f);
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(18, 184, 79, 0.24);
}

.nova-product-partner-phone:hover,
.nova-product-partner-whatsapp:hover {
  transform: translateY(-1px);
}

.latest-project-area .single-blog-post .img-holder .overlay-style-one .box .content a,
.latest-project-area .single-blog-post .img-holder .overlay-style-one .box .content a i,
.single-blog-post .img-holder .overlay-style-one .box .content a,
.single-blog-post .img-holder .overlay-style-one .box .content a i,
.blog-area .single-blog-post .img-holder .overlay-style-one .box .content a,
.blog-area .single-blog-post .img-holder .overlay-style-one .box .content a i {
  display: inline-flex !important;
  width: 42px !important;
  height: 42px !important;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  background: var(--nova-orange) !important;
  border-color: var(--nova-orange) !important;
  color: #fff !important;
}

.single-blog-post .img-holder .overlay-style-one .box .content a i,
.blog-area .single-blog-post .img-holder .overlay-style-one .box .content a i {
  font-size: 15px !important;
  line-height: 1 !important;
  opacity: 1 !important;
  transform: none !important;
}

.single-blog-post .published-date {
  background: var(--nova-orange) !important;
}

.latest-project-area .single-blog-post .img-holder .overlay-style-one .box .content a:hover,
.latest-project-area .single-blog-post .img-holder .overlay-style-one .box .content a:hover i,
.single-blog-post .img-holder .overlay-style-one .box .content a:hover,
.single-blog-post .img-holder .overlay-style-one .box .content a:hover i,
.blog-area .single-blog-post .img-holder .overlay-style-one .box .content a:hover,
.blog-area .single-blog-post .img-holder .overlay-style-one .box .content a:hover i {
  background: var(--nova-blue) !important;
  border-color: var(--nova-blue) !important;
  color: #fff !important;
}

.project-content .single-project {
  margin-bottom: 24px;
}

.post-pagination li.active a,
.post-pagination li a:hover {
  background: var(--nova-orange) !important;
  border-color: var(--nova-orange) !important;
  color: #fff !important;
}

@media only screen and (max-width: 1199px) {
  .nova-hero__trust {
    flex-wrap: wrap;
  }

  .nova-nav__menu.is-open .nova-nav__dropdown {
    display: none;
  }

  .nova-nav__links > li.has-submenu > a {
    cursor: pointer;
  }

  .nova-nav__menu.is-open .has-submenu:hover .nova-nav__dropdown,
  .nova-nav__menu.is-open .has-submenu:focus-within .nova-nav__dropdown {
    display: none !important;
  }

  .nova-nav__menu.is-open .has-submenu.is-submenu-open .nova-nav__dropdown {
    display: block !important;
  }

  .nova-nav__menu.is-open .has-submenu.is-submenu-open > a {
    color: var(--nova-blue);
    background: rgba(0, 168, 255, 0.08);
  }

  .nova-nav__menu.is-open .has-submenu.is-submenu-open > a i {
    transform: rotate(180deg);
  }
}

@media only screen and (max-width: 767px) {
  .nova-product-partner-actions {
    grid-template-columns: 1fr;
  }

  .related-product {
    padding: 20px 16px 24px !important;
  }
}

/* Final responsive and content polish */
.nova-product-partners {
  align-items: stretch;
}

.nova-product-partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nova-product-partner-actions {
  margin-top: auto;
}

.nova-contact-page {
  padding: 56px 0 70px;
  background: #f3f7fb;
}

.nova-contact-grid,
.nova-contact-partners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.nova-contact-grid {
  margin-top: 32px;
}

.nova-contact-partners {
  margin-top: 24px;
}

.nova-contact-info-card,
.nova-contact-partner,
.nova-contact-map {
  border: 1px solid rgba(9, 26, 45, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(9, 26, 45, 0.08);
}

.nova-contact-info-card {
  display: flex;
  min-height: 160px;
  align-items: center;
  gap: 22px;
  padding: 30px;
}

.nova-contact-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.1);
  color: var(--nova-orange);
  font-size: 26px;
}

.nova-contact-info-card h3,
.nova-contact-partner h3 {
  margin: 0 0 8px;
  color: var(--nova-navy);
  font-weight: 900;
}

.nova-contact-info-card p,
.nova-contact-info-card a,
.nova-contact-partner p {
  margin: 0;
  color: #526278;
  font-size: 16px;
  line-height: 1.7;
}

.nova-contact-partner {
  padding: 22px;
  border-left: 4px solid var(--nova-orange);
}

.nova-contact-partner--blue {
  border-left-color: var(--nova-blue);
}

.nova-contact-partner-main {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nova-contact-partner-avatar {
  display: inline-flex;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a00, #ff9b28);
  color: #fff;
  font-weight: 900;
}

.nova-contact-partner--blue .nova-contact-partner-avatar {
  background: linear-gradient(135deg, #00a8ff, #3fc0ff);
}

.nova-contact-partner-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 12px;
  margin-top: 22px;
}

.nova-contact-partner-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 7px;
  border: 1px solid rgba(9, 26, 45, 0.11);
  color: var(--nova-navy);
  font-weight: 900;
}

.nova-contact-partner-actions a i {
  color: var(--nova-orange);
}

.nova-contact-whatsapp {
  border-color: #12b84f !important;
  background: #12b84f;
  color: #fff !important;
}

.nova-contact-whatsapp i {
  color: #fff !important;
}

.nova-contact-map {
  margin-top: 24px;
  overflow: hidden;
}

.nova-contact-map iframe {
  display: block;
  width: 100% !important;
  min-height: 360px;
  border: 0;
}

.nova-gallery-page {
  padding: 58px 0 76px;
  background: #f3f7fb;
}

.nova-gallery-grid,
.nova-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

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

.nova-gallery-card,
.nova-video-card {
  overflow: hidden;
  border: 1px solid rgba(9, 26, 45, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(9, 26, 45, 0.08);
}

.nova-gallery-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
}

.nova-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.nova-gallery-card span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 7px;
  background: var(--nova-orange);
  color: #fff;
  font-weight: 900;
  padding: 10px 13px;
}

.nova-gallery-card:hover img {
  transform: scale(1.04);
}

.nova-video-card {
  padding: 8px;
}

.nova-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  background: #07111f;
}

.nova-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nova-testimonial-section {
  min-height: 0 !important;
  padding: 58px 0 !important;
  background-position: center !important;
}

.nova-testimonial-section .sec-title {
  margin-bottom: 22px !important;
}

.nova-testimonial-section .sec-title h1 {
  font-size: 32px !important;
  line-height: 1.2 !important;
}

.nova-testimonial-section .single-item {
  max-width: 760px;
  margin: 0 auto !important;
}

.nova-testimonial-section .text-holder p {
  max-width: 760px;
  margin: 0 auto 20px !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}

.nova-testimonial-section .client-info .img-holder img {
  width: 58px !important;
  height: 58px !important;
}

.nova-brand-section {
  padding: 48px 0 54px !important;
}

.nova-brand-section .sec-title {
  margin-bottom: 28px !important;
}

.nova-brand-section .sec-title h1 {
  font-size: 34px !important;
  line-height: 1.15 !important;
}

.nova-brand-section .brand .single-item {
  display: flex !important;
  height: 118px !important;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.nova-brand-section .brand .single-item img {
  max-height: 74px;
  object-fit: contain;
  padding: 14px !important;
}

.nova-process-section .single-item {
  min-height: 212px !important;
}

.nova-hero__trust span {
  white-space: nowrap;
}

@media only screen and (min-width: 1200px) {
  .nova-nav {
    gap: 16px;
  }

  .nova-nav__logo img {
    max-height: 58px;
  }

  .nova-nav__menu {
    gap: 14px;
  }

  .nova-nav__links {
    gap: 2px;
  }

  .nova-nav__links > li > a {
    min-height: 40px;
    padding: 0 9px;
    white-space: nowrap;
    font-size: 13px;
  }

  .nova-nav__actions {
    gap: 8px;
  }

  .nova-nav__call,
  .nova-nav__whatsapp {
    min-height: 42px;
    padding: 0 15px;
    white-space: nowrap;
  }
}

@media only screen and (min-width: 992px) {
  .single-shop-content .content-box .nova-product-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-shop-content .content-box .nova-product-partner-actions {
    grid-template-columns: 1fr;
  }
}

.single-shop-content .content-box .nova-product-partner-card {
  min-height: 92px;
  justify-content: center;
  padding: 12px;
  border-width: 1px;
  border-left-width: 3px;
  background: #fff;
  color: var(--nova-navy);
  box-shadow: none;
}

.single-shop-content .content-box .nova-product-partner-head {
  justify-content: center;
  margin-bottom: 9px;
}

.single-shop-content .content-box .nova-product-partner-head strong {
  color: var(--nova-navy);
  font-size: 15px;
  line-height: 1.2;
}

.single-shop-content .content-box .nova-product-partner-actions {
  width: 100%;
}

.single-shop-content .content-box .nova-product-partner-whatsapp {
  width: 100%;
  min-height: 34px;
  border-radius: 6px;
  font-size: 13px;
  box-shadow: none;
}

@media only screen and (max-width: 991px) {
  .nova-contact-grid,
  .nova-contact-partners,
  .nova-gallery-grid,
  .nova-video-grid {
    grid-template-columns: 1fr;
  }

  .nova-contact-partner-actions {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  html,
  body,
  .boxed_wrapper,
  .nova-site-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .nova-site-shell .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 16px;
    padding-left: 16px;
  }

  .nova-topbar {
    display: none !important;
  }

  .nova-header {
    position: relative;
    z-index: 50;
  }

  .nova-nav {
    min-height: 78px;
    padding: 0 16px;
  }

  .nova-nav__logo img {
    max-width: 176px;
    height: auto;
  }

  .nova-nav__toggle {
    width: 44px;
    height: 40px;
    flex: 0 0 44px;
  }

  .nova-nav__menu {
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    width: auto;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  .nova-nav__links,
  .nova-nav__actions {
    width: 100%;
  }

  .nova-hero {
    min-height: auto !important;
    padding: 34px 0 24px !important;
  }

  .nova-hero__inner {
    display: block !important;
    min-height: 0 !important;
    padding: 0;
  }

  .nova-hero__content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .nova-hero__brand {
    font-size: 22px !important;
    line-height: 1.1 !important;
  }

  .nova-hero h1 {
    max-width: 340px !important;
    font-size: 34px !important;
    line-height: 1.08 !important;
  }

  .nova-hero__text {
    max-width: 300px !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .nova-hero__buttons {
    display: flex !important;
    max-width: 340px;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nova-hero__buttons .nova-btn {
    width: auto !important;
    min-width: 138px;
    padding: 12px 13px;
    font-size: 14px;
  }

  .nova-hero__trust {
    display: grid !important;
    max-width: 340px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px !important;
  }

  .nova-hero__trust span {
    min-height: 42px;
    justify-content: flex-start;
    padding: 7px 6px !important;
    font-size: 11px !important;
    line-height: 1.15;
  }

  .nova-hero-services {
    grid-template-columns: 1fr !important;
  }

  .nova-section,
  .nova-contact-page,
  .nova-gallery-page {
    padding-top: 42px !important;
    padding-bottom: 46px !important;
  }

  .nova-process-section .row,
  .nova-services-section .project-content,
  .nova-blog-section .project-content {
    gap: 16px !important;
  }

  .nova-process-section .single-item {
    min-height: 0 !important;
    padding: 26px 18px !important;
  }

  .nova-contact-info-card,
  .nova-contact-partner {
    padding: 22px 18px;
  }

  .nova-contact-info-card {
    align-items: flex-start;
  }

  .nova-testimonial-section {
    padding: 44px 0 !important;
  }

  .nova-testimonial-section .sec-title h1,
  .nova-brand-section .sec-title h1 {
    font-size: 26px !important;
  }

  .nova-testimonial-section .text-holder p {
    font-size: 15px !important;
  }

  .nova-brand-section .brand .single-item {
    height: 94px !important;
  }

  .single-shop-content .content-box,
  .single-shop-content .img-holder {
    padding: 18px !important;
  }

  .single-shop-content .content-box .nova-product-partners {
    grid-template-columns: 1fr;
  }
}

/* Quote, menu, homepage action and gallery pagination refinements */
.nova-quote-card {
  border: 0;
}

.nova-quote-card__input {
  position: relative;
  display: block;
}

.nova-quote-card__input input {
  width: 100%;
  height: 44px;
  padding: 0 42px 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 700;
  outline: 0;
}

.nova-quote-card__input input::placeholder {
  color: rgba(255, 255, 255, 0.84);
}

.nova-quote-card__input input:focus {
  border-color: var(--nova-orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.14);
}

.nova-quote-card__input i {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  pointer-events: none;
}

.nova-quote-card__button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.nova-section-action-row,
.nova-services-section .row.latest-project-area,
.nova-blog-section .row.latest-project-area,
.nova-projects-section > .container > .row:nth-of-type(2) {
  height: auto !important;
  min-height: 0 !important;
  margin: -8px 0 24px !important;
  padding: 0 !important;
}

.nova-section-action-row > .col-md-12,
.nova-services-section .row.latest-project-area > .col-md-12:first-child,
.nova-blog-section .row.latest-project-area > .col-md-12:first-child {
  display: flex !important;
  height: auto !important;
  justify-content: flex-end;
  position: static !important;
}

.nova-section-action-row .more-project,
.nova-services-section .row.latest-project-area > .col-md-12:first-child .more-project,
.nova-blog-section .row.latest-project-area > .col-md-12:first-child .more-project {
  float: none !important;
  margin: 0 !important;
  transform: none !important;
}

.nova-products-section .more-project a,
.nova-services-section .more-project a,
.nova-projects-section .more-project a,
.nova-blog-section .more-project a {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 7px;
  background: #fff !important;
  color: var(--nova-navy) !important;
}

.nova-offer-page {
  padding: 58px 0 76px !important;
  background: #f3f7fb;
}

.nova-offer-shell {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  overflow: hidden;
  border: 1px solid rgba(9, 26, 45, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(9, 26, 45, 0.08);
}

.nova-offer-aside {
  padding: 34px;
  background: #07111f;
  color: #fff;
}

.nova-offer-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 122, 0, 0.14);
  color: var(--nova-orange);
  font-size: 24px;
}

.nova-offer-aside h2 {
  margin: 20px 0 12px;
  color: #fff;
  font-size: 28px;
  line-height: 1.18;
}

.nova-offer-aside p {
  color: #c5d1de;
  line-height: 1.75;
}

.nova-offer-aside ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.nova-offer-aside li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #edf5ff;
  font-weight: 800;
  padding: 8px 0;
}

.nova-offer-aside li i {
  color: var(--nova-orange);
}

.nova-offer-form {
  padding: 34px;
}

.nova-offer-form .contact-form input,
.nova-offer-form .contact-form select,
.nova-offer-form .contact-form textarea {
  width: 100%;
  border: 1px solid #dce6f0 !important;
  border-radius: 7px !important;
  background: #fff;
  color: var(--nova-navy);
  box-shadow: none;
}

.nova-offer-form .contact-form input,
.nova-offer-form .contact-form select {
  height: 52px !important;
}

.nova-offer-form .contact-form textarea {
  min-height: 142px;
}

.nova-offer-form .contact-form button {
  width: auto;
  min-width: 210px;
  border-radius: 7px;
  float: right;
}

.nova-testimonial-section {
  padding: 38px 0 !important;
}

.nova-testimonial-section .sec-title {
  margin-bottom: 16px !important;
}

.nova-testimonial-section .sec-title h1 {
  font-size: 28px !important;
}

.nova-testimonial-section .single-item {
  max-width: 680px;
  padding: 20px 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.5);
  backdrop-filter: blur(4px);
}

.nova-testimonial-section .text-holder p {
  margin-bottom: 14px !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

.nova-testimonial-section .client-info .img-holder img {
  width: 46px !important;
  height: 46px !important;
  border-width: 2px !important;
}

.nova-testimonial-section .name h3 {
  margin: 8px 0 2px !important;
  font-size: 16px !important;
}

.nova-testimonial-section .name p {
  font-size: 13px !important;
}

.nova-gallery-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.nova-gallery-pagination a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbe5ef;
  border-radius: 7px;
  background: #fff;
  color: var(--nova-navy);
  font-weight: 900;
}

.nova-gallery-pagination a.active,
.nova-gallery-pagination a:hover {
  border-color: var(--nova-orange);
  background: var(--nova-orange);
  color: #fff;
}

@media only screen and (min-width: 1200px) {
  .nova-nav__links > li > a {
    padding: 0 12px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 991px) {
  .nova-offer-shell {
    grid-template-columns: 1fr;
  }

  .nova-section-action-row > .col-md-12,
  .nova-services-section .row.latest-project-area > .col-md-12:first-child,
  .nova-blog-section .row.latest-project-area > .col-md-12:first-child {
    justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  .nova-offer-aside,
  .nova-offer-form {
    padding: 24px 18px;
  }

  .nova-offer-form .contact-form button {
    width: 100%;
    min-width: 0;
    float: none;
  }

  .nova-section-action-row,
  .nova-services-section .row.latest-project-area,
  .nova-blog-section .row.latest-project-area {
    margin: -4px 0 18px !important;
  }

  .nova-testimonial-section {
    padding: 34px 0 !important;
  }

  .nova-testimonial-section .single-item {
    padding: 18px 16px !important;
  }
}

/* Final homepage/admin feedback polish */
@media only screen and (min-width: 992px) {
  .nova-nav {
    gap: 20px;
  }

  .nova-nav__menu {
    justify-content: flex-start;
    gap: 18px;
  }

  .nova-nav__actions {
    margin-left: auto;
  }

  .nova-nav__links {
    gap: 10px;
  }

  .nova-nav__links > li > a {
    min-height: 46px;
    padding: 0 15px;
    font-size: 15px;
  }
}

.nova-home-products .nova-quote-card {
  align-self: flex-end;
  margin-top: 45px;
  min-height: 184px;
  padding: 16px;
  border: 1px solid rgba(255, 122, 0, 0.22);
  border-radius: 7px;
  box-shadow: 0 14px 32px rgba(3, 12, 26, 0.14);
}

.nova-home-products .nova-quote-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.12;
}

.nova-home-products .nova-quote-card p {
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1.45;
}

.nova-home-products .nova-quote-card__input {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  margin-bottom: 10px;
}

.nova-home-products .nova-quote-card__input input {
  height: 38px;
  padding: 0 36px 0 14px;
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(7, 17, 31, 0.42);
  font-size: 12px;
  font-weight: 800;
}

.nova-home-products .nova-quote-card__input i {
  right: 13px;
  color: #fff;
  opacity: 0.95;
}

.nova-home-products .nova-quote-card__button {
  min-height: 38px;
  border-radius: 6px;
  font-size: 15px;
}

.nova-home-products .nova-product-card {
  min-height: 220px;
}

.nova-home-products .nova-product-card img {
  height: 162px;
}

.nova-home-products .nova-product-card span {
  min-height: 57px;
}

.nova-testimonial-section {
  overflow: hidden;
  padding: 34px 0 36px !important;
}

.nova-testimonial-section::before {
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.94), rgba(7, 17, 31, 0.82)) !important;
}

.nova-testimonial-section .container {
  max-width: 960px;
}

.nova-testimonial-section .sec-title {
  margin-bottom: 20px !important;
}

.nova-testimonial-section .sec-title h1 {
  font-size: 27px !important;
}

.nova-testimonial-section .single-item {
  display: grid !important;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  max-width: 760px;
  min-height: 150px;
  margin: 0 auto !important;
  padding: 22px 28px !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 17, 31, 0.66);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.nova-testimonial-section .text-holder {
  text-align: left;
}

.nova-testimonial-section .text-holder p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

.nova-testimonial-section .client-info {
  min-width: 150px;
}

.nova-testimonial-section .client-info .img-holder img {
  width: 42px !important;
  height: 42px !important;
}

.nova-testimonial-section .owl-theme .owl-nav {
  margin: 0 !important;
}

.nova-testimonial-section .testimonial-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 62px;
}

.nova-testimonial-section .owl-controls {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  pointer-events: none;
}

.nova-testimonial-section .owl-theme .owl-nav .owl-prev,
.nova-testimonial-section .owl-theme .owl-nav .owl-next {
  top: 50% !important;
  width: 42px !important;
  height: 42px !important;
  margin-top: 0 !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  transform: translateY(-50%);
  pointer-events: auto;
}

.nova-testimonial-section .owl-theme .owl-nav .owl-prev {
  left: 0 !important;
}

.nova-testimonial-section .owl-theme .owl-nav .owl-next {
  right: 0 !important;
}

.nova-brand-section {
  padding: 30px 0 34px !important;
  background: #fff;
}

.nova-brand-section .sec-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px !important;
}

.nova-brand-section .sec-title h1 {
  max-width: none;
  margin: 0 !important;
  font-size: 28px !important;
  line-height: 1.1 !important;
  white-space: nowrap;
}

.nova-brand-section .sec-title .border {
  margin: 0 0 8px !important;
}

.nova-brand-section .brand .owl-stage-outer {
  padding-top: 14px !important;
}

.nova-brand-section .brand .single-item {
  height: 72px !important;
  border: 1px solid #e4ebf3;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(9, 26, 45, 0.05);
}

.nova-brand-section .brand .single-item img {
  max-height: 46px !important;
  width: auto !important;
  padding: 8px !important;
  opacity: 0.58;
  filter: grayscale(1);
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.nova-brand-section .brand .single-item:hover img {
  opacity: 0.95;
  filter: grayscale(0);
  transform: scale(1.03);
}

.nova-brand-section .owl-theme .owl-nav {
  top: -48px !important;
}

.nova-offer-form {
  padding: 56px 60px;
}

.nova-offer-form .contact-form form {
  display: block;
}

.nova-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 42px;
}

.nova-offer-field {
  min-width: 0;
}

.nova-offer-field--full {
  grid-column: 1 / -1;
}

.nova-offer-submit {
  display: flex;
  justify-content: flex-end;
}

.nova-offer-form .contact-form input,
.nova-offer-form .contact-form select,
.nova-offer-form .contact-form textarea {
  margin-bottom: 0 !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box;
}

.nova-offer-form .contact-form button {
  margin-top: 0 !important;
}

.nova-offer-form .contact-form .row > .col-md-12 {
  grid-column: 1 / -1;
}

.nova-offer-form .contact-form input,
.nova-offer-form .contact-form select {
  height: 58px !important;
}

.nova-offer-form .contact-form textarea {
  min-height: 160px;
  padding-top: 18px !important;
}

.nova-content-with-sidebar {
  display: flex;
  align-items: flex-start;
}

.nova-content-with-sidebar > [class*="col-"] {
  float: none !important;
}

.nova-help-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.nova-help-sidebar__card,
.nova-help-sidebar__cta {
  overflow: hidden;
  border: 1px solid #d6e1ed;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(9, 26, 45, 0.08);
}

.nova-help-sidebar__head {
  padding: 20px 22px 18px;
  background: #07111f;
  color: #fff;
}

.nova-help-sidebar__head h3 {
  margin: 0;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.nova-help-sidebar__head h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: #ff7800;
}

.nova-help-sidebar__head p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.5;
}

.nova-help-sidebar__card--soft .nova-help-sidebar__head {
  background: linear-gradient(135deg, #07111f 0%, #0d2c42 100%);
}

.nova-help-sidebar--compact .nova-help-sidebar__head {
  padding: 18px 22px 16px;
}

.nova-help-sidebar--compact .nova-help-sidebar__head h3 {
  font-size: 21px;
}

.nova-help-sidebar--compact .nova-help-sidebar__link {
  min-height: 48px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.nova-help-sidebar__links {
  display: grid;
}

.nova-help-sidebar__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 14px 20px;
  border-bottom: 1px solid #e5edf5;
  color: #07111f;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
  transition: color 0.2s ease, background 0.2s ease, padding 0.2s ease;
}

.nova-help-sidebar__link:last-child {
  border-bottom: 0;
}

.nova-help-sidebar__link i {
  flex: 0 0 auto;
  color: #ff7800;
  font-size: 14px;
}

.nova-help-sidebar__link:hover,
.nova-help-sidebar__link.active {
  padding-left: 24px;
  background: #ff7800;
  color: #fff;
}

.nova-help-sidebar__link:hover i,
.nova-help-sidebar__link.active i {
  color: #fff;
}

.nova-help-sidebar__cta {
  padding: 22px;
  background: linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(10, 45, 68, 0.94)), url("../assets/img/genel/nova-hero-dogalgaz-hirdavat.png") center/cover;
  color: #fff;
}

.nova-help-sidebar__cta strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 17px;
  line-height: 1.45;
}

.nova-help-sidebar__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  background: #ff7800;
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.nova-help-sidebar__cta a:hover {
  background: #00a8ff;
  color: #fff;
}

.nova-content-with-sidebar .content-box,
.nova-content-with-sidebar .accordion-box {
  min-width: 0;
}

.financial-projections-area .accordion-box .accordion {
  background: #fff !important;
  border: 1px solid #dce5ef !important;
  border-radius: 8px !important;
  box-shadow: 0 14px 32px rgba(7, 17, 31, 0.06);
  overflow: hidden;
}

.financial-projections-area .nova-bank-content-box {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.financial-projections-area .nova-bank-content-box .accordion-box .accordion {
  margin-bottom: 0 !important;
}

.financial-projections-area .accordion-box .accordion .accord-btn {
  border: 0 !important;
  min-height: 62px;
  padding: 18px 64px 18px 22px !important;
}

.financial-projections-area .accordion-box .accordion .accord-btn::after {
  background: rgba(255, 255, 255, 0.22) !important;
  color: #fff !important;
  line-height: 25px;
}

.financial-projections-area .accordion-box .accordion .accord-btn.active::after {
  background: rgba(7, 17, 31, 0.22) !important;
  color: #fff !important;
}

.financial-projections-area .accordion-box .accordion .accord-content {
  background: #fff !important;
  border-top: 1px solid #dce5ef !important;
  padding: 18px 22px !important;
}

.financial-projections-area .accordion-box .accordion .accord-content p {
  background: transparent !important;
  margin: 0 0 7px !important;
  padding: 0 !important;
}

.financial-projections-area .accordion-box .accordion .accord-content p:last-child {
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 1199px) {
  .nova-nav__links > li > a {
    padding: 0 10px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 991px) {
  .nova-offer-form {
    padding: 36px 34px;
  }

  .nova-home-products .nova-quote-card {
    align-self: stretch;
    margin-top: 0;
  }

  .nova-testimonial-section .single-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nova-testimonial-section .text-holder {
    text-align: center;
  }

  .nova-testimonial-section .owl-theme .owl-nav .owl-prev {
    left: 12px !important;
  }

  .nova-testimonial-section .owl-theme .owl-nav .owl-next {
    right: 12px !important;
  }

  .nova-brand-section .sec-title {
    display: block;
  }

  .nova-offer-grid {
    grid-template-columns: 1fr;
  }

  .nova-offer-submit {
    display: block;
  }

  .nova-content-with-sidebar {
    display: block;
  }

  .nova-help-sidebar {
    position: static;
    margin-top: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .nova-offer-form {
    padding: 24px 18px;
  }

  .nova-offer-grid {
    gap: 18px;
  }

  .nova-help-sidebar__head {
    padding: 18px 18px 16px;
  }

  .nova-help-sidebar__head h3 {
    font-size: 19px;
  }

  .nova-help-sidebar__link {
    min-height: 48px;
    padding: 13px 16px;
    font-size: 14px;
  }

  .nova-help-sidebar__cta {
    padding: 18px;
  }
}

/* Final responsive stability pass */
.nova-offer-grid {
  gap: 0;
  margin: -10px;
}

.nova-offer-field {
  min-width: 0;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.nova-testimonial-section .client-info {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-width: 190px;
  text-align: left;
}

.nova-testimonial-section .client-info .img-holder {
  flex: 0 0 auto;
  display: flex !important;
  width: 46px !important;
  height: 46px !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
}

.nova-testimonial-section .client-info .img-holder img,
.nova-testimonial-avatar {
  display: inline-flex !important;
  width: 46px !important;
  height: 46px !important;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nova-orange), #ff9a2d);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.nova-testimonial-section .name {
  min-width: 0;
}

.nova-testimonial-section .name h3,
.nova-testimonial-section .name p {
  text-align: left;
}

body.nova-menu-open .nova-floating-contact {
  display: none !important;
}

.nova-floating-contact {
  position: fixed !important;
  right: auto !important;
  bottom: 18px !important;
  left: 18px !important;
  z-index: 99999 !important;
  display: block !important;
}

.nova-floating-contact > div {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.nova-floating-contact .whatspp,
.nova-floating-contact .arama {
  width: auto !important;
  min-width: 146px !important;
  height: 46px !important;
  margin: 0 !important;
  padding: 0 16px !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  gap: 9px !important;
  box-shadow: 0 12px 30px rgba(3, 12, 26, 0.2);
}

.nova-floating-contact .whatspp {
  background: #00a8ff !important;
}

.nova-floating-contact .arama {
  background: #ff7a00 !important;
}

.nova-floating-contact .whatspp i,
.nova-floating-contact .arama i {
  font-size: 18px !important;
}

.nova-floating-contact .whatspp span,
.nova-floating-contact .arama span {
  display: inline-block;
}

@media only screen and (max-width: 1199px) {
  .nova-nav {
    display: flex !important;
    width: 100% !important;
    min-height: 76px;
    align-items: center !important;
    justify-content: space-between !important;
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

  .nova-nav__logo {
    margin-right: auto !important;
  }

  .nova-nav__logo img {
    max-width: 172px;
    max-height: 58px;
  }

  .nova-nav__toggle {
    position: relative;
    z-index: 1002;
    display: inline-flex !important;
    margin-left: auto !important;
    background: rgba(255, 255, 255, 0.12);
  }

  .nova-nav__menu {
    position: absolute !important;
    top: calc(100% + 1px) !important;
    right: 18px !important;
    left: 18px !important;
    z-index: 1001;
    width: auto !important;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    display: none !important;
    padding: 14px !important;
    border-radius: 8px;
  }

  .nova-nav__menu.is-open {
    display: flex !important;
  }

  .nova-nav__links,
  .nova-nav__actions {
    width: 100% !important;
  }

  .nova-nav__links > li > a,
  .nova-nav__call,
  .nova-nav__whatsapp {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  img,
  iframe,
  video {
    max-width: 100%;
  }

  .boxed_wrapper,
  .nova-site-shell,
  section,
  footer {
    max-width: 100%;
    overflow-x: hidden;
  }

  .nova-site-shell .container,
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .nova-header {
    position: relative !important;
  }

  .nova-nav {
    min-height: 72px;
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  .nova-nav__logo img {
    max-width: 158px;
  }

  .nova-nav__toggle {
    width: 42px !important;
    height: 38px !important;
    flex: 0 0 42px !important;
  }

  .nova-nav__menu {
    right: 12px !important;
    left: 12px !important;
  }

  .nova-hero h1 {
    max-width: 100% !important;
    font-size: 30px !important;
  }

  .nova-hero__text,
  .nova-hero__buttons,
  .nova-hero__trust {
    max-width: 100% !important;
  }

  .nova-hero__trust {
    grid-template-columns: 1fr !important;
  }

  .nova-home-products__grid,
  .nova-product-strip,
  .nova-feature-bar__grid,
  .nova-contact-grid,
  .nova-contact-partners,
  .nova-gallery-grid,
  .nova-video-grid,
  .nova-offer-shell,
  .nova-offer-grid {
    grid-template-columns: 1fr !important;
  }

  .nova-home-products .nova-product-card {
    min-height: 0;
  }

  .nova-home-products .nova-product-card img {
    height: 150px;
  }

  .nova-quote-card,
  .nova-home-products .nova-quote-card {
    width: 100%;
    min-height: 0;
    margin-top: 16px;
  }

  .nova-offer-form {
    padding: 22px 18px !important;
  }

  .nova-offer-grid {
    margin: -8px;
  }

  .nova-offer-field {
    padding: 8px;
  }

  .nova-offer-form .contact-form button {
    width: 100%;
  }

  .nova-testimonial-section {
    padding: 34px 0 !important;
  }

  .nova-testimonial-section .testimonial-carousel {
    max-width: 100%;
    padding: 0 48px;
  }

  .nova-testimonial-section .single-item {
    grid-template-columns: 1fr !important;
    gap: 18px;
    min-height: 0;
    padding: 20px 18px !important;
    text-align: left;
  }

  .nova-testimonial-section .client-info {
    min-width: 0;
    justify-content: flex-start;
  }

  .nova-testimonial-section .owl-theme .owl-nav .owl-prev,
  .nova-testimonial-section .owl-theme .owl-nav .owl-next {
    width: 38px !important;
    height: 38px !important;
  }

  .nova-testimonial-section .owl-theme .owl-nav .owl-prev {
    left: 2px !important;
  }

  .nova-testimonial-section .owl-theme .owl-nav .owl-next {
    right: 2px !important;
  }

  .footer-area .row,
  .footer-bottom {
    display: block;
  }

  .footer-area [class*="col-"],
  .footer-bottom .pull-left,
  .footer-bottom .pull-right {
    float: none !important;
    width: 100% !important;
  }

  .footer-area .single-footer-widget .we-do-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    margin: 0 !important;
  }

  .footer-area .single-footer-widget .we-do-list li {
    float: none !important;
    width: auto !important;
    max-width: none !important;
    margin-bottom: 0 !important;
    padding-right: 0 !important;
    padding-left: 13px !important;
  }

  .footer-area .single-footer-widget .we-do-list li a {
    display: block;
    font-size: 13px;
    line-height: 1.45;
  }

  .nova-floating-contact {
    right: auto !important;
    bottom: 12px !important;
    left: 12px !important;
  }

  .nova-floating-contact > div {
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 8px !important;
  }

  .nova-floating-contact .whatspp,
  .nova-floating-contact .arama {
    min-width: 0 !important;
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    border-radius: 50% !important;
  }

  .nova-floating-contact .whatspp span,
  .nova-floating-contact .arama span {
    display: none;
  }

  .scroll-to-top {
    right: 14px !important;
    bottom: 18px !important;
    left: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    border-color: var(--nova-orange) !important;
    background: var(--nova-orange) !important;
    font-size: 26px !important;
    line-height: 1 !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 100001 !important;
    box-shadow: 0 12px 28px rgba(3, 12, 26, 0.22) !important;
  }

  .scroll-to-top.is-visible {
    display: flex !important;
  }
}
