/* ==========================================================================
   Genevion Inc — Corporate Styles
   Inspired by Greenka template layout & color system
   ========================================================================== */

:root {
  --body-font-family: "Hind", sans-serif;
  --heading-font-family: "Rajdhani", sans-serif;
  --body-font-size: 16px;
  --heading-font-weight: 700;

  --brand-color: #ff7300;
  --brand-color-dark: #e66700;
  --brand-color-rgb: 255, 115, 0;
  --brand-color-1: #5ec251;
  --brand-color-1-dark: #4fb941;
  --brand-color-1-rgb: 94, 194, 81;

  --white-color: #fff;
  --dark-color: #182333;
  --dark-color-rgb: 24, 35, 51;
  --light-color: #f6f8fa;
  --text-color: #768492;
  --border-color: #eee;
  --border-radius: 0.45em;

  --display-one: clamp(2.75rem, 1.6rem + 3.5vw, 4.25rem);
  --heading-one: clamp(2.2rem, 1.3rem + 1.8vw, 3rem);
  --heading-two: clamp(1.85rem, 1.15rem + 1.3vw, 2.5rem);
  --heading-three: clamp(1.45rem, 1rem + 0.9vw, 1.85rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  color: var(--text-color);
  background: var(--white-color);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  color: var(--dark-color);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

a {
  color: var(--brand-color);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--brand-color-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Utilities ---------- */
.bg-dark-custom {
  background-color: var(--dark-color) !important;
}

.bg-light-custom {
  background-color: var(--light-color) !important;
}

.bg-brand {
  background-color: var(--brand-color) !important;
}

.bg-green {
  background-color: var(--brand-color-1) !important;
}

.text-brand {
  color: var(--brand-color) !important;
}

.text-green {
  color: var(--brand-color-1) !important;
}

.text-dark-custom {
  color: var(--dark-color) !important;
}

.text-muted-custom {
  color: var(--text-color) !important;
}

.br-28 {
  border-radius: 28px;
}

.br-16 {
  border-radius: 16px;
}

.br-12 {
  border-radius: 12px;
}

.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.section-pad-lg {
  padding: 110px 0;
}

.overlay-dark {
  position: relative;
}

.overlay-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(var(--dark-color-rgb), 0.78) 0%,
    rgba(var(--dark-color-rgb), 0.55) 100%
  );
  z-index: 1;
}

.overlay-dark > * {
  position: relative;
  z-index: 2;
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--dark-color);
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  padding: 10px 0;
}

.topbar a {
  color: rgba(255, 255, 255, 0.75);
}

.topbar a:hover {
  color: var(--brand-color);
}

.topbar .divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  margin: 0 14px;
}

/* ---------- Header / Nav ---------- */
.header-main {
  background: var(--white-color);
  box-shadow: 0 2px 20px rgba(24, 35, 51, 0.06);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow 0.3s ease;
}

.header-main.scrolled {
  box-shadow: 0 4px 28px rgba(24, 35, 51, 0.12);
}

.navbar-brand {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 1.65rem;
  color: var(--dark-color) !important;
  letter-spacing: 0.02em;
}

.navbar-brand span {
  color: var(--brand-color);
}

.navbar-nav .nav-link {
  font-family: var(--heading-font-family);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark-color) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--brand-color) !important;
}

