/* ============================================
   ✅ FONT IMPORTS
============================================ */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700;900&display=swap");

/* ============================================
   ✅ ROOT VARIABLES
============================================ */
:root {
  --primary: #c7a15a;
  --secondary: #111111;
  --background: #f8f7f4;
  --gold-dark: #7a581f;
  --gold-light: #ecbf7c;
  --text-dark: #1b1c1c;
  --text-gray: #444748;
  --white: #ffffff;
  --black: #000000;
  --bg-light: #fbf9f8;
  --bg-alt: #f5f3f3;
}

/* ============================================
   ✅ BASE STYLES
============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Titillium Web", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Titillium Web", sans-serif;
}

section {
  scroll-margin-top: 70px;
}

.container {
  max-width: 1300px;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   ✅ UTILITY CLASSES
============================================ */
/* Colors */
.text-gold {
  color: var(--gold-dark);
}
.text-gold-light {
  color: var(--gold-light);
}
.text-secondary-custom {
  color: var(--gold-dark);
}
.text-primary-custom {
  color: var(--black);
}
.text-on-surface-variant {
  color: var(--text-gray);
  font-size: 0.75rem;
}

/* Backgrounds */
.bg-primary-custom {
  background-color: var(--black);
}
.bg-secondary-custom {
  background-color: var(--gold-dark);
}
.bg-surface-container {
  background-color: #efeded;
}
.bg-surface-container-low {
  background-color: var(--bg-alt);
}
.section-bg {
  background-color: var(--bg-light);
}
.section-bg-alt {
  background-color: var(--bg-alt);
}

/* Borders */
.border-secondary-custom {
  border-color: var(--gold-dark);
}
.border-outline-variant {
  border-color: #c4c7c7;
}

/* Typography */
.letter-spacing-01 {
  letter-spacing: 0.1em;
}
.letter-spacing-02 {
  letter-spacing: 0.2em;
}
.letter-spacing-03 {
  letter-spacing: 0.3em;
}

/* Dividers */
.hairline-divider {
  height: 1px;
  background-color: rgba(116, 120, 120, 0.2);
  width: 100%;
}

.heading-with-line {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}
.heading-with-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--gold-dark);
}

.section-heading-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading-wrapper .section-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}
.section-heading-wrapper .heading-divider {
  width: 60px;
  height: 2px;
  background-color: var(--gold-dark);
  margin: 0 auto;
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--black);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  transition: background 0.3s;
}
.btn-primary-custom:hover {
  background-color: var(--text-gray);
  color: var(--white);
}

/* ============================================
   ✅ HEADER / NAVIGATION
============================================ */
.site-header .main-header {
  width: 100%;
  z-index: 10;
  background: var(--white) !important;
  padding: 10px 0;
}
.site-header.sticky .main-header {
  position: fixed !important;
  top: 0;
  background: var(--white) !important;
  padding: 12px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.4s ease;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav > li {
  position: relative;
}
.site-header .nav > li > a {
  text-decoration: none;
  padding: 5px 15px;
  font-weight: 600 !important;
  transition: all 0.3s ease;
  display: inline-block;
  color: var(--black) !important;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
  background: var(--secondary);
  padding: 5px 15px;
  color: var(--white) !important;
}
.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: #333;
  display: block;
  font-weight: 400;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: #f8f9fa;
  color: #0d6efd;
}
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}
@media (max-width: 991px) {
  .site-header .nav {
    display: none;
  }
}

.logo-box img {
  width: 200px;
  height: auto;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: var(--primary) !important;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
#menu-primary-1 li {
  padding: 10px;
  border-bottom: 1px solid var(--white);
}
#menu-primary-1 li a {
  color: var(--white) !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

/* ============================================
   ✅ HERO SECTION
============================================ */
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.4) 70%,
    transparent 100%
  );
}
.hero-heading {
  font-family: "Libre Caslon Text", serif;
}
.hero-description {
  font-size: 1.1rem;
}
.hero-divider-heading {
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-divider-heading::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
}
.hero-highlight-box {
  max-width: 100%;
  clip-path: polygon(50% 0%, 70% 0, 100% 100%, 0 100%, 0 0);
  background: rgb(35 35 35);
  padding: 2rem 2.5rem;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35%;
}
.hero-highlight-text {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
.hero-highlight-gold {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--gold-light);
}
.highlight-content {
  position: relative;
  padding-left: 20px;
}
.highlight-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--gold-dark);
}

