/* =========================================================
   LAXMI CONSTRUCTION COMPANY
   MASTER STYLESHEET
   ---------------------------------------------------------
   Brand: Laxmi Construction Company
   Location: Kanpur, Uttar Pradesh
   ========================================================= */

/* =========================================================
   01. ROOT / DESIGN SYSTEM
========================================================= */

:root {
  /* -----------------------------------------------------
       BRAND COLORS
    ----------------------------------------------------- */

  --lc-primary: #e91e25;
  --lc-primary-dark: #b51218;
  --lc-primary-light: #ff3b3f;

  --lc-orange: #f47b3a;
  --lc-orange-dark: #d85d22;
  --lc-orange-light: #ff9a5b;

  /* -----------------------------------------------------
       DARK COLORS
    ----------------------------------------------------- */

  --lc-black: #080808;
  --lc-dark: #111111;
  --lc-dark-2: #171717;
  --lc-dark-3: #222222;
  --lc-charcoal: #2b2b2b;
  --lc-gray-dark: #444444;

  /* -----------------------------------------------------
       LIGHT COLORS
    ----------------------------------------------------- */

  --lc-white: #ffffff;
  --lc-off-white: #fafaf8;
  --lc-light: #f5f5f3;
  --lc-light-gray: #eeeeec;
  --lc-gray: #d8d8d5;

  /* -----------------------------------------------------
       TEXT COLORS
    ----------------------------------------------------- */

  --lc-heading: #111111;
  --lc-text: #222222;
  --lc-body: #555555;
  --lc-text-light: #666666;
  --lc-text-muted: #888888;

  /* -----------------------------------------------------
       STATUS COLORS
    ----------------------------------------------------- */

  --lc-success: #16a34a;
  --lc-warning: #f59e0b;
  --lc-danger: #dc2626;

  /* -----------------------------------------------------
       BORDERS
    ----------------------------------------------------- */

  --lc-border: #e5e5e5;
  --lc-border-light: #eeeeee;
  --lc-border-dark: #333333;

  /* -----------------------------------------------------
       BACKGROUNDS
    ----------------------------------------------------- */

  --lc-bg-primary: #ffffff;
  --lc-bg-light: #f7f7f5;
  --lc-bg-dark: #111111;
  --lc-bg-black: #080808;

  /* -----------------------------------------------------
       TYPOGRAPHY
    ----------------------------------------------------- */

  --lc-font-heading: "Montserrat", sans-serif;
  --lc-font-body: "Poppins", sans-serif;

  /* -----------------------------------------------------
       FONT WEIGHTS
    ----------------------------------------------------- */

  --lc-fw-light: 300;
  --lc-fw-regular: 400;
  --lc-fw-medium: 500;
  --lc-fw-semibold: 600;
  --lc-fw-bold: 700;
  --lc-fw-extrabold: 800;
  --lc-fw-black: 900;

  /* -----------------------------------------------------
       SECTION SPACING
    ----------------------------------------------------- */

  --lc-section-padding: 100px;
  --lc-section-padding-md: 80px;
  --lc-section-padding-sm: 65px;

  /* -----------------------------------------------------
       CONTAINER
    ----------------------------------------------------- */

  --lc-container: 1320px;

  /* -----------------------------------------------------
       BORDER RADIUS
    ----------------------------------------------------- */

  --lc-radius-sm: 4px;
  --lc-radius: 8px;
  --lc-radius-lg: 14px;
  --lc-radius-xl: 20px;
  --lc-radius-pill: 100px;

  /* -----------------------------------------------------
       SHADOWS
    ----------------------------------------------------- */

  --lc-shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.06);

  --lc-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);

  --lc-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);

  /* -----------------------------------------------------
       TRANSITIONS
    ----------------------------------------------------- */

  --lc-transition: all 0.3s ease;

  --lc-transition-fast: all 0.2s ease;

  --lc-transition-slow: all 0.5s ease;

  /* -----------------------------------------------------
       Z-INDEX
    ----------------------------------------------------- */

  --lc-z-dropdown: 1000;
  --lc-z-sticky: 1020;
  --lc-z-fixed: 1030;
  --lc-z-modal: 1050;
  --lc-z-toast: 1090;
}

/* =========================================================
   02. RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;

  overflow-x: hidden;

  background: var(--lc-bg-primary);

  color: var(--lc-body);

  font-family: var(--lc-font-body);
  font-size: 15px;
  font-weight: var(--lc-fw-regular);

  line-height: 1.7;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================================================
   03. GLOBAL ELEMENTS
========================================================= */

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--lc-transition);
}

a:hover {
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 15px;
}

p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   04. HEADINGS
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 15px;

  color: var(--lc-heading);

  font-family: var(--lc-font-heading);

  line-height: 1.2;
}

h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: var(--lc-fw-extrabold);
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: var(--lc-fw-extrabold);
}

h3 {
  font-size: clamp(25px, 3vw, 34px);
  font-weight: var(--lc-fw-bold);
}

h4 {
  font-size: 24px;
  font-weight: var(--lc-fw-bold);
}

h5 {
  font-size: 20px;
  font-weight: var(--lc-fw-semibold);
}

h6 {
  font-size: 17px;
  font-weight: var(--lc-fw-semibold);
}

/* =========================================================
   05. TEXT UTILITIES
========================================================= */

.lc-text-primary {
  color: var(--lc-primary) !important;
}

.lc-text-orange {
  color: var(--lc-orange) !important;
}

.lc-text-dark {
  color: var(--lc-dark) !important;
}

.lc-text-white {
  color: var(--lc-white) !important;
}

.lc-text-muted {
  color: var(--lc-text-muted) !important;
}

/* =========================================================
   06. BACKGROUND UTILITIES
========================================================= */

.lc-bg-white {
  background-color: var(--lc-white) !important;
}

.lc-bg-light {
  background-color: var(--lc-bg-light) !important;
}

.lc-bg-dark {
  background-color: var(--lc-bg-dark) !important;
}

.lc-bg-black {
  background-color: var(--lc-bg-black) !important;
}

.lc-bg-primary {
  background-color: var(--lc-primary) !important;
}

/* =========================================================
   07. CONTAINER
========================================================= */

.lc-container {
  width: min(100% - 40px, var(--lc-container));
  margin-inline: auto;
}

/* =========================================================
   08. SECTION
========================================================= */

.lc-section {
  position: relative;
  padding: var(--lc-section-padding) 0;
}

.lc-section-sm {
  padding: var(--lc-section-padding-sm) 0;
}

.lc-section-dark {
  background-color: var(--lc-bg-dark);
}

.lc-section-light {
  background-color: var(--lc-bg-light);
}

/* =========================================================
   09. SECTION HEADING
========================================================= */

.lc-section-title {
  margin-bottom: 50px;
}

.lc-section-title.center {
  text-align: center;
}

.lc-section-title.center .lc-section-description {
  margin-inline: auto;
}

/* Small red/orange label */

.lc-section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 14px;

  color: var(--lc-primary);

  font-family: var(--lc-font-heading);
  font-size: 13px;
  font-weight: var(--lc-fw-bold);

  letter-spacing: 2px;
  text-transform: uppercase;
}

.lc-section-subtitle::before {
  content: "";

  width: 35px;
  height: 2px;

  background: var(--lc-orange);

  flex-shrink: 0;
}

/* White subtitle for dark sections */

.lc-section-title.light .lc-section-subtitle {
  color: var(--lc-orange-light);
}

/* Section heading */

.lc-section-heading {
  margin: 0;

  color: var(--lc-heading);

  font-family: var(--lc-font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: var(--lc-fw-extrabold);

  line-height: 1.12;
}

.lc-section-title.light .lc-section-heading {
  color: var(--lc-white);
}

/* Section description */

.lc-section-description {
  max-width: 680px;

  margin-top: 18px;

  color: var(--lc-text-light);

  font-size: 16px;
  line-height: 1.8;
}

.lc-section-title.light .lc-section-description {
  color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   10. ACCENT LINE
========================================================= */

.lc-accent-line {
  width: 60px;
  height: 4px;

  margin: 18px 0 25px;

  background: var(--lc-primary);

  position: relative;
}

.lc-accent-line::after {
  content: "";

  position: absolute;

  left: 70px;
  top: 0;

  width: 20px;
  height: 4px;

  background: var(--lc-orange);
}

/* =========================================================
   11. BUTTONS
========================================================= */

.lc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 52px;

  padding: 13px 28px;

  border: 2px solid transparent;
  border-radius: var(--lc-radius-sm);

  font-family: var(--lc-font-heading);
  font-size: 13px;
  font-weight: var(--lc-fw-bold);

  line-height: 1;

  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  cursor: pointer;

  transition: var(--lc-transition);
}

/* Primary */

.lc-btn-primary {
  background: var(--lc-primary);
  border-color: var(--lc-primary);

  color: var(--lc-white);
}

.lc-btn-primary:hover {
  background: var(--lc-primary-dark);
  border-color: var(--lc-primary-dark);

  color: var(--lc-white);

  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 37, 0.25);
}

/* Orange */

.lc-btn-orange {
  background: var(--lc-orange);
  border-color: var(--lc-orange);

  color: var(--lc-white);
}

.lc-btn-orange:hover {
  background: var(--lc-orange-dark);
  border-color: var(--lc-orange-dark);

  color: var(--lc-white);

  transform: translateY(-2px);
}

/* Dark */

.lc-btn-dark {
  background: var(--lc-dark);
  border-color: var(--lc-dark);

  color: var(--lc-white);
}

.lc-btn-dark:hover {
  background: var(--lc-black);
  border-color: var(--lc-black);

  color: var(--lc-white);

  transform: translateY(-2px);
}

/* Outline */

.lc-btn-outline {
  background: transparent;
  border-color: var(--lc-primary);

  color: var(--lc-primary);
}

.lc-btn-outline:hover {
  background: var(--lc-primary);
  color: var(--lc-white);

  transform: translateY(-2px);
}

/* White */

.lc-btn-white {
  background: var(--lc-white);
  border-color: var(--lc-white);

  color: var(--lc-dark);
}

.lc-btn-white:hover {
  background: transparent;
  border-color: var(--lc-white);

  color: var(--lc-white);

  transform: translateY(-2px);
}

/* White outline */

.lc-btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);

  color: var(--lc-white);
}

.lc-btn-outline-white:hover {
  background: var(--lc-white);
  border-color: var(--lc-white);

  color: var(--lc-dark);
}

/* Button arrow */

.lc-btn i {
  transition: transform 0.3s ease;
}

.lc-btn:hover i {
  transform: translateX(4px);
}

/* =========================================================
   12. IMAGE
========================================================= */

.lc-img-cover {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.lc-img-contain {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

/* =========================================================
   13. OVERLAY
========================================================= */

.lc-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  pointer-events: none;
}

.lc-overlay-dark {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.lc-overlay-gradient {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

/* =========================================================
   14. CARDS
========================================================= */

.lc-card {
  background: var(--lc-white);

  border: 1px solid var(--lc-border);

  border-radius: var(--lc-radius);

  box-shadow: var(--lc-shadow-sm);

  overflow: hidden;

  transition: var(--lc-transition);
}

.lc-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--lc-shadow-lg);

  border-color: rgba(233, 30, 37, 0.15);
}

/* =========================================================
   15. ICON BOX
========================================================= */

.lc-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  height: 60px;

  background: rgba(233, 30, 37, 0.08);

  border-radius: var(--lc-radius);

  color: var(--lc-primary);

  font-size: 24px;

  transition: var(--lc-transition);
}