.btn-brand {
  background: var(--brand-color);
  border: 2px solid var(--brand-color);
  color: #fff;
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-brand:hover {
  background: var(--brand-color-dark);
  border-color: var(--brand-color-dark);
  color: #fff;
}

.btn-brand-outline {
  background: transparent;
  border: 2px solid var(--brand-color);
  color: var(--brand-color);
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-brand-outline:hover {
  background: var(--brand-color);
  color: #fff;
}

.btn-white {
  background: #fff;
  border: 2px solid #fff;
  color: var(--dark-color);
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: var(--brand-color);
  border-color: var(--brand-color);
  color: #fff;
}

.btn-green {
  background: var(--brand-color-1);
  border: 2px solid var(--brand-color-1);
  color: #fff;
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-green:hover {
  background: var(--brand-color-1-dark);
  border-color: var(--brand-color-1-dark);
  color: #fff;
}

/* ---------- Hero ---------- */
.section-hero {
  padding: 40px 0 0;
}

.hero-slide {
  min-height: 560px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(var(--dark-color-rgb), 0.88) 0%,
    rgba(var(--dark-color-rgb), 0.45) 70%,
    rgba(var(--dark-color-rgb), 0.25) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-slide .hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 48px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 115, 0, 0.15);
  border: 1px solid rgba(255, 115, 0, 0.35);
  color: var(--brand-color);
  font-family: var(--heading-font-family);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-slide h1 {
  font-size: var(--display-one);
  color: #fff;
  max-width: 700px;
  margin-bottom: 18px;
}

.hero-slide p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 32px;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  z-index: 10;
  width: 9%;
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
  background-color: rgba(var(--dark-color-rgb), 0.45);
  border-radius: 50%;
  padding: 18px;
  background-size: 55% 55%;
}

/* ---------- Feature Cards (floating) ---------- */
.section-features {
  margin-top: -70px;
  position: relative;
  z-index: 5;
  padding-bottom: 20px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 12px 40px rgba(24, 35, 51, 0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(24, 35, 51, 0.14);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: #fff;
}

.feature-icon.orange {
  background: var(--brand-color);
}

.feature-icon.green {
  background: var(--brand-color-1);
}

.feature-icon.dark {
  background: var(--dark-color);
}

.feature-card h4 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
}

/* ---------- Section Titles ---------- */
.section-label {
  display: inline-block;
  font-family: var(--heading-font-family);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-color);
  margin-bottom: 10px;
}

.section-label.green {
  color: var(--brand-color-1);
}

.section-title {
  font-size: var(--heading-one);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  max-width: 560px;
}

.section-title-centered {
  text-align: center;
}

.section-title-centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- About ---------- */
.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}

.about-img-wrap .about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 48%;
  border: 6px solid #fff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(24, 35, 51, 0.15);
}

.about-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--brand-color);
  color: #fff;
  padding: 22px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(255, 115, 0, 0.35);
  z-index: 2;
}

.about-badge .num {
  font-family: var(--heading-font-family);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-badge .lbl {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 4px;
  display: block;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--dark-color);
  font-weight: 500;
}

.check-list li i {
  color: var(--brand-color-1);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ---------- Services ---------- */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 16px 40px rgba(24, 35, 51, 0.1);
  border-color: transparent;
  transform: translateY(-4px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card .svc-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(var(--brand-color-rgb), 0.1);
  color: var(--brand-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .svc-icon {
  background: var(--brand-color);
  color: #fff;
}

.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.service-card .read-more {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card .read-more:hover {
  color: var(--brand-color);
}

/* ---------- Stats / Fun Facts ---------- */
.section-stats {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 90px 0;
}

.section-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--dark-color-rgb), 0.88);
  z-index: 1;
}

.section-stats .container {
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.stat-item .stat-num {
  font-family: var(--heading-font-family);
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  font-weight: 700;
  color: var(--brand-color);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Preferences / Progress ---------- */
.progress-custom {
  height: 10px;
  border-radius: 50px;
  background: #e8ecf0;
  margin-bottom: 28px;
  overflow: visible;
}

.progress-custom .progress-bar {
  background: var(--brand-color);
  border-radius: 50px;
  position: relative;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-family: var(--heading-font-family);
  font-weight: 600;
  color: var(--dark-color);
  font-size: 1.05rem;
}

.progress-label span:last-child {
  color: var(--brand-color);
}

/* ---------- Products / Projects ---------- */
.product-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(var(--dark-color-rgb), 0.92) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.3s ease;
}

.product-card:hover .product-overlay {
  background: linear-gradient(
    180deg,
    rgba(var(--dark-color-rgb), 0.3) 0%,
    rgba(var(--dark-color-rgb), 0.95) 100%
  );
}

.product-cat {
  font-size: 0.85rem;
  color: var(--brand-color);
  font-family: var(--heading-font-family);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-overlay h4 {
  color: #fff;
  font-size: 1.25rem;
  margin: 0;
}

/* ---------- Contact Info Strip ---------- */
.contact-strip {
  background: var(--light-color);
  border-radius: 20px;
  padding: 40px 30px;
  margin-top: -50px;
  position: relative;
  z-index: 5;
  box-shadow: 0 12px 36px rgba(24, 35, 51, 0.08);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item .ci-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--brand-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: var(--text-color);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--brand-color);
}

/* ---------- FAQ ---------- */
.accordion-genevion .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 12px !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
}

.accordion-genevion .accordion-button {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-color);
  background: #fff;
  box-shadow: none !important;
  padding: 20px 24px;
}