/* ============================================
   ✅ PRODUCT RANGE
============================================ */
.product-image-wrapper {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.product-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.product-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
.product-card {
  transition: transform 0.3s ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
}
.product-card img {
  transition: transform 0.7s ease;
}
.product-card:hover img {
  transform: scale(1.1);
}
.product-card-wrapper {
  position: relative;
  padding: 0 15px;
}
.product-card-wrapper:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 70%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(122, 88, 31, 0.15) 30%,
    rgba(122, 88, 31, 0.5) 50%,
    rgba(122, 88, 31, 0.15) 70%,
    transparent 100%
  );
}
@media (max-width: 991px) {
  .product-card-wrapper:not(:last-child)::after {
    display: none;
  }
}

/* ============================================
   ✅ WHY INCARV
============================================ */
.why-section-wrapper {
  position: relative;
}
.why-section-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(122, 88, 31, 0.2) 30%,
    rgba(122, 88, 31, 0.4) 50%,
    rgba(122, 88, 31, 0.2) 70%,
    transparent 100%
  );
}
@media (max-width: 991px) {
  .why-section-wrapper::after {
    display: none;
  }
}
.why-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.why-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 20px;
}

/* ============================================
   ✅ SIGNATURE TECHNOLOGIES
============================================ */
.signature-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.signature-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 15px;
}

/* ============================================
   ✅ ENGINEERED FOR EXCELLENCE
============================================ */
.engineered-wrapper {
  position: relative;
}
.engineered-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(122, 88, 31, 0.2) 30%,
    rgba(122, 88, 31, 0.4) 50%,
    rgba(122, 88, 31, 0.2) 70%,
    transparent 100%
  );
}
@media (max-width: 991px) {
  .engineered-wrapper::after {
    display: none;
  }
}
.engineered-bg-wrapper {
  min-height: 420px;
  overflow: hidden;
}
.engineered-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%),
    linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  mask-image:
    linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%),
    linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}
.engineered-check-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
  filter: brightness(0) saturate(100%) invert(45%) sepia(94%) saturate(1173%) hue-rotate(23deg) brightness(95%) contrast(101%);
}
.engineered-text-dark {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
}

/* ============================================
   ✅ COLORS & FINISHES
============================================ */
.color-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #c4c7c7;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}
.color-name {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
}

/* ============================================
   ✅ PERFECT FOR
============================================ */
.perfect-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}
.perfect-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ============================================
   ✅ FOOTER HERO
============================================ */
.footer-hero-section {
  min-height: 300px;
  display: flex;
  align-items: center;
}
.warranty-col {
  position: relative;
}
.warranty-col::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 10%;
  height: 80%;
  width: 2px;
  background: var(--gold-light);
}
@media (max-width: 991px) {
  .warranty-col::after {
    display: none;
  }
}

/* ============================================
   ✅ ABOUT HERO
============================================ */
.about-hero-section {
  min-height: 100vh;
  background-color: #1a1a1a;
}
.about-hero-heading {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
}
.about-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.about-feature-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 8px;
}
.about-feature-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0;
}
.about-feature-sub {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 0;
}
.about-description-text {
  font-family: "Titillium Web", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   ✅ COMPANY PROFILE
============================================ */
.company-hero-heading {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
}
.company-hero-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--gold-dark);
}
.company-left-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 1rem;
}
.company-image-wrapper {
  min-height: 480px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(100% 0, 100% 100%, 39% 100%, 0% 53%, 39% 0);
}
.company-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.7s ease;
}
.company-image-wrapper:hover .company-bg-image {
  transform: scale(1.05);
}
.company-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
  pointer-events: none;
}
.company-image-center-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}
.company-image-center-tag {
  font-family: "Titillium Web", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
}
.company-image-center-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.company-right-content {
 background: #18252d;
    padding: 3rem 20px;
    display: flex;
    align-items: center;
    min-height: 480px;
}
.company-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.company-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold-dark);
}
.company-section-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}
.company-mission-list li {
  font-size: 0.9rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	display:flex;
	align-items: center;
	padding: 10px 0 10px;
	gap:10px;
}
.company-mission-list li:last-child {
  border-bottom: none;
}
.mission-list-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Brand Footer */
.company-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.company-brand-image {
  flex-shrink: 0;
}
.company-brand-image img {
  max-height: 50px;
  width: auto;
}
.company-brand-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.company-brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: black;
  margin-bottom: 0;
}
.company-brand-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 0;
}
.company-brand-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem !important;
  margin-top: 1rem !important;
}