.lc-card:hover .lc-icon-box {
  background: var(--lc-primary);

  color: var(--lc-white);

  transform: translateY(-3px);
}

/* =========================================================
   16. SERVICE CARD BASE
========================================================= */

.lc-service-card {
  position: relative;

  height: 100%;

  padding: 35px 30px;

  background: var(--lc-white);

  border: 1px solid var(--lc-border);

  border-radius: var(--lc-radius);

  overflow: hidden;

  transition: var(--lc-transition);
}

.lc-service-card::before {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 3px;

  background: var(--lc-primary);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.4s ease;
}

.lc-service-card:hover {
  transform: translateY(-7px);

  box-shadow: var(--lc-shadow-lg);
}

.lc-service-card:hover::before {
  transform: scaleX(1);
}

/* =========================================================
   17. PROJECT CARD BASE
========================================================= */

.lc-project-card {
  position: relative;

  overflow: hidden;

  background: var(--lc-dark);

  border-radius: var(--lc-radius);

  min-height: 420px;
}

.lc-project-card img {
  width: 100%;
  height: 420px;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.lc-project-card:hover img {
  transform: scale(1.07);
}

.lc-project-card::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

.lc-project-content {
  position: absolute;

  z-index: 2;

  left: 30px;
  right: 30px;
  bottom: 28px;
}

.lc-project-category {
  display: inline-block;

  margin-bottom: 8px;

  color: var(--lc-orange-light);

  font-size: 12px;
  font-weight: var(--lc-fw-bold);

  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.lc-project-title {
  margin: 0;

  color: var(--lc-white);

  font-size: 25px;
  font-weight: var(--lc-fw-bold);
}

/* =========================================================
   18. STATS / COUNTERS
========================================================= */

.lc-stat {
  position: relative;
}

.lc-stat-number {
  display: block;

  color: var(--lc-primary);

  font-family: var(--lc-font-heading);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: var(--lc-fw-extrabold);

  line-height: 1;
}

.lc-stat-label {
  display: block;

  margin-top: 10px;

  color: var(--lc-text-light);

  font-size: 14px;
  font-weight: var(--lc-fw-medium);

  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================================
   19. DARK STAT
========================================================= */

.lc-dark .lc-stat-number,
.lc-section-dark .lc-stat-number {
  color: var(--lc-orange);
}

.lc-dark .lc-stat-label,
.lc-section-dark .lc-stat-label {
  color: rgba(255, 255, 255, 0.65);
}

/* =========================================================
   20. FORM ELEMENTS
========================================================= */

.lc-form-group {
  margin-bottom: 20px;
}

.lc-form-label {
  display: block;

  margin-bottom: 8px;

  color: var(--lc-heading);

  font-family: var(--lc-font-heading);
  font-size: 13px;
  font-weight: var(--lc-fw-semibold);
}

.lc-form-control {
  width: 100%;

  min-height: 52px;

  padding: 12px 16px;

  background: var(--lc-white);

  border: 1px solid var(--lc-border);

  border-radius: var(--lc-radius-sm);

  outline: none;

  color: var(--lc-text);

  font-family: var(--lc-font-body);
  font-size: 14px;

  transition: var(--lc-transition);
}

.lc-form-control:focus {
  border-color: var(--lc-primary);

  box-shadow: 0 0 0 3px rgba(233, 30, 37, 0.08);
}

textarea.lc-form-control {
  min-height: 140px;

  resize: vertical;
}

/* =========================================================
   21. BREADCRUMB / INNER PAGE HERO
========================================================= */

.lc-page-hero {
  position: relative;

  min-height: 360px;

  display: flex;
  align-items: center;

  background: var(--lc-dark);

  overflow: hidden;
}

.lc-page-hero-content {
  position: relative;

  z-index: 2;

  padding: 80px 0;
}

.lc-page-hero h1 {
  margin-bottom: 15px;

  color: var(--lc-white);

  font-size: clamp(38px, 5vw, 62px);
}

.lc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 14px;
}

.lc-breadcrumb a {
  color: var(--lc-white);
}

.lc-breadcrumb a:hover {
  color: var(--lc-orange);
}

.lc-breadcrumb .active {
  color: var(--lc-orange-light);
}

/* =========================================================
   22. WHATSAPP FLOATING BUTTON
========================================================= */

.lc-whatsapp {
  position: fixed;

  right: 22px;
  bottom: 22px;

  z-index: var(--lc-z-fixed);

  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25d366;

  border-radius: 50%;

  color: var(--lc-white);

  font-size: 27px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);

  transition: var(--lc-transition);
}

.lc-whatsapp:hover {
  color: var(--lc-white);

  transform: translateY(-4px) scale(1.05);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

/* =========================================================
   23. BACK TO TOP
========================================================= */

.lc-back-top {
  position: fixed;

  right: 22px;
  bottom: 90px;

  z-index: var(--lc-z-fixed);

  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--lc-primary);

  border: none;
  border-radius: var(--lc-radius-sm);

  color: var(--lc-white);

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition: var(--lc-transition);
}

.lc-back-top.active {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

.lc-back-top:hover {
  background: var(--lc-primary-dark);

  color: var(--lc-white);
}

/* =========================================================
   24. DIVIDER
========================================================= */

.lc-divider {
  width: 100%;
  height: 1px;

  background: var(--lc-border);
}

.lc-divider-dark {
  background: rgba(255, 255, 255, 0.12);
}

/* =========================================================
   25. IMAGE ZOOM
========================================================= */

.lc-image-zoom {
  overflow: hidden;
}

.lc-image-zoom img {
  transition: transform 0.6s ease;
}

.lc-image-zoom:hover img {
  transform: scale(1.06);
}

/* =========================================================
   26. POSITION UTILITIES
========================================================= */

.lc-relative {
  position: relative;
}

.lc-absolute {
  position: absolute;
}

.lc-overflow-hidden {
  overflow: hidden;
}

/* =========================================================
   27. DISPLAY UTILITIES
========================================================= */

.lc-flex {
  display: flex;
}

.lc-flex-center {
  display: flex;

  align-items: center;
  justify-content: center;
}

.lc-flex-between {
  display: flex;

  align-items: center;
  justify-content: space-between;
}

/* =========================================================
   28. GAP UTILITIES
========================================================= */

.lc-gap-1 {
  gap: 5px;
}

.lc-gap-2 {
  gap: 10px;
}

.lc-gap-3 {
  gap: 15px;
}

.lc-gap-4 {
  gap: 20px;
}

.lc-gap-5 {
  gap: 30px;
}

/* =========================================================
   29. TEXT ALIGNMENT
========================================================= */

.lc-text-center {
  text-align: center;
}

.lc-text-left {
  text-align: left;
}

.lc-text-right {
  text-align: right;
}

/* =========================================================
   30. FONT WEIGHTS
========================================================= */

.lc-fw-regular {
  font-weight: var(--lc-fw-regular);
}

.lc-fw-medium {
  font-weight: var(--lc-fw-medium);
}

.lc-fw-semibold {
  font-weight: var(--lc-fw-semibold);
}

.lc-fw-bold {
  font-weight: var(--lc-fw-bold);
}

.lc-fw-extrabold {
  font-weight: var(--lc-fw-extrabold);
}

/* =========================================================
   31. SWIPER CUSTOMIZATION
========================================================= */

.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;

  background: var(--lc-white);

  border-radius: 50%;

  color: var(--lc-primary);

  box-shadow: var(--lc-shadow);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--lc-primary);
  color: var(--lc-white);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;

  background: var(--lc-white);

  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  width: 25px;

  border-radius: 10px;

  background: var(--lc-primary);

  opacity: 1;
}

/* =========================================================
   32. SELECTION
========================================================= */

::selection {
  background: var(--lc-primary);
  color: var(--lc-white);
}

/* =========================================================
   33. SCROLLBAR
========================================================= */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--lc-light);
}

::-webkit-scrollbar-thumb {
  background: var(--lc-primary);

  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--lc-primary-dark);
}

/* =========================================================
   34. RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991.98px) {
  :root {
    --lc-section-padding: 80px;
  }

  .lc-container {
    width: min(100% - 32px, var(--lc-container));
  }

  .lc-section-title {
    margin-bottom: 40px;
  }

  .lc-page-hero {
    min-height: 320px;
  }
}

/* =========================================================
   35. RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767.98px) {
  :root {
    --lc-section-padding: 65px;
    --lc-section-padding-md: 60px;
    --lc-section-padding-sm: 50px;
  }

  .lc-container {
    width: min(100% - 30px, var(--lc-container));
  }

  body {
    font-size: 14px;
  }

  .lc-section {
    padding: var(--lc-section-padding) 0;
  }

  .lc-section-title {
    margin-bottom: 35px;
  }

  .lc-section-subtitle {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .lc-section-subtitle::before {
    width: 25px;
  }

  .lc-section-description {
    font-size: 14px;
    line-height: 1.75;
  }

  .lc-btn {
    min-height: 48px;

    padding: 12px 20px;

    font-size: 11px;
  }

  .lc-service-card {
    padding: 28px 22px;
  }

  .lc-project-card,
  .lc-project-card img {
    min-height: 350px;
    height: 350px;
  }

  .lc-project-content {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  .lc-project-title {
    font-size: 21px;
  }

  .lc-page-hero {
    min-height: 280px;
  }

  .lc-page-hero-content {
    padding: 65px 0;
  }

  .lc-whatsapp {
    right: 15px;
    bottom: 15px;

    width: 52px;
    height: 52px;

    font-size: 24px;
  }

  .lc-back-top {
    right: 15px;
    bottom: 78px;

    width: 42px;
    height: 42px;
  }
}

/* =========================================================
   36. RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .lc-container {
    width: calc(100% - 24px);
  }

  .lc-section {
    padding: 55px 0;
  }

  .lc-section-title {
    margin-bottom: 30px;
  }

  .lc-btn {
    width: 100%;
  }

  .lc-page-hero {
    min-height: 250px;
  }

  .lc-page-hero-content {
    padding: 55px 0;
  }

  .lc-project-card,
  .lc-project-card img {
    min-height: 320px;
    height: 320px;
  }
}

/* =========================================================
   37. ACCESSIBILITY
========================================================= */

:focus-visible {
  outline: 3px solid rgba(233, 30, 37, 0.35);
  outline-offset: 3px;
}

/* =========================================================
   38. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* -------------------------- header styling starts from here---------------------------------- */
/* =========================================================
   LAXMI CONSTRUCTION COMPANY
   HEADER / NAVBAR
========================================================= */

/* =========================================================
   TOPBAR
========================================================= */

.lc-topbar {
  width: 100%;

  background: var(--lc-black);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  color: rgba(255, 255, 255, 0.72);

  font-size: 12px;
}