.accordion-genevion .accordion-button:not(.collapsed) {
  color: var(--brand-color);
  background: #fff;
}

.accordion-genevion .accordion-button::after {
  background-image: none;
  content: "\F282";
  font-family: "bootstrap-icons";
  font-size: 1rem;
  transform: none;
  width: auto;
  height: auto;
}

.accordion-genevion .accordion-button:not(.collapsed)::after {
  content: "\F286";
  color: var(--brand-color);
}

.accordion-genevion .accordion-body {
  padding: 0 24px 20px;
  color: var(--text-color);
}

/* ---------- Team ---------- */
.team-card {
  text-align: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  box-shadow: 0 14px 36px rgba(24, 35, 51, 0.1);
  transform: translateY(-4px);
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-card .team-body {
  padding: 22px 18px;
}

.team-card .role {
  color: var(--brand-color);
  font-size: 0.9rem;
  font-family: var(--heading-font-family);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.team-card h5 {
  margin: 0;
  font-size: 1.25rem;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.testimonial-card .stars {
  color: var(--brand-color);
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h6 {
  margin: 0;
  font-size: 1.1rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-color);
}

/* ---------- Blog ---------- */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 14px 36px rgba(24, 35, 51, 0.1);
  transform: translateY(-4px);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card .blog-body {
  padding: 24px;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--brand-color);
  font-family: var(--heading-font-family);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.blog-card h4 a {
  color: var(--dark-color);
}

.blog-card h4 a:hover {
  color: var(--brand-color);
}

/* ---------- Page Banner ---------- */
.page-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 0 80px;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--dark-color-rgb), 0.8);
  z-index: 1;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  color: #fff;
  font-size: var(--heading-one);
  margin-bottom: 12px;
}

.breadcrumb-custom {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--heading-font-family);
  font-weight: 600;
}

.breadcrumb-custom li,
.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-custom a:hover {
  color: var(--brand-color);
}

.breadcrumb-custom li.active {
  color: var(--brand-color);
}

.breadcrumb-custom .sep {
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Contact Form ---------- */
.form-genevion .form-control,
.form-genevion .form-select {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--dark-color);
  background: var(--light-color);
}

.form-genevion .form-control:focus,
.form-genevion .form-select:focus {
  border-color: var(--brand-color);
  box-shadow: 0 0 0 3px rgba(var(--brand-color-rgb), 0.15);
  background: #fff;
}

.form-genevion textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-color);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer-title {
  font-family: var(--heading-font-family);
  font-weight: 700;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.footer-brand {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand span {
  color: var(--brand-color);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-menu a:hover {
  color: var(--brand-color);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--brand-color);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  margin-top: 50px;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--brand-color);
  color: #fff;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-color);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(255, 115, 0, 0.4);
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--brand-color-dark);
}

/* ---------- Product Catalog Table ---------- */
.catalog-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.catalog-table thead {
  background: var(--dark-color);
  color: #fff;
}

.catalog-table th {
  font-family: var(--heading-font-family);
  font-weight: 700;
  padding: 16px 20px;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.catalog-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
  color: var(--dark-color);
}

.catalog-table tbody tr:last-child td {
  border-bottom: none;
}

.catalog-table tbody tr:hover {
  background: var(--light-color);
}

.badge-cat {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-family: var(--heading-font-family);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.badge-cat.orange {
  background: rgba(var(--brand-color-rgb), 0.12);
  color: var(--brand-color);
}

.badge-cat.green {
  background: rgba(var(--brand-color-1-rgb), 0.12);
  color: var(--brand-color-1);
}

.badge-cat.dark {
  background: rgba(var(--dark-color-rgb), 0.08);
  color: var(--dark-color);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .section-features {
    margin-top: -40px;
  }

  .about-img-wrap .about-img-secondary {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 16px;
    border: none;
  }

  .about-badge {
    left: 10px;
    top: 10px;
  }

  .hero-slide {
    min-height: 480px;
  }

  .hero-slide .hero-inner {
    padding: 60px 28px;
  }

  .section-pad {
    padding: 70px 0;
  }

  .section-stats {
    background-attachment: scroll;
  }

  .contact-strip {
    margin-top: 0;
  }
}

@media (max-width: 575.98px) {
  .hero-slide h1 {
    font-size: 2.2rem;
  }

  .topbar .divider {
    display: none;
  }
}