/* ============================================
   ✅ SERVICES SECTION
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.service-item {
  position: relative;
  padding: 0 10px;
}
.service-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(122, 88, 31, 0.15) 30%,
    rgba(122, 88, 31, 0.3) 50%,
    rgba(122, 88, 31, 0.15) 70%,
    transparent 100%
  );
}
.service-card {
  text-align: center;
  transition: all 0.4s ease;
  padding: 1.5rem 0.5rem;
}
.service-card:hover {
  transform: translateY(-4px);
}
.service-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.service-card:hover .service-icon-wrapper {
  transform: scale(1.05);
}
.service-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.service-title-line1,
.service-title-line2 {
  display: block;
}
.service-title-line2 {
  color: var(--gold-dark);
}
.service-description {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-gray);
}

/* ============================================
   ✅ WHY CHOOSE INCARV
============================================ */
.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.4rem 0;
  transition: all 0.3s ease;
}

.why-check-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 3px;
}
.why-choose-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-gray);
}
.why-choose-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
}
.why-choose-image-wrapper img {
  transition: transform 0.7s ease;
  min-height: 500px;
  object-fit: cover;
}
.why-choose-image-wrapper:hover img {
  transform: scale(1.03);
}

/* ============================================
   ✅ RESPONSIVE BREAKPOINTS
============================================ */
@media (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-item:nth-child(3)::after,
  .service-item:nth-child(6)::after {
    display: none;
  }
}

@media (max-width: 991px) {
  .company-image-wrapper {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    min-height: 350px;
  }
  .company-left-content,
  .company-right-content {
    min-height: auto;
    padding: 2rem;
  }
  .company-left-content { order: 1; }
  .company-image-wrapper { order: 2; }
  .company-right-content { order: 3; }
  
  .why-section-wrapper::after,
  .engineered-wrapper::after {
    display: none;
  }
  
  .hero-highlight-box {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-item:nth-child(2)::after,
  .service-item:nth-child(4)::after,
  .service-item:nth-child(6)::after {
    display: none;
  }
  .service-card { padding: 1.5rem 1rem; }
  .service-icon-wrapper { width: 60px; height: 60px; }
  .service-icon { width: 30px; height: 30px; }
  .service-title { font-size: 1rem; }
  .service-description { font-size: 0.85rem; }

  .company-hero-heading { font-size: 2rem; }
  .company-left-text { font-size: 0.85rem; }
  .company-image-wrapper { min-height: 250px; }
  .company-image-center-tag { font-size: 1.8rem; }
  .company-right-content { padding: 1.5rem; }
  .company-section-title { font-size: 1.1rem; }
  .company-section-text,
  .company-mission-list li { font-size: 0.85rem; }
  .company-brand-wrapper { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .company-brand-image img { max-height: 40px; }
  .company-brand-name { font-size: 1.1rem; }

  .about-hero-section { min-height: auto; padding: 80px 0 40px; }
  .about-hero-heading { font-size: 2.2rem; }
  .about-feature-icon { width: 36px; height: 36px; }
  .about-feature-label { font-size: 0.7rem; }
  .about-feature-sub { font-size: 0.6rem; }
  .about-description-text { font-size: 0.95rem; }

  .hero-highlight-box {
    width: 90%;
    padding: 1.5rem;
  }
  .hero-highlight-text,
  .hero-highlight-gold {
    font-size: 1rem;
  }
  .footer-hero-section { min-height: auto; padding: 3rem 0; }
  .footer-hero-section .d-flex.flex-wrap { justify-content: center !important; }
  .warranty-col::after { display: none; }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-item::after {
    display: none !important;
  }
}

@media (max-width: 392px) {
  .hero-highlight-box {
    width: 100%;
    padding: 1rem;
  }
  .hero-highlight-text,
  .hero-highlight-gold {
    font-size: 0.9rem;
  }
}

/* ============================================
   ✅ HIDE HEADER & FOOTER (for landing pages)
============================================ */
.main-header,
footer {
  display: none;
}
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 8px rgba(195, 180, 186, 0.49);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 99;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\f102";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: var(--primary);
  inset: 0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
}
ul.ftricons figure img {
  width: 15px;
  filter: brightness(100);
}
.underline1 {
  height: 2px;
  width: 100px;
  background: var(--secondary);
  margin: auto;
  margin-top: 8px;
}
.underline2 {
  height: 4px;
  width: 30px;
  background: var(--yellow);
  margin: auto;
  margin-top: -3px;
}
.no-margin {
  margin-left: 0px;
}