.lc-topbar-inner {
  min-height: 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.lc-topbar-left,
.lc-topbar-right {
  display: flex;
  align-items: center;

  gap: 20px;
}

.lc-topbar a {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 12px;

  transition: var(--lc-transition-fast);
}

.lc-topbar a:hover {
  color: var(--lc-orange-light);
}

.lc-topbar i {
  color: var(--lc-primary);

  font-size: 11px;
}

.lc-topbar-divider {
  width: 1px;
  height: 14px;

  background: rgba(255, 255, 255, 0.15);
}

/* =========================================================
   MAIN HEADER
========================================================= */

.lc-header {
  position: relative;

  width: 100%;

  z-index: var(--lc-z-sticky);

  background: var(--lc-white);

  border-bottom: 1px solid var(--lc-border);

  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* =========================================================
   STICKY STATE
========================================================= */

.lc-header.is-sticky {
  position: fixed;

  top: 0;
  left: 0;

  background: rgba(255, 255, 255, 0.97);

  border-bottom-color: rgba(0, 0, 0, 0.06);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

  animation: lcHeaderSlideDown 0.3s ease forwards;
}

@keyframes lcHeaderSlideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* =========================================================
   NAVBAR
========================================================= */

.lc-navbar {
  min-height: 88px;

  padding: 10px 0;

  transition: min-height 0.3s ease;
}

/* =========================================================
   STICKY NAVBAR SMALLER
========================================================= */

.lc-header.is-sticky .lc-navbar {
  min-height: 72px;
}

/* =========================================================
   LOGO
========================================================= */

.lc-logo {
  display: inline-flex;
  align-items: center;

  flex-shrink: 0;

  padding: 0;

  margin-right: 30px;
}

.lc-logo-img {
  width: 205px;
  height: auto;

  max-height: 75px;

  object-fit: contain;

  transition: var(--lc-transition);
}

.lc-header.is-sticky .lc-logo-img {
  width: 180px;
}

/* =========================================================
   NAVIGATION
========================================================= */

.lc-navbar-collapse {
  justify-content: flex-end;
}

.lc-nav-list {
  gap: 5px;
}

.lc-nav-link {
  position: relative;

  display: inline-flex;
  align-items: center;

  min-height: 45px;

  padding: 10px 15px !important;

  color: var(--lc-text);

  font-family: var(--lc-font-heading);
  font-size: 13px;
  font-weight: var(--lc-fw-semibold);

  text-transform: uppercase;
  letter-spacing: 0.3px;

  transition: var(--lc-transition);
}

.lc-nav-link:hover {
  color: var(--lc-primary);
}

.lc-nav-link::after {
  content: "";

  position: absolute;

  left: 15px;
  right: 15px;
  bottom: 2px;

  height: 2px;

  background: var(--lc-primary);

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.25s ease;
}

.lc-nav-link:hover::after,
.lc-nav-link.active::after {
  transform: scaleX(1);
}

.lc-nav-link.active {
  color: var(--lc-primary);
}

/* =========================================================
   DROPDOWN ARROW
========================================================= */

.lc-nav-link.dropdown-toggle::after {
  position: static;

  width: auto;
  height: auto;

  margin-left: 7px;

  background: none;

  border: 0;

  content: "\f107";

  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  transform: none;

  transition: transform 0.25s ease;
}

.lc-nav-link.dropdown-toggle:hover::after {
  transform: translateY(2px);
}

/* =========================================================
   DROPDOWN MENU
========================================================= */

.lc-dropdown-menu {
  min-width: 245px;

  margin-top: 10px !important;

  padding: 10px;

  background: var(--lc-white);

  border: 1px solid var(--lc-border);

  border-top: 3px solid var(--lc-primary);

  border-radius: 0 0 var(--lc-radius) var(--lc-radius);

  box-shadow: var(--lc-shadow-lg);
}

.lc-dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;

  gap: 10px;

  padding: 10px 12px;

  color: var(--lc-text);

  border-radius: 4px;

  font-size: 13px;
  font-weight: var(--lc-fw-medium);

  transition: var(--lc-transition-fast);
}

.lc-dropdown-menu .dropdown-item i {
  width: 18px;

  color: var(--lc-primary);

  font-size: 13px;
}

.lc-dropdown-menu .dropdown-item:hover,
.lc-dropdown-menu .dropdown-item:focus {
  background: rgba(233, 30, 37, 0.06);

  color: var(--lc-primary);

  padding-left: 16px;
}

.lc-dropdown-menu .dropdown-divider {
  margin: 6px 0;

  border-color: var(--lc-border);
}

/* =========================================================
   NAV CTA
========================================================= */

.lc-nav-cta-item {
  margin-left: 12px;
}

.lc-nav-cta {
  min-height: 45px;

  padding: 11px 19px;

  font-size: 11px;

  white-space: nowrap;
}

.lc-nav-cta i {
  font-size: 11px;
}

/* =========================================================
   MOBILE MENU TOGGLE
========================================================= */

.lc-navbar-toggler {
  width: 46px;
  height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  background: var(--lc-white);

  border: 1px solid var(--lc-border);
  border-radius: var(--lc-radius-sm);

  box-shadow: none !important;

  transition: var(--lc-transition);
}

.lc-navbar-toggler:hover {
  background: rgba(233, 30, 37, 0.05);

  border-color: var(--lc-primary);
}

.lc-menu-icon {
  width: 21px;

  display: flex;
  flex-direction: column;

  gap: 5px;
}

.lc-menu-icon span {
  display: block;

  width: 100%;
  height: 2px;

  background: var(--lc-dark);

  transition: var(--lc-transition);
}

/* =========================================================
   MOBILE CALL
========================================================= */

.lc-mobile-call-item {
  display: none;
}

.lc-mobile-call {
  display: flex;
  align-items: center;

  gap: 12px;

  padding: 15px;

  background: var(--lc-light);

  border: 1px solid var(--lc-border);

  border-radius: var(--lc-radius);

  color: var(--lc-dark);
}

.lc-mobile-call:hover {
  color: var(--lc-primary);

  border-color: rgba(233, 30, 37, 0.25);
}

.lc-mobile-call-icon {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--lc-primary);

  border-radius: 50%;

  color: var(--lc-white);
}

.lc-mobile-call small {
  display: block;

  margin-bottom: 2px;

  color: var(--lc-text-muted);

  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lc-mobile-call span:last-child {
  font-family: var(--lc-font-heading);
  font-size: 13px;
  font-weight: var(--lc-fw-semibold);
}

/* =========================================================
   MOBILE HEADER WHATSAPP
========================================================= */

.lc-header-whatsapp {
  position: fixed;

  right: 20px;
  bottom: 20px;

  z-index: var(--lc-z-fixed);

  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25d366;

  border-radius: 50%;

  color: var(--lc-white);

  font-size: 25px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);

  transition: var(--lc-transition);
}

.lc-header-whatsapp:hover {
  color: var(--lc-white);

  transform: translateY(-4px);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {
  .lc-logo {
    margin-right: 15px;
  }

  .lc-logo-img {
    width: 185px;
  }

  .lc-nav-link {
    padding-left: 11px !important;
    padding-right: 11px !important;

    font-size: 12px;
  }

  .lc-nav-link::after {
    left: 11px;
    right: 11px;
  }

  .lc-nav-cta-item {
    margin-left: 5px;
  }
}

/* =========================================================
   MOBILE / TABLET NAVIGATION
========================================================= */

@media (max-width: 991.98px) {
  .lc-topbar {
    display: none;
  }

  .lc-header {
    position: relative;
  }

  .lc-navbar {
    min-height: 76px;

    padding: 10px 0;
  }

  .lc-header.is-sticky .lc-navbar {
    min-height: 70px;
  }

  .lc-logo {
    margin-right: 0;
  }

  .lc-logo-img,
  .lc-header.is-sticky .lc-logo-img {
    width: 175px;

    max-height: 62px;
  }

  .lc-navbar-toggler {
    display: inline-flex;

    margin-left: auto;
  }

  .lc-navbar-collapse {
    width: 100%;

    margin-top: 12px;

    padding: 12px;

    background: var(--lc-white);

    border: 1px solid var(--lc-border);

    border-radius: var(--lc-radius);

    box-shadow: var(--lc-shadow);

    max-height: calc(100vh - 90px);

    overflow-y: auto;
  }

  .lc-nav-list {
    align-items: stretch !important;

    gap: 2px;
  }

  .lc-nav-list .nav-item {
    width: 100%;
  }

  .lc-nav-link {
    width: 100%;

    min-height: 48px;

    padding: 12px 14px !important;

    border-radius: 5px;

    font-size: 13px;
  }

  .lc-nav-link:hover,
  .lc-nav-link.active {
    background: rgba(233, 30, 37, 0.06);

    color: var(--lc-primary);
  }

  .lc-nav-link::after {
    display: none;
  }

  /* Dropdown */

  .lc-dropdown-menu {
    position: static !important;

    width: 100%;

    margin: 0 !important;

    padding: 5px;

    border: 0;

    border-left: 2px solid var(--lc-primary);

    border-radius: 0;

    box-shadow: none;

    background: var(--lc-light);
  }

  .lc-dropdown-menu .dropdown-item {
    padding: 10px 12px;

    font-size: 12px;
  }

  .lc-nav-cta-item {
    margin: 10px 0 0;
  }

  .lc-nav-cta {
    width: 100%;

    min-height: 48px;
  }

  .lc-mobile-call-item {
    display: block;

    margin-top: 10px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .lc-logo-img,
  .lc-header.is-sticky .lc-logo-img {
    width: 155px;

    max-height: 55px;
  }

  .lc-navbar {
    min-height: 70px;
  }

  .lc-navbar-toggler {
    width: 43px;
    height: 43px;
  }

  .lc-navbar-collapse {
    margin-top: 10px;

    padding: 10px;
  }

  .lc-header-whatsapp {
    right: 15px;
    bottom: 15px;

    width: 50px;
    height: 50px;

    font-size: 23px;
  }
}

/* =========================================================
   HAMBURGER OPEN STATE
========================================================= */

.lc-navbar-toggler.is-open .lc-menu-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lc-navbar-toggler.is-open .lc-menu-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.lc-navbar-toggler.is-open .lc-menu-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -----------------------footer styling starts from here --------------------------- */
/* =========================================================
   LAXMI CONSTRUCTION COMPANY
   FOOTER
========================================================= */

/* =========================================================
   MAIN FOOTER
========================================================= */

.lc-footer {
  position: relative;

  background: var(--lc-black);

  color: rgba(255, 255, 255, 0.7);
}

/* =========================================================
   FOOTER MAIN
========================================================= */

.lc-footer-main {
  padding: 85px 0 65px;

  background: linear-gradient(135deg, #080808 0%, #111111 55%, #151515 100%);

  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* =========================================================
   FOOTER LOGO
========================================================= */

.lc-footer-logo {
  display: inline-block;

  margin-bottom: 25px;
}

.lc-footer-logo img {
  width: 220px;
  max-width: 100%;
  height: auto;

  background: var(--lc-white);

  padding: 8px 12px;

  border-radius: 4px;

  transition: var(--lc-transition);
}

.lc-footer-logo:hover img {
  transform: translateY(-2px);
}

/* =========================================================
   FOOTER DESCRIPTION
========================================================= */

.lc-footer-description {
  max-width: 390px;

  margin-bottom: 25px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 14px;

  line-height: 1.8;
}

/* =========================================================
   SOCIAL ICONS
========================================================= */

.lc-footer-social {
  display: flex;
  align-items: center;

  gap: 10px;
}

.lc-footer-social a {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 50%;

  color: rgba(255, 255, 255, 0.75);

  font-size: 14px;

  transition: var(--lc-transition);
}

.lc-footer-social a:hover {
  background: var(--lc-primary);

  border-color: var(--lc-primary);

  color: var(--lc-white);

  transform: translateY(-3px);
}

/* =========================================================
   FOOTER WIDGET
========================================================= */

.lc-footer-widget {
  height: 100%;
}

.lc-footer-title {
  position: relative;

  margin-bottom: 25px;
  padding-bottom: 13px;

  color: var(--lc-white);

  font-size: 18px;
  font-weight: var(--lc-fw-bold);
}

.lc-footer-title::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 38px;
  height: 2px;

  background: var(--lc-primary);
}

.lc-footer-title::before {
  content: "";

  position: absolute;

  left: 42px;
  bottom: 0;

  width: 14px;
  height: 2px;

  background: var(--lc-orange);
}

/* =========================================================
   FOOTER LINKS
========================================================= */

.lc-footer-links {
  display: flex;
  flex-direction: column;

  gap: 9px;
}

.lc-footer-links li {
  margin: 0;
}

.lc-footer-links a {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 13px;

  transition: var(--lc-transition-fast);
}

.lc-footer-links a i {
  color: var(--lc-primary);

  font-size: 9px;

  transition: transform 0.2s ease;
}

.lc-footer-links a:hover {
  color: var(--lc-white);

  padding-left: 4px;
}

.lc-footer-links a:hover i {
  transform: translateX(2px);
}

/* =========================================================
   FOOTER CONTACT
========================================================= */

.lc-footer-contact {
  display: flex;

  align-items: flex-start;

  gap: 13px;

  margin-bottom: 22px;
}

.lc-footer-contact-icon {
  width: 38px;
  height: 38px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(233, 30, 37, 0.1);

  border: 1px solid rgba(233, 30, 37, 0.15);

  border-radius: 50%;

  color: var(--lc-primary);

  font-size: 13px;
}

.lc-footer-contact span {
  display: block;

  margin-bottom: 3px;

  color: var(--lc-orange-light);

  font-family: var(--lc-font-heading);
  font-size: 10px;
  font-weight: var(--lc-fw-semibold);

  letter-spacing: 1px;
  text-transform: uppercase;
}

.lc-footer-contact a,
.lc-footer-contact p {
  display: block;

  margin: 0;

  color: rgba(255, 255, 255, 0.65);

  font-size: 12px;

  line-height: 1.7;
}

.lc-footer-contact a:hover {
  color: var(--lc-white);
}

/* =========================================================
   FOOTER CTA
========================================================= */

.lc-footer-cta {
  position: relative;

  padding: 45px 0;

  background: linear-gradient(
    100deg,
    var(--lc-primary-dark),
    var(--lc-primary)
  );
}

.lc-footer-cta-inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.lc-footer-cta-content {
  position: relative;
}

.lc-footer-cta-label {
  display: block;

  margin-bottom: 7px;

  color: rgba(255, 255, 255, 0.72);

  font-family: var(--lc-font-heading);
  font-size: 11px;
  font-weight: var(--lc-fw-bold);

  letter-spacing: 2px;
}

.lc-footer-cta h3 {
  margin: 0;

  color: var(--lc-white);

  font-size: clamp(25px, 3vw, 36px);

  font-weight: var(--lc-fw-bold);
}

.lc-footer-cta .lc-btn-primary {
  background: var(--lc-white);

  border-color: var(--lc-white);

  color: var(--lc-primary);
}

.lc-footer-cta .lc-btn-primary:hover {
  background: var(--lc-dark);

  border-color: var(--lc-dark);

  color: var(--lc-white);
}

/* =========================================================
   FOOTER LEADERS
========================================================= */

.lc-footer-leaders {
  padding: 35px 0;

  background: #0d0d0d;

  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.lc-footer-leader {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 5px 20px;
}

.lc-footer-leader-icon {
  width: 52px;
  height: 52px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(233, 30, 37, 0.1);

  border: 1px solid rgba(233, 30, 37, 0.18);

  border-radius: 50%;

  color: var(--lc-primary);

  font-size: 20px;
}

.lc-footer-leader span {
  display: block;

  margin-bottom: 3px;

  color: var(--lc-orange);

  font-size: 10px;
  font-weight: var(--lc-fw-semibold);

  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.lc-footer-leader h4 {
  margin: 0 0 8px;

  color: var(--lc-white);

  font-size: 17px;
  font-weight: var(--lc-fw-bold);
}

.lc-footer-leader-phone {
  display: flex;
  flex-wrap: wrap;

  gap: 15px;
}

.lc-footer-leader-phone a {
  display: inline-flex;
  align-items: center;

  gap: 6px;

  color: rgba(255, 255, 255, 0.58);

  font-size: 12px;
}

.lc-footer-leader-phone a i {
  color: var(--lc-primary);

  font-size: 10px;
}

.lc-footer-leader-phone a:hover {
  color: var(--lc-white);
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.lc-footer-bottom {
  padding: 20px 0;

  background: #070707;
}

.lc-footer-bottom-inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 15px;

  flex-wrap: wrap;
}

.lc-footer-bottom p {
  margin: 0;

  color: rgba(255, 255, 255, 0.45);

  font-size: 11px;
}

.lc-footer-bottom-links {
  display: flex;
  align-items: center;

  gap: 10px;
}

.lc-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);

  font-size: 11px;
}

.lc-footer-bottom-links a:hover {
  color: var(--lc-white);
}

.lc-footer-bottom-links span {
  color: rgba(255, 255, 255, 0.2);

  font-size: 10px;
}

.lc-footer-credit i {
  color: var(--lc-primary);

  margin: 0 3px;
}

/* =========================================================
   MOBILE BOTTOM ACTION BAR
========================================================= */

.lc-mobile-action-bar {
  display: none;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .lc-footer-main {
    padding: 70px 0 50px;
  }

  .lc-footer-cta {
    padding: 40px 0;
  }

  .lc-footer-leader {
    padding: 5px 0;
  }

  .lc-footer-bottom-inner {
    justify-content: center;

    text-align: center;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .lc-footer-main {
    padding: 60px 0 35px;
  }

  .lc-footer-logo img {
    width: 190px;
  }

  .lc-footer-description {
    font-size: 13px;
  }

  .lc-footer-title {
    margin-bottom: 20px;
  }

  .lc-footer-cta {
    padding: 40px 0;
  }

  .lc-footer-cta-inner {
    flex-direction: column;

    align-items: flex-start;
  }

  .lc-footer-cta-action {
    width: 100%;
  }

  .lc-footer-cta-action .lc-btn {
    width: 100%;
  }

  .lc-footer-leaders {
    padding: 30px 0;
  }

  .lc-footer-leader {
    padding: 0;

    align-items: flex-start;
  }

  .lc-footer-bottom {
    padding-bottom: 85px;
  }

  .lc-footer-bottom-inner {
    flex-direction: column;

    gap: 10px;
  }

  /* -----------------------------------------------------
       MOBILE ACTION BAR
    ----------------------------------------------------- */

  .lc-mobile-action-bar {
    position: fixed;

    left: 0;
    bottom: 0;

    z-index: calc(var(--lc-z-fixed) + 1);

    width: 100%;

    height: 62px;

    display: flex;

    background: var(--lc-white);

    border-top: 1px solid var(--lc-border);

    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
  }

  .lc-mobile-action {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 3px;

    color: var(--lc-dark);

    font-family: var(--lc-font-heading);
    font-size: 9px;
    font-weight: var(--lc-fw-semibold);

    text-transform: uppercase;
    letter-spacing: 0.5px;

    border-right: 1px solid var(--lc-border);

    transition: var(--lc-transition);
  }

  .lc-mobile-action:last-child {
    border-right: 0;
  }

  .lc-mobile-action i {
    font-size: 17px;
  }

  .lc-mobile-action.call i {
    color: var(--lc-primary);
  }

  .lc-mobile-action.whatsapp i {
    color: #25d366;
  }

  .lc-mobile-action.quote {
    background: var(--lc-primary);

    color: var(--lc-white);
  }

  .lc-mobile-action.quote i {
    color: var(--lc-white);
  }

  .lc-mobile-action:hover {
    color: var(--lc-primary);
  }

  .lc-mobile-action.quote:hover {
    color: var(--lc-white);

    background: var(--lc-primary-dark);
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .lc-footer-main {
    padding-top: 50px;
  }

  .lc-footer-logo img {
    width: 175px;
  }

  .lc-footer-contact {
    gap: 10px;
  }

  .lc-footer-contact-icon {
    width: 35px;
    height: 35px;
  }

  .lc-footer-leader {
    gap: 12px;
  }

  .lc-footer-leader-icon {
    width: 45px;
    height: 45px;

    font-size: 17px;
  }

  .lc-footer-leader h4 {
    font-size: 15px;
  }

  .lc-footer-leader-phone {
    flex-direction: column;

    gap: 5px;
  }

  .lc-footer-bottom p {
    font-size: 10px;
  }

  .lc-footer-bottom-links a {
    font-size: 10px;
  }
}

/* ---------------------------hero section styling starts from here --------------------------------------- */
.lc-hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--lc-black);
  isolation: isolate;
}

/* =========================================================
   HERO BACKGROUND
========================================================= */
.lc-hero-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    overflow: hidden;
    background: #000;
}

/* =========================================================
   HERO SWIPER
========================================================= */
.lc-hero-swiper {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
    z-index: 0;
}


/* =========================================================
   HERO SLIDE
========================================================= */
.lc-hero-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


/* =========================================================
   HERO IMAGE
========================================================= */
.lc-hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition:
        transform 7s ease;
}


/* =========================================================
   ACTIVE SLIDE ZOOM
========================================================= */
.lc-hero-swiper .swiper-slide-active .lc-hero-image {
    transform: scale(1);
}

/* =========================================================
   HERO OVERLAY
========================================================= */

.lc-hero-overlay {
 position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  background: linear-gradient(

    90deg,

    rgba(0, 0, 0, 0.92) 0%,

    rgba(0, 0, 0, 0.78) 38%,

    rgba(0, 0, 0, 0.48) 70%,

    rgba(0, 0, 0, 0.55) 100%

  );
}

/* Bottom dark fade */

.lc-hero-overlay::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 180px;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
}

/* =========================================================
   DECORATIVE GRID
========================================================= */

.lc-hero-grid {
  position: absolute;

  inset: 0;

  z-index: -1;

  opacity: 0.13;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);

  background-size: 70px 70px;

  mask-image: linear-gradient(to right, black 0%, transparent 75%);

  -webkit-mask-image: linear-gradient(to right, black 0%, transparent 75%);
}

/* =========================================================
   HERO CONTENT
========================================================= */

.lc-hero-content {
  position: relative;

  min-height: calc(100vh - 88px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 100px 0 110px;
}

/* =========================================================
   HERO MAIN
========================================================= */

.lc-hero-main {
  position: relative;

  z-index: 2;

  width: min(760px, 70%);
}

/* =========================================================
   EYEBROW
========================================================= */

.lc-hero-eyebrow {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 20px;
}

.lc-hero-eyebrow span {
  width: 42px;
  height: 2px;

  background: var(--lc-orange);
}

.lc-hero-eyebrow p {
  margin: 0;

  color: var(--lc-orange-light);

  font-family: var(--lc-font-heading);
  font-size: 12px;
  font-weight: var(--lc-fw-bold);

  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* =========================================================
   HERO TITLE
========================================================= */

.lc-hero-title {
  margin: 0;

  color: var(--lc-white);

  font-family: var(--lc-font-heading);
  font-size: clamp(50px, 6.5vw, 88px);
  font-weight: var(--lc-fw-extrabold);

  line-height: 0.98;

  letter-spacing: -2px;
}

.lc-hero-title span {
  color: var(--lc-primary);

  position: relative;
}

.lc-hero-title span::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -4px;

  width: 100%;
  height: 4px;

  background: var(--lc-orange);

  transform: scaleX(0);
  transform-origin: left;

  animation: lcHeroLine 1s ease 1.1s forwards;
}

@keyframes lcHeroLine {
  to {
    transform: scaleX(1);
  }
}

/* =========================================================
   HERO DESCRIPTION
========================================================= */

.lc-hero-description {
  max-width: 650px;

  margin: 30px 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 16px;

  line-height: 1.85;
}

/* =========================================================
   HERO ACTIONS
========================================================= */

.lc-hero-actions {
  display: flex;
  align-items: center;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 35px;
}

.lc-hero-actions .lc-btn {
  min-width: 195px;
}

/* =========================================================
   HERO TRUST
========================================================= */

.lc-hero-trust {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-top: 35px;
}

.lc-hero-trust-line {
  width: 32px;
  height: 1px;

  background: rgba(255, 255, 255, 0.45);
}

.lc-hero-trust p {
  margin: 0;

  color: rgba(255, 255, 255, 0.55);

  font-size: 11px;

  letter-spacing: 0.6px;
}

.lc-hero-trust p span {
  margin: 0 7px;

  color: var(--lc-orange);
}

/* =========================================================
   HERO SIDE PANEL
========================================================= */

.lc-hero-side {
  position: relative;

  z-index: 3;

  width: 280px;

  flex-shrink: 0;
}

.lc-hero-side-card {
  padding: 25px;

  background: rgba(8, 8, 8, 0.48);

  border: 1px solid rgba(255, 255, 255, 0.18);

  border-radius: var(--lc-radius);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* =========================================================
   HERO STAT
========================================================= */

.lc-hero-stat {
  display: flex;
  align-items: center;

  gap: 15px;
}

.lc-hero-stat-number {
  display: block;

  color: var(--lc-white);

  font-family: var(--lc-font-heading);
  font-size: 36px;
  font-weight: var(--lc-fw-extrabold);

  line-height: 1;
}

.lc-hero-stat-number span {
  color: var(--lc-primary);
}

.lc-hero-stat-label {
  color: rgba(255, 255, 255, 0.58);

  font-size: 10px;
  font-weight: var(--lc-fw-medium);

  line-height: 1.5;

  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* =========================================================
   STAT DIVIDER
========================================================= */

.lc-hero-stat-divider {
  width: 100%;
  height: 1px;

  margin: 22px 0;

  background: rgba(255, 255, 255, 0.12);
}

/* =========================================================
   LOCATION
========================================================= */

.lc-hero-location {
  display: flex;
  align-items: center;

  gap: 12px;
}

.lc-hero-location-icon {
  width: 38px;
  height: 38px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(233, 30, 37, 0.15);

  border: 1px solid rgba(233, 30, 37, 0.25);

  border-radius: 50%;

  color: var(--lc-primary);

  font-size: 13px;
}

.lc-hero-location span {
  display: block;

  margin-bottom: 2px;

  color: var(--lc-orange);

  font-family: var(--lc-font-heading);
  font-size: 9px;
  font-weight: var(--lc-fw-bold);

  letter-spacing: 1.3px;
}

.lc-hero-location p {
  margin: 0;

  color: rgba(255, 255, 255, 0.65);

  font-size: 12px;
}

/* =========================================================
   VERTICAL TEXT
========================================================= */

.lc-hero-vertical-text {
  position: absolute;

  right: -80px;
  top: 50%;

  color: rgba(255, 255, 255, 0.16);

  font-family: var(--lc-font-heading);
  font-size: 9px;
  font-weight: var(--lc-fw-bold);

  letter-spacing: 3px;

  white-space: nowrap;

  transform: rotate(90deg) translateX(50%);
}

/* =========================================================
   SCROLL INDICATOR
========================================================= */

.lc-hero-scroll {
  position: absolute;

  left: 50%;
  bottom: 28px;

  z-index: 5;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 8px;

  color: rgba(255, 255, 255, 0.55);

  font-family: var(--lc-font-heading);
  font-size: 8px;
  font-weight: var(--lc-fw-semibold);

  letter-spacing: 2px;

  transform: translateX(-50%);
}

.lc-hero-scroll:hover {
  color: var(--lc-white);
}

.lc-hero-scroll i {
  color: var(--lc-primary);

  font-size: 12px;

  animation: lcHeroScroll 1.7s ease-in-out infinite;
}

@keyframes lcHeroScroll {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

/* =========================================================
   DECORATIVE NUMBER
========================================================= */

.lc-hero-number {
  position: absolute;

  right: 30px;
  bottom: 30px;

  color: rgba(255, 255, 255, 0.08);

  font-family: var(--lc-font-heading);
  font-size: 80px;
  font-weight: var(--lc-fw-black);

  line-height: 1;

  pointer-events: none;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {
  .lc-hero-content {
    padding: 90px 0 100px;
  }

  .lc-hero-main {
    width: min(680px, 68%);
  }

  .lc-hero-side {
    width: 250px;
  }

  .lc-hero-title {
    font-size: clamp(48px, 6vw, 70px);
  }

  .lc-hero-description {
    font-size: 15px;
  }
}

/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 991.98px) {
  .lc-hero {
    min-height: calc(100vh - 76px);
  }

  .lc-hero-content {
    min-height: calc(100vh - 76px);

    padding: 85px 0 100px;
  }

  .lc-hero-main {
    width: 100%;
    max-width: 720px;
  }

  .lc-hero-side {
    display: none;
  }

  .lc-hero-title {
    font-size: clamp(48px, 8vw, 72px);
  }

  .lc-hero-description {
    max-width: 650px;
  }

  .lc-hero-grid {
    opacity: 0.08;
  }

  .lc-hero-scroll {
    bottom: 20px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .lc-hero {
    min-height: calc(100svh - 70px);
  }

  .lc-hero-content {
    min-height: calc(100svh - 70px);

    padding: 70px 0 90px;

    align-items: center;
  }

  .lc-hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.72) 100%
    );
  }

  .lc-hero-image {
    object-position: 60% center;
  }

  .lc-hero-eyebrow {
    margin-bottom: 16px;
  }

  .lc-hero-eyebrow span {
    width: 28px;
  }

  .lc-hero-eyebrow p {
    font-size: 10px;

    letter-spacing: 1.8px;
  }

  .lc-hero-title {
    font-size: clamp(40px, 12vw, 58px);

    line-height: 1;

    letter-spacing: -1.5px;
  }

  .lc-hero-title span::after {
    height: 3px;
  }

  .lc-hero-description {
    margin-top: 22px;

    font-size: 13px;

    line-height: 1.75;

    color: rgba(255, 255, 255, 0.68);
  }

  .lc-hero-actions {
    width: 100%;

    flex-direction: column;

    align-items: stretch;

    gap: 10px;

    margin-top: 28px;
  }

  .lc-hero-actions .lc-btn {
    width: 100%;

    min-width: 0;
  }

  .lc-hero-trust {
    margin-top: 25px;
  }

  .lc-hero-trust p {
    font-size: 9px;
  }

  .lc-hero-number {
    right: 15px;
    bottom: 20px;

    font-size: 55px;
  }

  .lc-hero-scroll {
    display: none;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .lc-hero-content {
    padding: 60px 0 70px;
  }

  .lc-hero-title {
    font-size: clamp(37px, 11vw, 50px);
  }

  .lc-hero-description {
    font-size: 12.5px;
  }

  .lc-hero-trust-line {
    width: 22px;
  }

  .lc-hero-trust p {
    font-size: 8px;

    letter-spacing: 0.3px;
  }

  .lc-hero-number {
    display: none;
  }
}

/* -------------------- about section styling starts from here -------------------------------------- */
.lc-about {
  position: relative;

  padding: 60px 0;

  background: var(--lc-off-white);

  overflow: hidden;
}

/* =========================================================
   BACKGROUND TEXT
========================================================= */

.lc-about-bg-text {
  position: absolute;

  right: -35px;
  top: 45px;

  color: rgba(0, 0, 0, 0.025);

  font-family: var(--lc-font-heading);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: var(--lc-fw-black);

  line-height: 1;

  pointer-events: none;

  user-select: none;
}

/* =========================================================
   VISUAL WRAPPER
========================================================= */

.lc-about-visual {
  position: relative;

  width: 100%;

  padding: 0 30px 35px 0;
}

/* =========================================================
   MAIN IMAGE
========================================================= */

.lc-about-image-wrap {
  position: relative;

  width: 100%;

  height: 570px;

  overflow: hidden;

  border-radius: var(--lc-radius);

  background: var(--lc-dark);

  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.14);
}

.lc-about-image-wrap::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg, rgba(0, 0, 0, 0.12), transparent 55%);

  pointer-events: none;
}

.lc-about-image {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.8s ease;
}

.lc-about-image-wrap:hover .lc-about-image {
  transform: scale(1.04);
}

/* =========================================================
   RED / ORANGE ACCENT
========================================================= */

.lc-about-accent {
  position: absolute;

  left: -12px;
  bottom: 0;

  width: 105px;
  height: 105px;

  background: linear-gradient(135deg, var(--lc-primary), var(--lc-orange));

  border-radius: var(--lc-radius);

  z-index: 2;
}

/* =========================================================
   IMAGE LABEL
========================================================= */

.lc-about-image-label {
  position: absolute;

  right: 0;
  bottom: 35px;

  z-index: 4;

  min-width: 230px;

  display: flex;
  align-items: center;

  gap: 13px;

  padding: 17px 20px;

  background: var(--lc-black);

  border-left: 4px solid var(--lc-primary);

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}

.lc-about-image-label-icon {
  width: 42px;
  height: 42px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(233, 30, 37, 0.13);

  border-radius: 50%;

  color: var(--lc-orange);

  font-size: 17px;
}

.lc-about-image-label strong {
  display: block;

  color: var(--lc-white);

  font-family: var(--lc-font-heading);
  font-size: 11px;
  font-weight: var(--lc-fw-bold);

  letter-spacing: 1px;
}

.lc-about-image-label small {
  display: block;

  margin-top: 2px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 10px;
}

/* =========================================================
   BLUEPRINT DECORATION
========================================================= */

.lc-about-blueprint {
  position: absolute;

  right: 0;
  top: -25px;

  width: 100px;
  height: 100px;

  z-index: 3;

  border-top: 2px solid var(--lc-primary);
  border-right: 2px solid var(--lc-primary);

  opacity: 0.8;
}

.lc-about-blueprint span {
  position: absolute;

  display: block;

  background: var(--lc-primary);
}

.lc-about-blueprint span:nth-child(1) {
  width: 1px;
  height: 100%;

  left: 50%;
}

.lc-about-blueprint span:nth-child(2) {
  width: 100%;
  height: 1px;

  top: 50%;
}

.lc-about-blueprint span:nth-child(3) {
  width: 10px;
  height: 10px;

  right: -5px;
  bottom: -5px;

  background: var(--lc-orange);

  border-radius: 50%;
}

.lc-blueprint-square {
  position: absolute;

  left: 25px;
  top: 25px;

  width: 50px;
  height: 50px;

  border: 1px solid rgba(233, 30, 37, 0.4);
}

/* =========================================================
   ABOUT CONTENT
========================================================= */

.lc-about-content {
  position: relative;

  padding-left: 15px;
}

/* =========================================================
   ABOUT HEADING
========================================================= */

.lc-about-heading {
  max-width: 580px;

  margin: 0 0 22px;

  color: var(--lc-heading);

  font-family: var(--lc-font-heading);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: var(--lc-fw-extrabold);

  line-height: 1.08;

  letter-spacing: -1px;
}

.lc-about-heading span {
  display: block;

  color: var(--lc-primary);
}

/* =========================================================
   ABOUT LEAD
========================================================= */

.lc-about-lead {
  max-width: 620px;

  margin-bottom: 15px;

  color: var(--lc-text);

  font-size: 17px;
  font-weight: var(--lc-fw-medium);

  line-height: 1.8;
}

/* =========================================================
   ABOUT TEXT
========================================================= */

.lc-about-text {
  max-width: 620px;

  margin-bottom: 28px;

  color: var(--lc-text-light);

  font-size: 14px;

  line-height: 1.85;
}

/* =========================================================
   FEATURES
========================================================= */

.lc-about-features {
  display: flex;
  flex-direction: column;

  gap: 18px;

  margin-bottom: 32px;
}

/* =========================================================
   FEATURE
========================================================= */

.lc-about-feature {
  display: flex;
  align-items: flex-start;

  gap: 15px;
}

.lc-about-feature-icon {
  width: 46px;
  height: 46px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(233, 30, 37, 0.07);

  border: 1px solid rgba(233, 30, 37, 0.1);

  border-radius: var(--lc-radius);

  color: var(--lc-primary);

  font-size: 17px;

  transition: var(--lc-transition);
}

.lc-about-feature:hover .lc-about-feature-icon {
  background: var(--lc-primary);

  color: var(--lc-white);

  transform: translateY(-2px);
}

.lc-about-feature h3 {
  margin: 0 0 4px;

  color: var(--lc-heading);

  font-size: 15px;
  font-weight: var(--lc-fw-bold);
}

.lc-about-feature p {
  max-width: 480px;

  margin: 0;

  color: var(--lc-text-light);

  font-size: 12px;

  line-height: 1.7;
}

/* =========================================================
   ABOUT BOTTOM
========================================================= */

.lc-about-bottom {
  display: flex;
  align-items: center;

  flex-wrap: wrap;

  gap: 30px;
}

/* =========================================================
   LEADER
========================================================= */

.lc-about-leader {
  display: flex;
  align-items: center;

  gap: 10px;
}

.lc-about-leader-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--lc-dark);

  border-radius: 50%;

  color: var(--lc-orange);

  font-size: 15px;
}

.lc-about-leader span {
  display: block;

  margin-bottom: 2px;

  color: var(--lc-text-muted);

  font-size: 9px;

  letter-spacing: 1px;
  text-transform: uppercase;
}

.lc-about-leader strong {
  display: block;

  color: var(--lc-heading);

  font-family: var(--lc-font-heading);
  font-size: 12px;
  font-weight: var(--lc-fw-bold);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .lc-about {
    padding: 85px 0;
  }

  .lc-about-visual {
    padding-right: 25px;
  }

  .lc-about-image-wrap {
    height: 500px;
  }

  .lc-about-content {
    padding-left: 0;
  }

  .lc-about-heading {
    max-width: 650px;
  }

  .lc-about-bg-text {
    top: 20px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .lc-about {
    padding: 70px 0;
  }

  .lc-about-bg-text {
    right: -15px;
    top: 40px;

    font-size: 110px;
  }

  .lc-about-visual {
    padding: 0 15px 25px 0;
  }

  .lc-about-image-wrap {
    height: 430px;
  }

  .lc-about-accent {
    left: -8px;

    width: 75px;
    height: 75px;
  }

  .lc-about-image-label {
    right: 0;
    bottom: 25px;

    min-width: 200px;

    padding: 13px 15px;
  }

  .lc-about-image-label-icon {
    width: 37px;
    height: 37px;

    font-size: 14px;
  }

  .lc-about-image-label strong {
    font-size: 10px;
  }

  .lc-about-heading {
    font-size: clamp(32px, 9vw, 44px);

    letter-spacing: -0.5px;
  }

  .lc-about-lead {
    font-size: 15px;
  }

  .lc-about-text {
    font-size: 13px;
  }

  .lc-about-feature h3 {
    font-size: 14px;
  }

  .lc-about-feature p {
    font-size: 11px;
  }

  .lc-about-bottom {
    align-items: flex-start;

    flex-direction: column;

    gap: 22px;
  }

  .lc-about-bottom .lc-btn {
    width: 100%;
  }

  .lc-about-blueprint {
    width: 70px;
    height: 70px;

    top: -15px;
  }

  .lc-blueprint-square {
    left: 18px;
    top: 18px;

    width: 34px;
    height: 34px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .lc-about {
    padding: 60px 0;
  }

  .lc-about-image-wrap {
    height: 360px;
  }

  .lc-about-image-label {
    min-width: 185px;

    padding: 11px 12px;
  }

  .lc-about-image-label-icon {
    width: 34px;
    height: 34px;
  }

  .lc-about-lead {
    font-size: 14px;
  }

  .lc-about-feature {
    gap: 11px;
  }

  .lc-about-feature-icon {
    width: 40px;
    height: 40px;

    font-size: 14px;
  }
}

/* --------------------------------- our services section styling starts from here ------------------------------------- */
.lc-services {
  position: relative;

  padding: 60px 0;

  background: var(--lc-white);

  overflow: hidden;
}

/* =========================================================
   BACKGROUND TEXT
========================================================= */

.lc-services-bg-text {
  position: absolute;

  left: -30px;
  top: 70px;

  color: rgba(0, 0, 0, 0.025);

  font-family: var(--lc-font-heading);
  font-size: clamp(100px, 17vw, 240px);
  font-weight: var(--lc-fw-black);

  line-height: 1;

  pointer-events: none;
  user-select: none;
}

/* =========================================================
   SERVICES HEADER
========================================================= */

.lc-services-header {
  position: relative;

  z-index: 2;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 40px;

  margin-bottom: 50px;
}

.lc-services-header .lc-section-title {
  max-width: 750px;

  margin-bottom: 0;
}

.lc-services-heading-accent {
  display: block;

  color: var(--lc-primary);
}

/* =========================================================
   SERVICES GRID
========================================================= */

.lc-services-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

/* =========================================================
   SERVICE FEATURE CARD
========================================================= */

.lc-service-feature {
  position: relative;

  min-height: 430px;

  overflow: hidden;

  background: var(--lc-dark);

  border-radius: var(--lc-radius);

  isolation: isolate;
}

.lc-service-feature.lc-service-large {
  grid-row: span 2;

  min-height: 880px;
}

/* =========================================================
   SERVICE IMAGE
========================================================= */

.lc-service-image {
  position: absolute;

  inset: 0;

  z-index: -2;

  overflow: hidden;
}

.lc-service-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.8s ease,
    filter 0.5s ease;
}

.lc-service-feature:hover .lc-service-image img {
  transform: scale(1.07);

  filter: saturate(1.05);
}

/* =========================================================
   SERVICE OVERLAY
========================================================= */

.lc-service-overlay {
  position: absolute;

  inset: 0;

  z-index: -1;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.65) 38%,
    rgba(0, 0, 0, 0.15) 75%,
    rgba(0, 0, 0, 0.15) 100%
  );

  transition: background 0.5s ease;
}

.lc-service-feature:hover .lc-service-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(0, 0, 0, 0.68) 48%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

/* =========================================================
   SERVICE NUMBER
========================================================= */

.lc-service-number {
  position: absolute;

  top: 25px;
  right: 28px;

  color: rgba(255, 255, 255, 0.16);

  font-family: var(--lc-font-heading);
  font-size: 55px;
  font-weight: var(--lc-fw-black);

  line-height: 1;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.lc-service-feature:hover .lc-service-number {
  color: rgba(233, 30, 37, 0.65);

  transform: translateY(-3px);
}

/* =========================================================
   SERVICE CONTENT
========================================================= */

.lc-service-content {
  position: absolute;

  left: 30px;
  right: 30px;
  bottom: 30px;
}

.lc-service-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  background: rgba(233, 30, 37, 0.9);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: var(--lc-radius);

  color: var(--lc-white);

  font-size: 18px;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.lc-service-feature:hover .lc-service-icon {
  background: var(--lc-orange);

  transform: translateY(-3px);
}

/* =========================================================
   CATEGORY
========================================================= */

.lc-service-category {
  display: block;

  margin-bottom: 7px;

  color: var(--lc-orange-light);

  font-family: var(--lc-font-heading);
  font-size: 10px;
  font-weight: var(--lc-fw-bold);

  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =========================================================
   SERVICE TITLE
========================================================= */

.lc-service-content h3 {
  margin: 0 0 10px;

  color: var(--lc-white);

  font-family: var(--lc-font-heading);
  font-size: 25px;
  font-weight: var(--lc-fw-bold);

  line-height: 1.2;
}

/* =========================================================
   SERVICE DESCRIPTION
========================================================= */

.lc-service-content p {
  max-width: 560px;

  margin: 0 0 18px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 12px;

  line-height: 1.75;
}

/* =========================================================
   SERVICE LINK
========================================================= */

.lc-service-link {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: var(--lc-white);

  font-family: var(--lc-font-heading);
  font-size: 10px;
  font-weight: var(--lc-fw-bold);

  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.lc-service-link i {
  color: var(--lc-orange);

  transition: transform 0.3s ease;
}

.lc-service-link:hover {
  color: var(--lc-white);
}

.lc-service-link:hover i {
  transform: translateX(5px);
}

/* =========================================================
   MORE SERVICES
========================================================= */

.lc-services-more {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 220px 1fr auto;

  align-items: center;

  gap: 30px;

  margin-top: 25px;

  padding: 22px 25px;

  background: var(--lc-bg-light);

  border: 1px solid var(--lc-border);

  border-left: 4px solid var(--lc-primary);

  border-radius: var(--lc-radius);
}

/* =========================================================
   MORE SERVICES LABEL
========================================================= */

.lc-services-more-label {
  display: flex;
  align-items: center;

  gap: 12px;
}

.lc-services-more-icon {
  width: 43px;
  height: 43px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: var(--lc-dark);

  border-radius: var(--lc-radius);

  color: var(--lc-orange);

  font-size: 15px;
}

.lc-services-more-label > div span {
  display: block;

  margin-bottom: 2px;

  color: var(--lc-primary);

  font-family: var(--lc-font-heading);
  font-size: 9px;
  font-weight: var(--lc-fw-bold);

  letter-spacing: 1.5px;
}

.lc-services-more-label strong {
  display: block;

  color: var(--lc-heading);

  font-family: var(--lc-font-heading);
  font-size: 13px;
  font-weight: var(--lc-fw-bold);
}

/* =========================================================
   SERVICE TAGS
========================================================= */

.lc-services-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 7px;
}

.lc-services-tags span {
  display: inline-flex;
  align-items: center;

  min-height: 30px;

  padding: 5px 11px;

  background: var(--lc-white);

  border: 1px solid var(--lc-border);

  border-radius: var(--lc-radius-pill);

  color: var(--lc-text-light);

  font-size: 10px;
  font-weight: var(--lc-fw-medium);

  transition: var(--lc-transition-fast);
}

.lc-services-tags span:hover {
  background: var(--lc-primary);

  border-color: var(--lc-primary);

  color: var(--lc-white);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .lc-services {
    padding: 85px 0;
  }

  .lc-services-header {
    align-items: flex-start;

    flex-direction: column;

    margin-bottom: 40px;
  }

  .lc-services-header .lc-btn {
    width: auto;
  }

  .lc-services-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
  }

  .lc-service-feature,
  .lc-service-feature.lc-service-large {
    min-height: 400px;
  }

  .lc-service-feature.lc-service-large {
    grid-row: auto;
  }

  .lc-services-more {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .lc-services-more > .lc-btn {
    width: max-content;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .lc-services {
    padding: 70px 0;
  }

  .lc-services-bg-text {
    left: -10px;
    top: 35px;

    font-size: 100px;
  }

  .lc-services-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .lc-service-feature,
  .lc-service-feature.lc-service-large {
    min-height: 400px;
  }

  .lc-service-content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .lc-service-number {
    top: 20px;
    right: 20px;

    font-size: 45px;
  }

  .lc-service-content h3 {
    font-size: 22px;
  }

  .lc-service-content p {
    font-size: 11px;
  }

  .lc-services-more {
    margin-top: 20px;

    padding: 20px;

    border-left-width: 3px;
  }

  .lc-services-more > .lc-btn {
    width: 100%;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .lc-services {
    padding: 60px 0;
  }

  .lc-services-header {
    margin-bottom: 30px;
  }

  .lc-service-feature,
  .lc-service-feature.lc-service-large {
    min-height: 360px;
  }

  .lc-service-icon {
    width: 43px;
    height: 43px;

    margin-bottom: 13px;

    font-size: 16px;
  }

  .lc-service-content h3 {
    font-size: 20px;
  }

  .lc-service-content p {
    margin-bottom: 14px;

    font-size: 10.5px;
  }

  .lc-service-category {
    font-size: 9px;
  }

  .lc-service-number {
    font-size: 38px;
  }

  .lc-services-tags {
    gap: 6px;
  }

  .lc-services-tags span {
    font-size: 9px;
  }
}

/* projects/portfolio  section styling starts from here */
.lc-projects {
  position: relative;

  padding: 60px 0;

  background: var(--lc-black);

  overflow: hidden;

  isolation: isolate;
}

/* =========================================================
   BACKGROUND TEXT
========================================================= */

.lc-projects-bg-text {
  position: absolute;

  right: -30px;
  top: 50px;

  z-index: -1;

  color: rgba(255, 255, 255, 0.025);

  font-family: var(--lc-font-heading);
  font-size: clamp(110px, 18vw, 260px);
  font-weight: var(--lc-fw-black);

  line-height: 1;

  pointer-events: none;
  user-select: none;
}

/* =========================================================
   PROJECTS HEADER
========================================================= */

.lc-projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 40px;

  margin-bottom: 50px;
}

.lc-projects-heading {
  max-width: 760px;
}

.lc-projects .lc-section-heading {
  color: var(--lc-white);
}

.lc-projects .lc-section-heading span {
  display: block;

  color: var(--lc-primary);
}

.lc-projects .lc-section-description {
  color: rgba(255, 255, 255, 0.6);
}

/* =========================================================
   PROJECT GRID
========================================================= */

.lc-projects-grid {
  display: grid;

  grid-template-columns:
    1.35fr
    1fr
    1fr;

  grid-template-rows:
    310px
    310px;

  gap: 15px;
}

/* =========================================================
   PROJECT ITEM
========================================================= */

.lc-project-item {
  position: relative;

  min-width: 0;

  overflow: hidden;

  background: var(--lc-dark);

  border-radius: var(--lc-radius);

  isolation: isolate;
}

/* =========================================================
   LARGE PROJECT
========================================================= */

.lc-project-item-large {
  grid-row: span 2;
}

/* =========================================================
   PROJECT IMAGE
========================================================= */

.lc-project-image {
  position: absolute;

  inset: 0;

  z-index: -2;

  overflow: hidden;
}

.lc-project-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.8s ease,
    filter 0.5s ease;
}

.lc-project-item:hover .lc-project-image img {
  transform: scale(1.07);

  filter: saturate(1.08);
}

/* =========================================================
   PROJECT OVERLAY
========================================================= */

.lc-project-overlay {
  position: absolute;

  inset: 0;

  z-index: -1;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.93) 0%,
    rgba(0, 0, 0, 0.62) 42%,
    rgba(0, 0, 0, 0.08) 100%
  );

  transition: background 0.4s ease;
}

.lc-project-item:hover .lc-project-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.7) 52%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

/* =========================================================
   PROJECT NUMBER
========================================================= */

.lc-project-number {
  position: absolute;

  top: 22px;
  right: 24px;

  color: rgba(255, 255, 255, 0.18);

  font-family: var(--lc-font-heading);
  font-size: 45px;
  font-weight: var(--lc-fw-black);

  line-height: 1;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.lc-project-item:hover .lc-project-number {
  color: rgba(233, 30, 37, 0.75);

  transform: translateY(-3px);
}

/* =========================================================
   PROJECT CONTENT
========================================================= */

.lc-project-content {
  position: absolute;

  left: 25px;
  right: 25px;
  bottom: 24px;

  z-index: 2;
}

.lc-project-category {
  display: block;

  margin-bottom: 7px;

  color: var(--lc-orange-light);

  font-family: var(--lc-font-heading);
  font-size: 9px;
  font-weight: var(--lc-fw-bold);

  letter-spacing: 1.8px;

  text-transform: uppercase;
}

.lc-project-content h3 {
  max-width: 500px;

  margin: 0 0 8px;

  color: var(--lc-white);

  font-family: var(--lc-font-heading);
  font-size: 23px;
  font-weight: var(--lc-fw-bold);

  line-height: 1.2;
}

.lc-project-content p {
  max-width: 500px;

  margin: 0 0 13px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 11px;

  line-height: 1.7;
}

/* =========================================================
   PROJECT LINK
========================================================= */

.lc-project-link {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: var(--lc-white);

  font-family: var(--lc-font-heading);
  font-size: 9px;
  font-weight: var(--lc-fw-bold);

  letter-spacing: 0.8px;

  text-transform: uppercase;
}

.lc-project-link i {
  color: var(--lc-orange);

  transition: transform 0.3s ease;
}

.lc-project-link:hover {
  color: var(--lc-white);
}

.lc-project-link:hover i {
  transform: translateX(5px);
}

/* =========================================================
   ACCENT PROJECT CARD
========================================================= */

.lc-project-item-accent {
  display: flex;
  align-items: flex-end;

  background: linear-gradient(
    135deg,
    var(--lc-primary-dark),
    var(--lc-primary)
  );
}

.lc-project-item-accent::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  right: -70px;
  top: -70px;

  border: 1px solid rgba(255, 255, 255, 0.18);

  border-radius: 50%;
}

.lc-project-item-accent::after {
  content: "";

  position: absolute;

  width: 140px;
  height: 140px;

  right: -35px;
  top: -35px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 50%;
}

.lc-project-accent-content {
  position: relative;

  z-index: 2;

  padding: 28px;
}

.lc-project-accent-number {
  display: block;

  margin-bottom: 20px;

  color: rgba(255, 255, 255, 0.35);

  font-family: var(--lc-font-heading);
  font-size: 45px;
  font-weight: var(--lc-fw-black);

  line-height: 1;
}

.lc-project-item-accent .lc-project-category {
  color: rgba(255, 255, 255, 0.7);
}

.lc-project-item-accent h3 {
  max-width: 330px;

  margin: 0 0 12px;

  color: var(--lc-white);

  font-family: var(--lc-font-heading);
  font-size: 25px;
  font-weight: var(--lc-fw-bold);

  line-height: 1.15;
}

.lc-project-item-accent p {
  max-width: 390px;

  margin-bottom: 18px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 11px;

  line-height: 1.75;
}

.lc-project-item-accent .lc-project-link {
  color: var(--lc-white);
}

.lc-project-item-accent .lc-project-link i {
  color: var(--lc-orange-light);
}

/* =========================================================
   PROJECT FOOTER
========================================================= */

.lc-projects-footer {
  display: flex;
  align-items: center;

  gap: 15px;

  margin-top: 28px;
}

.lc-projects-footer-line {
  width: 45px;
  height: 1px;

  background: var(--lc-primary);
}

.lc-projects-footer p {
  margin: 0;

  color: rgba(255, 255, 255, 0.45);

  font-size: 11px;
}

.lc-projects-footer a {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  color: var(--lc-white);

  font-family: var(--lc-font-heading);
  font-size: 10px;
  font-weight: var(--lc-fw-bold);

  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.lc-projects-footer a i {
  color: var(--lc-primary);

  transition: transform 0.3s ease;
}

.lc-projects-footer a:hover {
  color: var(--lc-white);
}

.lc-projects-footer a:hover i {
  transform: translateX(4px);
}

/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199.98px) {
  .lc-projects-grid {
    grid-template-columns:
      1.2fr
      1fr
      1fr;

    grid-template-rows:
      290px
      290px;
  }

  .lc-project-content h3 {
    font-size: 20px;
  }

  .lc-project-content p {
    font-size: 10px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .lc-projects {
    padding: 85px 0;
  }

  .lc-projects-header {
    align-items: flex-start;

    flex-direction: column;

    margin-bottom: 40px;
  }

  .lc-projects-header .lc-btn {
    width: auto;
  }

  .lc-projects-grid {
    grid-template-columns: repeat(2, 1fr);

    grid-template-rows: repeat(3, 330px);
  }

  .lc-project-item-large {
    grid-row: span 2;
  }

  .lc-project-item-accent {
    grid-column: span 2;
  }

  .lc-project-accent-content {
    padding: 25px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .lc-projects {
    padding: 70px 0;
  }

  .lc-projects-bg-text {
    right: -10px;
    top: 35px;

    font-size: 100px;
  }

  .lc-projects-grid {
    grid-template-columns: 1fr;

    grid-template-rows: none;

    gap: 15px;
  }

  .lc-project-item,
  .lc-project-item-large,
  .lc-project-item-accent {
    min-height: 390px;

    grid-column: auto;
    grid-row: auto;
  }

  .lc-project-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .lc-project-number {
    top: 18px;
    right: 20px;

    font-size: 40px;
  }

  .lc-project-content h3 {
    font-size: 21px;
  }

  .lc-project-content p {
    font-size: 10.5px;
  }

  .lc-project-accent-content {
    padding: 25px 20px;
  }

  .lc-project-item-accent h3 {
    font-size: 22px;
  }

  .lc-projects-footer {
    flex-wrap: wrap;

    gap: 10px;
  }

  .lc-projects-footer-line {
    width: 30px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .lc-projects {
    padding: 60px 0;
  }

  .lc-project-item,
  .lc-project-item-large,
  .lc-project-item-accent {
    min-height: 350px;
  }

  .lc-project-content h3 {
    font-size: 19px;
  }

  .lc-project-content p {
    margin-bottom: 11px;

    font-size: 10px;
  }

  .lc-project-accent-content {
    padding: 22px 18px;
  }

  .lc-project-accent-number {
    margin-bottom: 15px;

    font-size: 38px;
  }

  .lc-project-item-accent h3 {
    font-size: 20px;
  }

  .lc-projects-footer p {
    width: 100%;
  }
}

/* ---------------------our clients section styling starts from here ------------------- */
.lc-clients {
  position: relative;

  padding: 60px 0;

  background: var(--lc-off-white);

  overflow: hidden;
}

/* =========================================================
   HEADER
========================================================= */

.lc-clients-header {
  display: grid;

  grid-template-columns: 1fr 430px;

  align-items: end;

  gap: 60px;

  margin-bottom: 50px;
}

.lc-clients-header .lc-section-heading {
  margin-bottom: 0;
}

.lc-clients-header .lc-section-heading span {
  display: block;

  color: var(--lc-primary);
}

.lc-clients-intro {
  margin: 0;

  color: var(--lc-text-light);

  font-size: 14px;

  line-height: 1.85;
}

/* =========================================================
   CLIENT LOGOS
========================================================= */

.lc-client-logos {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  border-top: 1px solid var(--lc-border);
  border-left: 1px solid var(--lc-border);
}

/* =========================================================
   CLIENT LOGO
========================================================= */

.lc-client-logo {
  min-height: 145px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 25px;

  background: var(--lc-white);

  border-right: 1px solid var(--lc-border);
  border-bottom: 1px solid var(--lc-border);

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.lc-client-logo img {
  display: block;

  width: 100%;
  max-width: 145px;
  max-height: 65px;

  object-fit: contain;

  filter: grayscale(100%);

  opacity: 0.55;

  transition:
    filter 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.lc-client-logo:hover {
  background: var(--lc-dark);

  transform: translateY(-2px);

  position: relative;

  z-index: 2;
}

.lc-client-logo:hover img {
  filter: grayscale(0);

  opacity: 1;

  transform: scale(1.04);
}

/* =========================================================
   CLIENT BOTTOM
========================================================= */

.lc-client-bottom {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-top: 25px;

  padding: 22px 25px;

  background: var(--lc-white);

  border: 1px solid var(--lc-border);

  border-left: 4px solid var(--lc-primary);

  border-radius: var(--lc-radius);
}

.lc-client-bottom-icon {
  width: 45px;
  height: 45px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(233, 30, 37, 0.08);

  border-radius: 50%;

  color: var(--lc-primary);

  font-size: 17px;
}

.lc-client-bottom > div:nth-child(2) {
  flex: 1;
}

.lc-client-bottom span {
  display: block;

  margin-bottom: 3px;

  color: var(--lc-primary);

  font-family: var(--lc-font-heading);
  font-size: 9px;
  font-weight: var(--lc-fw-bold);

  letter-spacing: 1.5px;
}

.lc-client-bottom strong {
  display: block;

  color: var(--lc-heading);

  font-family: var(--lc-font-heading);
  font-size: 15px;
  font-weight: var(--lc-fw-bold);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .lc-clients {
    padding: 85px 0;
  }

  .lc-clients-header {
    grid-template-columns: 1fr;

    gap: 20px;

    align-items: start;

    margin-bottom: 40px;
  }

  .lc-client-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .lc-client-logo {
    min-height: 130px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .lc-clients {
    padding: 70px 0;
  }

  .lc-clients-header {
    margin-bottom: 30px;
  }

  .lc-clients-intro {
    font-size: 12px;
  }

  .lc-client-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .lc-client-logo {
    min-height: 115px;

    padding: 18px;
  }

  .lc-client-logo img {
    max-width: 120px;
    max-height: 50px;
  }

  .lc-client-bottom {
    align-items: flex-start;

    flex-wrap: wrap;

    padding: 18px;

    gap: 12px;
  }

  .lc-client-bottom > div:nth-child(2) {
    min-width: calc(100% - 60px);
  }

  .lc-client-bottom .lc-btn {
    width: 100%;

    margin-top: 5px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .lc-clients {
    padding: 60px 0;
  }

  .lc-client-logo {
    min-height: 100px;

    padding: 15px;
  }

  .lc-client-logo img {
    max-width: 100px;
    max-height: 42px;
  }

  .lc-client-bottom-icon {
    width: 40px;
    height: 40px;

    font-size: 14px;
  }

  .lc-client-bottom span {
    font-size: 8px;
  }

  .lc-client-bottom strong {
    font-size: 13px;
  }
}


/* ---------------------our blogs section styling starts from here ------------------- */
.lc-blog {
    position: relative;

    padding: 60px 0;

    background: var(--lc-white);

    overflow: hidden;
}


/* =========================================================
   BLOG HEADER
========================================================= */

.lc-blog-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 50px;
}


.lc-blog-header .lc-section-heading {
    margin-bottom: 0;
}


.lc-blog-header .lc-section-heading span {
    display: block;

    color: var(--lc-primary);
}


/* =========================================================
   BLOG GRID
========================================================= */

.lc-blog-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


/* =========================================================
   BLOG CARD
========================================================= */

.lc-blog-card {
    overflow: hidden;

    background: var(--lc-white);

    border: 1px solid var(--lc-border);

    border-radius: var(--lc-radius);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.lc-blog-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   BLOG IMAGE
========================================================= */

.lc-blog-image {
    position: relative;

    display: block;

    height: 250px;

    overflow: hidden;

    background: var(--lc-dark);
}


.lc-blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.lc-blog-card:hover .lc-blog-image img {
    transform: scale(1.06);
}


/* =========================================================
   BLOG CATEGORY
========================================================= */

.lc-blog-category {
    position: absolute;

    left: 18px;
    bottom: 18px;

    display: inline-flex;

    padding: 7px 11px;

    background: var(--lc-primary);

    color: var(--lc-white);

    font-family: var(--lc-font-heading);
    font-size: 8px;
    font-weight: var(--lc-fw-bold);

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


/* =========================================================
   BLOG CONTENT
========================================================= */

.lc-blog-content {
    padding: 25px;
}


/* =========================================================
   BLOG META
========================================================= */

.lc-blog-meta {
    display: flex;
    align-items: center;

    margin-bottom: 12px;
}


.lc-blog-meta span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: var(--lc-text-muted);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 0.6px;
}


.lc-blog-meta i {
    color: var(--lc-primary);

    font-size: 10px;
}


/* =========================================================
   BLOG TITLE
========================================================= */

.lc-blog-content h3 {
    margin: 0 0 12px;

    font-family: var(--lc-font-heading);
    font-size: 20px;
    font-weight: var(--lc-fw-bold);

    line-height: 1.35;
}


.lc-blog-content h3 a {
    color: var(--lc-heading);
}


.lc-blog-content h3 a:hover {
    color: var(--lc-primary);
}


/* =========================================================
   BLOG DESCRIPTION
========================================================= */

.lc-blog-content p {
    margin: 0 0 18px;

    color: var(--lc-text-light);

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   READ MORE
========================================================= */

.lc-blog-read {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--lc-heading);

    font-family: var(--lc-font-heading);
    font-size: 9px;
    font-weight: var(--lc-fw-bold);

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


.lc-blog-read i {
    color: var(--lc-primary);

    transition: transform 0.3s ease;
}


.lc-blog-read:hover {
    color: var(--lc-primary);
}


.lc-blog-read:hover i {
    transform: translateX(5px);
}


/* =========================================================
   BLOG BOTTOM
========================================================= */

.lc-blog-bottom {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 28px;
}


.lc-blog-bottom-line {
    width: 40px;
    height: 1px;

    background: var(--lc-primary);
}


.lc-blog-bottom p {
    margin: 0;

    color: var(--lc-text-muted);

    font-size: 11px;
}


.lc-blog-bottom a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--lc-heading);

    font-family: var(--lc-font-heading);
    font-size: 9px;
    font-weight: var(--lc-fw-bold);

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


.lc-blog-bottom a i {
    color: var(--lc-primary);

    transition: transform 0.3s ease;
}


.lc-blog-bottom a:hover {
    color: var(--lc-primary);
}


.lc-blog-bottom a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .lc-blog {
        padding: 85px 0;
    }


    .lc-blog-header {
        align-items: flex-start;

        flex-direction: column;

        margin-bottom: 40px;
    }


    .lc-blog-header .lc-btn {
        width: auto;
    }


    .lc-blog-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 18px;
    }


    .lc-blog-card:last-child {
        grid-column: span 2;

        display: grid;

        grid-template-columns: 1fr 1fr;
    }


    .lc-blog-card:last-child .lc-blog-image {
        height: 100%;
        min-height: 250px;
    }


    .lc-blog-card:last-child .lc-blog-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .lc-blog {
        padding: 70px 0;
    }


    .lc-blog-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .lc-blog-card:last-child {
        grid-column: auto;

        display: block;
    }


    .lc-blog-card:last-child .lc-blog-image {
        height: 220px;
        min-height: 0;
    }


    .lc-blog-image {
        height: 220px;
    }


    .lc-blog-content {
        padding: 20px;
    }


    .lc-blog-content h3 {
        font-size: 18px;
    }


    .lc-blog-content p {
        font-size: 11px;
    }


    .lc-blog-bottom {
        flex-wrap: wrap;
    }


    .lc-blog-bottom p {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .lc-blog {
        padding: 60px 0;
    }


    .lc-blog-image {
        height: 200px;
    }


    .lc-blog-content {
        padding: 18px;
    }


    .lc-blog-content h3 {
        font-size: 17px;
    }


    .lc-blog-content p {
        font-size: 10.5px;
    }


    .lc-blog-category {
        left: 14px;
        bottom: 14px;
    }

}