@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:wght@700;800&display=swap");

/* 
===============================================
   Cooper Elevators - Custom Stylesheet
=============================================== 
*/

html,
body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Palette - Premium Red & White Theme */
  --primary: #2d3436; /* Professional Dark Grey (Softened from Black) */
  --primary-light: #636e72;
  --accent: #dd353a; /* Vibrant Corporate Red */
  --accent-hover: #dd353a;
  --accent-soft: rgba(218, 33, 39, 0.05); /* Very light red for backgrounds */
  --brand-red: #dd353a;
  --text-main: #2d3436;
  --text-muted: #2d3436;
  --bg-white: #ffffff;
  --bg-light: #fdfdfe; /* Premium off-white */
  --bg-neutral: #f8f9fa; /* Light grey for sections */
  --border-color: #e9ecef;
  --accent-soft-1: #dd353b7e;

  /* Typography */
  --font-heading: "Lora", serif;
  --font-body: "Open Sans", sans-serif;

  /* Spacing & Utilities */
  --container-max: 1280px;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 50px rgba(218, 33, 39, 0.08); /* Red tint shadow */
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
}

/* ================== Preloader ================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff; /* White bg as requested */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-box {
  position: relative;
}
.loader {
  background-color: var(--brand-red); /* Corporate Red */
  padding: 12px 30px;
  border-radius: 4px;
  display: flex;
  gap: 1px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(33, 37, 41, 0.12);
}

.loader > span {
  font-size: 34px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  letter-spacing: -1.5px;
  opacity: 0;
  transform: translateY(5px);
  animation: professional-reveal 0.6s ease-out forwards;
}

.loader > span:nth-child(1) {
  animation-delay: 0s;
}
.loader > span:nth-child(2) {
  animation-delay: 0.05s;
}
.loader > span:nth-child(3) {
  animation-delay: 0.1s;
}
.loader > span:nth-child(4) {
  animation-delay: 0.15s;
}
.loader > span:nth-child(5) {
  animation-delay: 0.2s;
}
.loader > span:nth-child(6) {
  animation-delay: 0.25s;
}
.loader > span:nth-child(7) {
  animation-delay: 0.3s;
}
.loader > span:nth-child(8) {
  animation-delay: 0.35s;
}
.loader > span:nth-child(9) {
  animation-delay: 0.4s;
}
.loader > span:nth-child(10) {
  animation-delay: 0.45s;
}
.loader > span:nth-child(11) {
  animation-delay: 0.5s;
}
.loader > span:nth-child(12) {
  animation-delay: 0.55s;
}
.loader > span:nth-child(13) {
  animation-delay: 0.6s;
}
.loader > span:nth-child(14) {
  animation-delay: 0.65s;
}
.loader > span:nth-child(15) {
  animation-delay: 0.7s;
}
.loader > span:nth-child(16) {
  animation-delay: 0.75s;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.tm-text {
  position: absolute;
  top: -10px;
  right: -15px;
  font-size: 8px;
  font-weight: 500;
  color: #333;
  font-family: var(--font-heading);
  opacity: 0;
  animation: professional-reveal 0.4s ease-out 0.9s forwards;
}

@media (max-width: 480px) {
  .tm-text {
    font-size: 6px;
    right: -10px;
    top: -8px;
  }
}

@keyframes professional-reveal {
  0% {
    transform: translateY(5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Response Loader for Small Screens */
@media (max-width: 480px) {
  .loader {
    padding: 10px 20px;
    flex-wrap: wrap;
    max-width: 280px;
  }
  .loader > span {
    font-size: 24px;
  }
  .loader .space {
    display: none; /* Hide space when stacking */
  }
}

@media (max-width: 350px) {
  .loader {
    padding: 8px 15px;
    max-width: 220px;
  }
  .loader > span {
    font-size: 20px;
  }
}

/* ============================================================
   BASE GRID & LAYOUT UTILITIES (Custom Architecture)
   ============================================================ */

.container {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
  max-width: var(--container-max);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

[class*="col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Desktop Grid */
@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.g-4 {
  margin: -10px;
}
.g-4 > [class*="col-"] {
  padding: 10px;
}
.g-5 {
  margin: -15px;
}
.g-5 > [class*="col-"] {
  padding: 15px;
}

/* Utilities */
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-start {
  text-align: left !important;
}
.align-items-center {
  align-items: center !important;
}
.justify-content-center {
  justify-content: center !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.w-100 {
  width: 100% !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.bg-light {
  background-color: var(--bg-light) !important;
}
.bg-white {
  background-color: #fff !important;
}

/* ================== Reset & Basics ================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden; /* Only on body to prevent breaking sticky */
  width: 100%;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

ul {
  list-style: none;
}

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

/* ================== Grid System & Utilities ================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-12,
.col-md-6,
.col-lg-6,
.col-lg-4,
.col-lg-3 {
  padding: 0 15px;
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }
  .col-md-4 {
    width: 33.33%;
  }
  .col-md-3 {
    width: 25%;
  }
}

@media (min-width: 992px) {
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.33%;
  }
  .col-lg-8 {
    width: 66.66%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-4 {
    width: 33.33%;
  }
  .col-lg-3 {
    width: 25%;
  }
}

.col-12 {
  width: 100%;
}

.align-items-center {
  align-items: center;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.d-flex {
  display: flex !important;
}
.flex-column {
  flex-direction: column !important;
}
.align-items-center {
  align-items: center !important;
}
.text-white {
  color: #fff !important;
}
.text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}
.bg-light {
  background-color: var(--bg-light) !important;
}

.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.mt-5 {
  margin-top: 3rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .mt-lg-0 {
    margin-top: 0;
  }
  .mb-lg-0 {
    margin-bottom: 0;
  }
}

.img-fluid {
  max-width: 100%;
  height: auto;
}
.rounded-lg {
  border-radius: var(--radius-lg);
}
.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.section {
  padding: 45px 0; /* High-density corporate spacing */
  overflow: hidden;
}

/* Section Headings */
.section-heading {
  /* margin-bottom: 25px; Compact heading spacing */
}

.section-heading .title {
  display: block;
}

.section-heading .title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
}

.section-heading .heading-desc {
  max-width: 700px;
  margin: 0 auto;
}

.section-heading.text-center .heading-desc {
  text-align: center;
}

.text-left .heading-desc {
  margin: 0;
}

/* ================== Header & Topbar ================== */
.top-bar {
  background-color: var(
    --bg-neutral
  ); /* Changed from dark blue to light grey */
  color: var(--text-main);
  padding: 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* Allow children to fill full height */
}

.top-bar a {
  color: var(--text-main);
  transition: var(--transition);
}

.top-bar-left {
  display: flex;
  align-items: center;
}

.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
}

.top-bar-left .sep {
  height: 15px;
  width: 1px;
  background-color: var(--border-color);
  display: inline-block;
}

.social-links {
  display: flex;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px; /* Matches the top bar height */
  background-color: rgba(0, 0, 0, 0.02);
  border-left: 1px solid var(--border-color);
  font-size: 16px;
  color: var(--text-main);
}

.social-links a:hover {
  background-color: var(--accent);
  color: #fff;
}

.header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 0;
  position: -webkit-sticky; /* For Safari */
  position: sticky;
  top: 0;
  z-index: 2000;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.header-logo-img {
  height: 85px;
  width: auto;
}

.nav-menu ul {
  display: flex;
  gap: 0;
  height: 100%;
}

.nav-menu > ul > li {
  position: relative;
  height: 90px;
  display: flex;
  align-items: center;
}

.nav-menu a {
  color: var(--primary); /* Blue text on white bg */
  font-weight: 600;
  font-size: 15px;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent);
  background-color: rgba(96, 96, 96, 0.28);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff; /* White bg for dropdown */
  min-width: 220px;
  display: block !important;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  border-top: 3px solid var(--accent);
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  z-index: 100;
  border-radius: 0;
}

.dropdown li {
  width: 100%;
}

.dropdown a {
  color: var(--text-main) !important;
  padding: 12px 20px !important;
  height: auto !important;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px !important;
  background: #fff;
}

.dropdown a:hover {
  background-color: var(--bg-light) !important;
  color: var(--accent) !important;
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--primary);
  cursor: pointer;
}

.mobile-cta {
  display: none;
}

/* ================== Hero Slider ================== */
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 500px;
  background-color: var(--primary);
}

.hero-slider,
.hero-slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  transition: transform 10s ease-out;
}

/* Cinematic Ken Burns Zoom */
@keyframes kenBurnsZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.swiper-slide-active .hero-slide-bg {
  animation: kenBurnsZoom 8s ease-out forwards;
}

.swiper-slide {
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text-center {
  max-width: 900px;
  width: 100%;
}

.hero-subtitle {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 15px;
  /* Multi-layer shadow for visibility without a background box */
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0px 0px 10px rgba(0, 0, 0, 0.5),
    0px 0px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle i {
  color: var(--accent);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

.hero-subtitle::before,
.hero-subtitle::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.hero-title {
  color: #fff;
  font-size: clamp(36px, 5vw, 68px);
  margin-bottom: 25px;
  line-height: 1.1;
  font-weight: 800;
}

.hero-desc {
  color: #fff;
  font-size: 21px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Explicit Hero Button Colors for Visibility */
.hero-btns .btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.hero-btns .btn-primary .text {
  color: #fff;
  transition: color 300ms;
}

.hero-btns .btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
  width: 50px !important;
  height: 50px !important;
  border-radius: 0;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--accent);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
  background: var(--accent) !important;
  opacity: 1 !important;
  width: 20px;
  border-radius: 10px;
}

/* ================== Why Choose Us ================== */
/* About Collage Layout */
.about-collage {
  display: flex;
  gap: 20px;
  align-items: stretch;
  height: 550px;
}

.collage-left,
.collage-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.collage-img-1,
.collage-img-2 {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  flex-grow: 1;
}

.collage-img-1 img,
.collage-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-counter {
  padding: 25px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-md);
  height: 140px;
  flex-shrink: 0;
}

.collage-counter .count {
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 5px;
}

.collage-counter .lbl {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.collage-counter.dark {
  background-color: var(--primary-light);
  color: #fff;
}

.collage-counter.orange {
  background: var(--primary);
  color: #fff;
}

/* Comparison Styling (Optional fallback) */
.comparison-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comparison-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-around;
  padding: 10px;
  color: #fff;
  font-weight: 700;
}

/* Stats Strip */
.stats-strip {
  background: var(--brand-red);
  background-attachment: fixed;
  padding: 60px 0;
  color: #fff;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: center;
}

@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-num {
  display: block;
  font-size: 48px;
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.stat-num span {
  font-size: 28px;
  color: var(--accent);
  vertical-align: super;
  margin-left: -2px;
  font-weight: 300;
}

.stat-lbl {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

/* Check List */
.check-list {
  margin-top: 20px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 600;
}

.check-list iconify-icon {
  color: var(--accent); /* Symbol Red */
  font-size: 24px;
}

/* Project Grid Ref */
.project-grid-ref {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.project-item-ref {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.project-item-ref img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
}

.project-item-ref h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.project-item-ref a {
  font-weight: 600;
  font-size: 14px;
}

/* Work Process Circles */
.circle-steps-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.circle-step {
  flex: 1;
  min-width: 150px;
}

.icon-circle {
  width: 100px;
  height: 100px;
  border: 2px dashed #ccc;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: var(--primary);
  transition: var(--transition);
}

.circle-step h4 {
  font-size: 16px;
  font-weight: 700;
}

.text-accent {
  color: var(--accent);
}

/* Partners Strip */
.partners-strip-ref {
  padding: 60px 0;
}

.partners-strip-img {
  width: 100%;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .about-collage {
    flex-direction: column;
    height: auto;
    gap: 15px;
  }

  .collage-img-1,
  .collage-img-2 {
    height: 250px;
    width: 100%;
    flex: none;
  }

  .collage-counter {
    height: 120px;
    padding: 20px;
  }
}

/* ================== Features Grid ================== */
/* ================== Feature Cards (Standard) ================== */

.feature-card {
  background: #fff;
  padding: 25px 20px; /* Compact card padding */
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition);
  border: 1px solid #f0f0f0; /* Subtle border for corporate look */
  border-bottom: 3px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--accent);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--bg-light);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: var(--accent); /* Symbol Red */
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: var(--primary);
  color: #fff;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.solution-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid #f0f0f0;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.solution-img {
  height: 250px;
  overflow: hidden;
}

.solution-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.solution-card:hover .solution-img img {
  transform: scale(1.1);
}

.solution-content {
  padding: 25px;
  position: relative;
}

.solution-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-family: var(--font-heading);
}

/* ================== Process ================== */
.process-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
}

.process-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(218, 33, 39, 0.95) 0%,
    rgba(184, 23, 29, 0.98) 100%
  ); /* Premium Red Gradient instead of charcoal */
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--accent);
  color: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

.step-icon {
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 10px;
}

.process-step h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* ================== Partners & CTA ================== */
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.logo-item {
  background: #fff;
  padding: 15px 25px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.logo-item:hover {
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.logo-item iconify-icon {
  font-size: 24px;
  color: var(--accent); /* Symbol Red */
}

.cta-box {
  background-color: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--primary);
}

.cta-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.cta-list {
  margin-top: 20px;
}

.cta-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-main);
  font-weight: 500;
}

.cta-list iconify-icon {
  color: var(--accent);
  font-size: 20px;
  margin-top: 2px;
}

.form-group-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  background-color: var(--bg-light);
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: #fff;
}

input.form-control {
  margin-bottom: 0;
}

.row.g-3 > [class*="col-"] {
  padding-bottom: 15px;
}
.row.g-4 > [class*="col-"] {
  padding-bottom: 24px;
}

.form-group-row input.form-control {
  margin-bottom: 0;
}

textarea.form-control {
  resize: none;
  margin-bottom: 0;
}

/* ================== FAQ ================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: #fff;
  transition: var(--transition);
}

.faq-header h3 {
  margin: 0;
  font-size: 16px;
  color: var(--primary);
  transition: var(--transition);
  padding-right: 30px;
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--brand-red);
  transition: var(--transition);
}

.faq-icon::before {
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 20px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-header h3 {
  color: var(--brand-red);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: var(--bg-light);
}

.faq-content p {
  padding: 20px;
  margin: 0;
}

/* ================== Testimonials ================== */
.testimonial-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.rating {
  color: #ffb800;
  font-size: 20px;
  margin-bottom: 20px;
}

.review-text {
  font-size: 18px;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 30px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 0;
  object-fit: cover;
}

.client-info h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
}

.client-info span {
  font-size: 14px;
  color: var(--text-muted);
}

/* ================== Footer ================== */
.footer {
  background-color: #2d3436;
  color: #fff;
  border-top: none;
  position: relative;
  overflow: hidden;
}
.footer h3 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}
.footer-socials a {
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}
.footer .about-col p,
.footer-bottom p,
.footer .links-col a,
.footer .services-col a,
.contact-info li {
  color: rgba(255, 255, 255, 0.85);
}
.footer .links-col a:hover,
.footer .services-col a:hover {
  color: var(--accent);
  text-decoration: none;
}

.footer-top {
  padding: 50px 0 30px; /* Compact footer */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.about-col {
  grid-column: span 1;
}

@media (min-width: 992px) {
  .about-col {
    grid-column: span 2;
  }
}

.about-col p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 15px;
}

.footer-logo-img {
  height: 120px;
  width: auto;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.footer-socials a:hover {
  background-color: var(--accent);
  color: #fff !important;
  transform: translateY(-5px);
}

.footer h3 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 20px;
}

.footer ul {
  margin: 0;
  padding: 0;
}

.footer .links-col ul li,
.footer .services-col ul li {
  margin-bottom: 12px;
}

.footer .links-col a,
.footer .services-col a {
  color: rgba(255, 255, 255, 0.8);
  display: inline-block;
  transition: var(--transition);
}

.footer .links-col a:hover,
.footer .services-col a:hover,
.footer-contact-block a:hover {
  color: var(--accent);
  transform: translateX(8px);
}

.footer-contact-block a {
  color: #fff;
  font-weight: 500;
}

.contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--accent);
  text-decoration: none;
}
.footer-contact-block p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.office-label {
  color: var(--accent) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px;
  margin-bottom: 12px !important;
  display: block;
}

.branch-entry {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.branch-entry:last-child {
  border-bottom: none;
}

.branch-title {
  color: #fff;
  font-size: 13px;
  display: block;
  margin-bottom: 4px;
}

.contact-info iconify-icon {
  font-size: 24px;
  color: #fff;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.1); /* Subtle dark tip for bottom bar */
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 700;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

@media (min-width: 991px) {

.mobile-quote-btn{
    display:none;
}
}
/* ================== Responsive Adjustments ================== */
@media (max-width: 991px) {

  .top-bar{
    display:block;
  }

  .top-bar-inner{
    justify-content:center;
  }

  .top-bar-right{
    display:none;
  }

  .top-bar-left{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
  }

  .top-bar-left a{
    font-size:0px;
    padding:8px 10px;
    display:flex;
    align-items:center;
    gap:5px;
  }

  .top-bar-left a i{
    font-size:16px;
  }

  .top-bar-left .sep{
    display:none;
  }
	

.top-bar-left a:first-child::after{
    content:"Operations";
    font-size:12px;
}

.top-bar-left a:nth-of-type(2)::after{
    content:"Sales";
    font-size:12px;
}

.top-bar-left a:last-of-type::after{
    content:"Email";
    font-size:12px;
}

.top-bar-left a i{
    font-size:12px;
    margin-right:5px;
}


  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    max-width: 80%;
    height: 100vh;
    background-color: #fff;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: var(--transition);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu ul {
    flex-direction: column;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
    position: relative;
  }

  body.menu-open {
    overflow: hidden;
  }

  .desktop-cta {
    display: none;
  }

  /*.mobile-cta {*/
  /*  display: block;*/
  /*  margin-top: 30px;*/
  /*}*/

  .about-image-wrapper {
    margin-top: 30px;
  }

  .form-group-row {
    flex-direction: column;
    gap: 0;
  }
	.mobile-quote-btn{
    display:flex !important;
    align-items:center;
    justify-content:center;
    padding:8px 12px;
    background:transparent;
    color:var(--primary);
    border:1px solid var(--primary);
    font-size:13px;
    font-weight:600;
    white-space:nowrap;
    margin-right:10px;
}

.mobile-quote-btn:hover{
    color:#fff;
}
}

.header-right{
    gap:10px;
}
/* ============================================================
   WHY COOPER ELEVATORS SECTION
   ============================================================ */

/* ============================================================
   WHY COOPER - INDUSTRIAL FEATURE PLATE
   ============================================================ */

.why-feature-slate {
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}

.why-slate-content {
  padding: 60px;
  background: #fff;
  height: 100%;
}

.accent-bar-red {
  width: 4px;
  height: 40px;
  background: var(--accent);
  position: absolute;
  left: 60px;
  top: 60px;
}

.why-slate-img-box {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.why-slate-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.why-feature-slate:hover .why-slate-img-box img {
  transform: scale(1.05);
}

.why-floating-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(221, 53, 58, 0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 20px 30px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(221, 53, 58, 0.3);
  z-index: 5;
  animation: floatingBadge 3s ease-in-out infinite;
}

.badge-inner .lbl {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 2px;
}

.badge-inner .val {
  display: block;
  font-size: 24px;
  font-weight: 800;
  font-family: var(--font-heading);
}

@keyframes floatingBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991px) {
  .why-slate-content {
    padding: 40px;
  }
  .accent-bar-red {
    left: 40px;
    top: 40px;
  }
}

.why-bullet-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.why-bullet-list li {
  font-size: 18px;
  color: #333;
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
  font-weight: 500;
}

.why-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 25px;
  line-height: 1;
}

.why-image-accent img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

/* Expertise Belt (Quick Features) */
.expertise-belt {
  display: flex;
  background: #f8f9fa; /* Light technical grey */
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 40px;
  overflow: hidden;
}

.expertise-belt-item {
  flex: 1;
  text-align: center;
  padding: 30px 15px;
  border-right: 1px solid #dee2e6;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.expertise-belt-item:last-child {
  border-right: none;
}

.expertise-belt-item .eb-icon {
  font-size: 32px;
  color: var(--accent); /* Our Color (Red) */
  margin-bottom: 10px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-belt-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: block;
  line-height: 1.3;
}

.expertise-belt-item:hover {
  background: #fff;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.02);
}

.expertise-belt-item:hover .eb-icon {
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .expertise-belt {
    flex-wrap: wrap;
  }
  .expertise-belt-item {
    flex: 0 0 50%;
    border-bottom: 1px solid #dee2e6;
  }
  .expertise-belt-item:nth-child(even) {
    border-right: none;
  }
  .expertise-belt-item:last-child {
    flex: 0 0 100%;
    border-bottom: none;
  }
}

@media (max-width: 575px) {
  .expertise-belt-item {
    flex: 0 0 100%;
    border-right: none;
  }
}

/* Modern Chevron Process Flow (Perfected Style) */
.chevron-process-wrapper {
  width: 100%;
  background: #fff;
}

.chevron-flow-container {
  display: flex;
  align-items: flex-end; /* Align chevrons at the bottom */
  justify-content: center;
  width: 100%;
  gap: 15px; /* Spacing between chevrons as in image */
}

.chevron-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-label {
  text-align: center;
  padding-bottom: 25px; /* Space for dot and connection */
  position: relative;
  width: 100%;
}

.step-label h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--primary);
  font-family: var(--font-heading);
}

.step-label p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.4;
}

.step-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5px;
}

.step-no {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  background: #f8f9fa;
  padding: 2px 8px;
  border-radius: 40px;
  border: 1px solid rgba(221, 53, 58, 0.1);
  letter-spacing: 1px;
  margin-bottom: 5px;
  font-family: var(--font-heading);
}

.step-line {
  width: 4px;
  height: 25px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.6;
}

.step-chevron {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  clip-path: polygon(85% 0%, 100% 50%, 85% 100%, 0% 100%, 15% 50%, 0% 0%);
  transition: all 0.4s ease;
}

.step-chevron i {
  font-size: 32px;
  color: var(--primary); /* Dark icons on light backgrounds */
  transition: all 0.4s ease;
}

/* Colors - Multi-step Red Gradient */
.color-1 {
  background-color: #fcd7da;
}
.color-2 {
  background-color: #f5a6ab;
}
.color-3 {
  background-color: #ed767d;
}
.color-4 {
  background-color: #e4454e;
}
.color-5 {
  background-color: #dd353a;
}

/* White Icons for darker backgrounds */
.color-3 i,
.color-4 i,
.color-5 i {
  color: #fff;
}

.chevron-step:hover .step-chevron {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Handling */
@media (max-width: 991px) {
  .chevron-flow-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .chevron-step {
    width: 100%;
    max-width: 400px;
  }

  .step-label {
    padding-bottom: 15px;
  }

  .step-dot::after {
    display: none;
  }

  .step-chevron {
    height: 70px;
    clip-path: polygon(
      100% 0%,
      100% 100%,
      0% 100%,
      0% 0%
    ); /* Rectangular for mobile for better fit */
    border-radius: 4px;
  }

  .step-link {
    display: none; /* Hide technical link on mobile to save vertical space */
  }
}

.page-header-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 15px auto 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .page-header-desc {
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.5;
    padding: 0 10px;
  }
}

.btn-white-border {
  background-color: transparent;
  color: #fff;
  padding: 12px 30px;
  font-weight: 700;
  border-radius: 4px;
  border: 2px solid #fff;
  transition: var(--transition);
}

.btn-white-border:hover {
  background-color: #fff;
  color: var(--primary);
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .page-header-btns .btn {
    display: block;
    margin: 0 auto 15px !important;
    width: 100%;
    max-width: 300px;
  }
}

/* Parallax CTA Section (Modern Professional Style) */
.section-cta-parallax {
  position: relative;
  padding: 70px 0;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.8)
  ); /* Deep dark overlay */
  z-index: 1;
}

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

.cta-title-pro {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  font-family: var(--font-heading);
}

.cta-subtitle-pro {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.btn-brand-red {
  background-color: var(--accent);
  color: #fff;
  padding: 15px 35px;
  font-weight: 700;
  border-radius: 4px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-brand-red:hover {
  background-color: #c22b30;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(221, 53, 58, 0.3);
}

.btn-white-pro {
  background-color: #fff;
  color: var(--primary);
  padding: 15px 35px;
  font-weight: 700;
  border-radius: 4px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-white-pro:hover {
  background-color: #f8f9fa;
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
  .section-cta-parallax {
    background-attachment: scroll; /* Disable parallax on mobile for performance */
    padding: 80px 0;
  }
  .cta-title-pro {
    font-size: 32px;
  }
  .cta-actions-pro .btn {
    margin-bottom: 20px;
    width: 100%;
    justify-content: center;
  }
}

/* Statistics Strip */
/* Modern Stats */
.stat-card-modern {
  background: #fff;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: var(--transition);
  border: 1px solid var(--accent);
}

.stat-card-modern h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 5px;
}

.stat-card-modern p {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

@media (max-width: 992px) {
  .process-flow-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .process-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }

  .hero-section {
    height: 70vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .experience-badge {
    padding: 12px;
    right: 15px;
    bottom: 15px;
  }

  .experience-badge .years {
    font-size: 28px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
    margin-bottom: 15px;
  }

  .client-logos {
    justify-content: center;
    gap: 20px;
  }

  .process-section {
    padding: 40px 0;
  }

  .container {
    padding: 0 15px;
  }

  .section-heading .title {
    font-size: 24px;
  }

  .hero-subtitle::before,
  .hero-subtitle::after {
    display: none;
  }

  .hero-title {
    font-size: 26px !important;
  }
}

/* ================== Pastel Feature Cards ================== */
.feature-card-dark {
  background: #f8fbff; /* Clean light bg */
  padding: 55px 25px 40px; /* Improved internal spacing */
  border-radius: 12px;
  text-align: center;
  position: relative;
  margin: 30px 10px 0;
  height: 100%;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top: 5px solid var(--accent);
}

.features-list {
  padding-bottom: 90px !important;
}

.feature-card-dark:hover {
  transform: translateY(-10px);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(224, 51, 57, 0.12); /* Modern Red Glow */
}

.feature-icon-float {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px; /* Bigger Icons */
  color: var(--primary); /* Neutral Dark Grey for professional feel */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.feature-card-dark h3 {
  color: var(--primary) !important;
  font-size: 19px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.feature-card-dark p {
  color: #555 !important; /* Soft Dark Grey for text */
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ================== Signature Projects Animation ================== */
.project-cards {
  background: rgb(235 235 235) !important; /* Requested BG Color */
  padding: 45px 0 150px; /* Increased height so cards fit inside overflow:hidden */
  position: relative;
  overflow: hidden; /* TRAPS the floating cubes inside the section */
}

.project-cards .title {
  color: var(--primary) !important; /* Consistent charcoal color */
  font-weight: 700;
}

.animated-cube-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: 1; /* Animated shapes are behind everything */
}

.animated-cube-bg li {
  position: absolute;
  display: block;
  list-style: none;
  width: 25px;
  height: 25px;
  background: rgba(33, 37, 41, 0.05); /* Neutral grey shapes */
  border: 1px solid rgba(33, 37, 41, 0.08);
  animation: professional-float 25s linear infinite;
  bottom: -150px;
  top: auto;
}

@keyframes professional-float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
    border-radius: 4px;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

/* Distributed positions for 10 professional shapes */
.animated-cube-bg li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}
.animated-cube-bg li:nth-child(2) {
  left: 10%;
  width: 30px;
  height: 30px;
  animation-delay: 2s;
  animation-duration: 12s;
}
.animated-cube-bg li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}
.animated-cube-bg li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}
.animated-cube-bg li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}
.animated-cube-bg li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}
.animated-cube-bg li:nth-child(7) {
  left: 35%;
  width: 140px;
  height: 140px;
  animation-delay: 7s;
}
.animated-cube-bg li:nth-child(8) {
  left: 50%;
  width: 35px;
  height: 35px;
  animation-delay: 15s;
  animation-duration: 45s;
}
.animated-cube-bg li:nth-child(9) {
  left: 20%;
  width: 25px;
  height: 25px;
  animation-delay: 2s;
  animation-duration: 35s;
}
.animated-cube-bg li:nth-child(10) {
  left: 85%;
  width: 140px;
  height: 140px;
  animation-delay: 0s;
  animation-duration: 11s;
}

/* ================== Modern Process Section ================== */
.bg-soft-modern {
  background: linear-gradient(268deg, rgba(220, 38, 38, 0.2) 0%, #f8fafc 100%);
  position: relative;
  z-index: 1;
}

.bg-primary-dark {
  background-color: #051c45 !important; /* Deep blue preference */
  padding: 100px 0;
}

.process-badge {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 6px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.text-accent-orange {
  color: var(--accent-modern); /* Grey accent */
}

/* ================== Creative Corner-Bracket Button System ================== */
.btn {
  --btn-c: var(--accent);
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  padding: 12px 28px; /* Adjusted to match nav-like proportions */
  border-radius: 0;
  background-color: var(--btn-c);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600; /* Matching nav-menu font-weight */
  text-transform: none; /* Removed uppercase as requested */
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  text-decoration: none !important;
  line-height: 1.2;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary); /* Hover fill color */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Color Overrides for Visibility */
.hero-section .btn,
.bg-primary-dark .btn,
.stats-strip .btn,
.footer .btn,
.form-group-row .btn {
  --btn-c: var(--accent); /* Consistent Red theme */
}

.process-horizontal-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.process-modern-step {
  flex: 1;
  position: relative;
  transition: var(--transition);
  text-align: center;
}

.process-modern-step:hover {
  transform: translateY(-5px);
}

.step-head {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 25px;
}

.step-arrow {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border: 2px solid var(--brand-red);
  color: var(--primary);
  font-size: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-modern-step:hover .step-arrow {
  background-color: var(--primary);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.process-modern-step:hover .step-arrow i {
  color: #ffffff !important;
}

.step-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--brand-red); /* Visible on white bg */
  z-index: 1;
  transform: translateY(-50%);
}

.process-modern-step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 15px;
}

@media (max-width: 991px) {
  .process-horizontal-row {
    flex-direction: column;
    gap: 40px;
  }

  .step-connector {
    display: none;
  }
}

.z-index-2 {
  position: relative;
  z-index: 20;
}

/* ================== Expert Cards Carousel ================== */
/* LAYER 1: Outer wrapper — clips left/right slide transitions only */
/* LAYER 2: Inner swiper is overflow:visible so card buttons are NEVER cut */

.project-carousel-wrapper {
  overflow: hidden; /* Hides slides transitioning in from sides */
  /* padding-bottom: 100px;          MASSIVE padding to prevent bottom clipping */
  margin-bottom: -50px; /* Pulls the next section closer if needed */
}

.project-carousel {
  overflow: visible !important; /* Swiper must NOT clip card contents */
  padding-bottom: 0 !important;
}

.project-carousel .swiper-wrapper {
  overflow: visible; /* Wrapper must NOT clip either */
}

.project-carousel .swiper-slide {
  height: auto; /* Each slide sizes to card content */
  display: flex;
  justify-content: center;
  overflow: visible; /* Slide must not clip card */
}

.expert-card {
  background: #fff;
  border-radius: 0;
  overflow: visible; /* Allow button to not be clipped */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
  margin: 10px;
  display: flex;
  flex-direction: column;
}

.expert-card:hover {
  transform: translateY(-10px);
}

@media (max-width: 575px) {
  .expert-card {
    width: 90%;
    max-width: 320px;
    margin: 10px auto;
  }
}

.expert-image {
  width: 100%;
  height: 220px; /* Reduced: gives card info + button full room */
  overflow: hidden;
}

.expert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.expert-card:hover .expert-image img {
  transform: scale(1.08);
}

@media (max-width: 767px) {
  .expert-image {
    height: 250px;
  }
}

.expert-info {
  background: #fff;
  padding: 20px 20px; /* No bottom padding — button sits flush */
  text-align: center;
  border-top: 4px solid var(--accent);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expert-info h4 {
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.expert-info p {
  color: rgba(39, 39, 39, 0.9);
  font-size: 14px;
  margin: 0;
}

.project-item-ref {
  display: none; /* Hide old grid version */
}

/* ================== Full-Width Builders Section ================== */
.builders-split-modern {
  overflow: hidden;
  background: var(--accent);
}

.builders-content-side {
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.builders-image-side {
  position: relative;
  height: 100%;
  min-height: 600px;
}

.full-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn-white-outline {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 35px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-block;
}

.btn-white-outline:hover {
  background: #fff;
  /* color: var(--brand-red) !important; */
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .builders-content-side {
    padding: 80px 30px;
  }
  .builders-image-side {
    min-height: 450px;
  }
}

/* ================== Infinite Logo Carousel Section ================== */
.partner-logos-carousel {
  padding: 45px 0;
}

.brand-logo-card-js {
  background: #ffffff;
  border: 1px solid #ddd;
  height: 220px;
  margin: 10px;
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 0;
}

.brand-logo-card-js:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.brand-logo-card-js .logo-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
}

.brand-logo-card-js img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.brand-name {
  background: var(--accent); /* Changed from Navy to Red */
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 10px;
  text-align: center;
  width: 100%;
  letter-spacing: 0.8px;
}

/* ================== Modern Contact Section ================== */
.bg-cream {
  background-color: #f1f3f5; /* Clean light grey instead of cream */
}

.text-muted-modern {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-card-modern {
  background: #ffffff;
  padding: 28px;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.contact-card-modern:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: var(--brand-red);
  color: #fff;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.card-text span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 3px;
}

.card-text h4 a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.card-text h4 a:hover {
  color: var(--accent);
}

.card-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.card-link {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

.card-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.bg-cream {
  background-color: #fffcf9;
}

/* Premium Form Styles (Synced with Homepage) */
.form-container-dark {
  background: #ffffff;
  padding: 50px;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  position: relative;
}

.form-row-modern {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-col {
  flex: 1;
}

.input-modern {
  width: 100%;
  background: #f8fbff;
  border: 1px solid var(--border-color);
  padding: 15px 20px;
  border-radius: 4px;
  color: var(--primary);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.input-modern::placeholder {
  color: rgba(45, 52, 54, 0.5);
}

.input-modern:focus {
  background: #fff;
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(218, 33, 39, 0.05);
}

/* ================== Modern Contact Form Components ================== */
.phone-input-group {
  display: flex !important;
  align-items: center;
  background: var(--bg-light); /* Match form-control bg */
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 0; /* Let column spacing handle this */
  transition: var(--transition);
}

.phone-input-group:focus-within {
  border-color: var(--primary);
  background-color: #fff;
}

.phone-prefix {
  padding: 0 15px;
  background: #f1f3f5;
  border-right: 1px solid var(--border-color);
  color: var(--text-main);
  font-weight: 700;
  height: 48px; /* Standard height for form-control is around 45-50px */
  display: flex;
  align-items: center;
  font-size: 14px;
  border-radius: 0;
}

.phone-input-group .input-modern,
.phone-input-group .form-control {
  border: none !important;
  margin-bottom: 0 !important;
  box-shadow: none !important;
  height: 48px !important;
  background: transparent !important;
}

.btn-submit-gold {
  --btn-c: #b08000 !important; /* Gold tone from image */
  background: #b08000 !important;
  color: #fff !important;
  border: none !important;
  padding: 12px 40px !important;
  font-size: 16px !important;
  border-radius: 4px !important;
}

.btn-submit-gold:hover {
  transform: translateY(-2px);
}

/* ================== Review Bubble Cards ================== */
.review-bubble {
  background: #fff1f1; /* Soft pink background */
  border-radius: 18px 18px 18px 4px; /* Chat bubble shape */
  padding: 30px 35px;
  text-align: left;
  position: relative;
  box-shadow: 0 8px 30px rgba(221, 53, 58, 0.08);
  border: 1px solid #f5bfc0; /* Rose-pink border */
  transition: all 0.3s ease;
  margin: 10px 5px 20px;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
}

.testimonial-modern-slider .swiper-slide {
  height: auto;
}

.review-bubble:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Chat bubble tail — outer (border colour) */
.review-bubble::before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 27px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 0px solid transparent;
  border-top: 15px solid #f5bfc0; /* Rose-pink border colour */
  z-index: 1;
}

/* Chat bubble tail — inner (fill colour) */
.review-bubble::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 28px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 0px solid transparent;
  border-top: 14px solid #fff1f1; /* Matches background */
  z-index: 2;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #f5a623;
  font-size: 16px;
  margin-bottom: 15px;
}

.review-bubble p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  font-style: italic;
  margin: 0 0 18px 0;
}

.review-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-red); /* Red — matches reference image */
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
  margin-top: auto;
}

/* ================== Modern Testimonials Slider ================== */
.testimonials-modern {
  background: #ffffff; /* Changed from light blue to light grey */
  border-top: 2px solid var(--accent);
}

.testimonial-nav {
  display: flex;
  gap: 15px;
}

.testimonial-prev,
.testimonial-next {
  width: 50px;
  height: 50px;
  background: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #fff;
  transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--primary);
  color: #fff;
}

.testimonial-modern-card {
  padding: 10px;
}

.testimonial-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.testimonial-box.centered {
  text-align: center;
}

.testimonial-box.highlight {
  border-color: var(--accent-modern);
}

.testimonial-box p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
  font-style: italic;
  font-weight: 500;
}

.rating-stars {
  color: var(--accent-modern);
  font-size: 18px;
  display: flex;
  gap: 5px;
}

.box-triangle-center {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #ffffff;
}

.author-details-modern {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.author-details-modern.centered {
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.author-details-modern img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.author-meta h5 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 5px 0;
  color: var(--primary);
  font-family: var(--font-heading);
}

.author-meta span {
  font-size: 0.95rem;
  color: #777;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .contact-section-modern .section-heading,
  .contact-section-modern .text-muted-modern {
    text-align: center;
  }
  .contact-info-wrapper {
    align-items: center;
    margin-bottom: 40px;
  }
  .form-container-dark {
    margin-left: auto;
    margin-right: auto;
  }
}
/* ================== Modern Brochure Download Button ================== */
.uiverse-download-button {
  --width: 140px;
  --height: 42px;
  --tooltip-height: 35px;
  --tooltip-width: 110px;
  --gap-between-tooltip-to-button: 18px;
  --button-color: var(--primary); /* Back to Charcoal as per request */
  --tooltip-color: #fff;
  width: var(--width);
  height: var(--height);
  background: var(--button-color);
  position: relative;
  text-align: center;
  border-radius: 0;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none !important;
  overflow: visible;
  z-index: 10;
}

.uiverse-download-button::before {
  position: absolute;
  content: attr(data-tooltip);
  width: var(--tooltip-width);
  height: var(--tooltip-height);
  background-color: var(--tooltip-color);
  font-size: 0.85rem;
  color: #111;
  border-radius: 5px;
  line-height: var(--tooltip-height);
  bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) + 12px);
  left: calc(50% - var(--tooltip-width) / 2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  text-align: center;
}

.uiverse-download-button::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: var(--tooltip-color);
  left: calc(50% - 10px);
  bottom: calc(100% + var(--gap-between-tooltip-to-button) - 10px);
}

.uiverse-download-button::after,
.uiverse-download-button::before {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.uiverse-download-button .button-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  border-radius: 0;
}

.uiverse-download-button .text,
.uiverse-download-button .icon {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  color: #fff;
  transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.uiverse-download-button .text {
  top: 0;
}

.uiverse-download-button .icon {
  top: 100%;
}

.uiverse-download-button .icon svg {
  width: 22px;
  height: 22px;
}

.uiverse-download-button:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.uiverse-download-button:hover .text {
  top: -100%;
}

.uiverse-download-button:hover .icon {
  top: 0;
}

/* .uiverse-download-button:hover:before,
.uiverse-download-button:hover:after {
  opacity: 1;
  visibility: visible;
} */
/* ================== Back to Top (Creative Design) ================== */
.back-to-top {
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 55px;
  height: 55px;
  background-color: var(--primary); /* Deep Charcoal */
  color: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.back-to-top::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent); /* Corporate Red */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

/* The Creative Secondary Arrow */
.back-to-top::after {
  content: "⮝"; /* User selected sharp arrow */
  position: absolute;
  top: 140%; /* Start well below center */
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 26px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 1;
}

.back-to-top:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(224, 51, 57, 0.25);
}

.back-to-top:hover::before {
  height: 100%;
}

.back-to-top:hover::after {
  top: 50%; /* Perfectly centered on hover */
}

.back-to-top i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 1;
}

.back-to-top:hover i {
  top: -40%; /* Slide up and out of center */
  opacity: 0;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 576px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}
.hero-subtitle,
.hero-title {
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Hero Slider Mobile Navigation */
@media (max-width: 991px) {
  .swiper-button-next,
  .swiper-button-prev {
    top: auto !important;
    bottom: 20px !important;
    width: 44px !important;
    height: 44px !important;
  }

  .swiper-button-prev {
    left: calc(50% - 60px) !important;
  }

  .swiper-button-next {
    right: calc(50% - 60px) !important;
  }

  .swiper-pagination {
    bottom: 60px !important; /* Move pagination up slightly to avoid overlap */
  }
}

/* ================== Compact Builders Section ================== */
/* Replaces the full-screen red split — matches the reference link layout */

.builders-compact {
  background: var(--accent); /* Brand Red */
  color: #fff;
  position: relative;
  overflow: hidden;
}

.builders-compact .title {
  color: #fff !important;
}

.builders-compact-content {
  padding: 60px 50px 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  position: relative;
  z-index: 2;
}

.builders-compact-content p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9); /* Slightly soft white for readability */
  margin-bottom: 18px;
}

.builders-compact-image {
  position: relative;
  height: 400px; /* Proportional height */
  overflow: hidden;
  align-self: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); /* Stronger shadow on red */
  border: 5px solid rgba(255, 255, 255, 0.2); /* Subtle glass border */
}

.builders-compact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* Centred crop */
  display: block;
  transition: transform 0.6s ease;
}

.builders-compact-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 991px) {
  .builders-compact-content {
    padding: 30px 20px;
  }

  .builders-compact-image {
    height: 300px;
    margin-top: 20px;
    align-self: auto;
  }
}

@media (max-width: 575px) {
  .builders-compact-image {
    height: 220px;
  }
}

/* White Button for Builders Section */
.builders-compact .btn {
  background: #fff;
  color: #dd353a !important; /* Brand Red for text */
  border: none;
}

.builders-compact .btn:hover {
  background: var(--primary); /* Dark charcoal on hover */
  color: #fff !important;
}

.builders-compact .btn::before {
  background: var(--primary); /* Slide-in effect color */
}

/* ================== Per-Card Know More Button ================== */
/* Mirrors the site's standard .btn — red fill, dark left-slide on hover */
.card-know-more {
  --btn-c: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto; /* Pushes button to bottom of card */
  padding: 10px 24px;
  background-color: var(--btn-c);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  align-self: stretch; /* Full width inside card */
}

/* Dark left-slide — identical to .btn::before */
.card-know-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.card-know-more:hover::before {
  left: 0;
}

.card-know-more:hover {
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-know-more i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.card-know-more:hover i {
  transform: translateX(4px);
}

/* expert-info: content top, button pinned at bottom */
.expert-info {
  align-items: center;
  justify-content: space-between; /* title+desc at top, button at bottom */
}

/* ================== Coloured Testimonial Bubble Variants ================== */

/* Blue — cool, trustworthy */
.review-bubble--blue {
  background: #eef4ff;
  border-color: #b8d0f8;
}

.review-bubble--blue::before {
  border-top-color: #b8d0f8;
}

.review-bubble--blue::after {
  border-top-color: #eef4ff;
}

.review-bubble--blue .review-name {
  color: #1a56b0;
}

/* Red — brand accent */
.review-bubble--red {
  background: #fff1f1;
  border-color: #f5bfc0;
}

.review-bubble--red::before {
  border-top-color: #f5bfc0;
}

.review-bubble--red::after {
  border-top-color: #fff1f1;
}

.review-bubble--red .review-name {
  color: var(--brand-red);
}

/* Green — positive, success */
.review-bubble--green {
  background: #f0faf3;
  border-color: #a8dbb5;
}

.review-bubble--green::before {
  border-top-color: #a8dbb5;
}

.review-bubble--green::after {
  border-top-color: #f0faf3;
}

.review-bubble--green .review-name {
  color: #1e7e3a;
}

/* Orange — warm, energetic */
.review-bubble--orange {
  background: #fff8ee;
  border-color: #f5d09a;
}

.review-bubble--orange::before {
  border-top-color: #f5d09a;
}

.review-bubble--orange::after {
  border-top-color: #fff8ee;
}

.review-bubble--orange .review-name {
  color: #c06316;
}

/* ================== Vision, Mission & Our Core Values ================== */
.vision-mission-values .vmv-card {
  position: relative;
  height: 440px; /* Slightly taller for elegance */
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px 30px;
  background-size: cover;
  background-position: center;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* Stronger shadow for depth */
  border: 4px solid #fff; /* Sharp white frame for separation */
  margin-bottom: 20px;
}

.vision-mission-values .vmv-card:hover {
  border-color: var(--accent); /* Interactive accent border on hover */
  transform: translateY(-10px);
}

.vision-mission-values .vmv-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.vision-mission-values .vmv-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1); /* Reduced for more visibility */
  transition: opacity 0.4s ease;
}

.vision-mission-values .vmv-card:hover::after {
  background: rgba(0, 0, 0, 0.4);
}

.vision-mission-values .vmv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 20%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 2;
}

.vision-mission-values .vmv-content {
  position: relative;
  z-index: 5; /* Ensure text is above all overlays */
  color: #fff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Boost readability */
}

.vision-mission-values .vmv-content h3 {
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 26px;
  color: #fff !important;
}

.vision-mission-values .vmv-content p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95) !important;
}

/* ================== Our Strength & Expertise ================== */
.strengths-expertise .expertise-item {
  display: flex;
  align-items: flex-start; /* Top align for multi-line text */
  gap: 15px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.strengths-expertise .expertise-item:hover {
  transform: translateX(5px); /* Subtle interactive shift */
}

/* Premium Diamond Bullet Finish */
.strengths-expertise .expertise-item i {
  width: 9px;
  height: 9px;
  background: var(--accent);
  display: block;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 8px; /* Precision alignment with 16px line-height */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

/* Hide icon character to ensure clean geometric shape */
.strengths-expertise .expertise-item i::before {
  display: none !important;
}

/* Creative Alternative: Dynamic Pulse & Rotation on Hover */
@keyframes bulletHoverPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(221, 53, 58, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(221, 53, 58, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(221, 53, 58, 0);
  }
}

.strengths-expertise .expertise-item:hover i {
  background: var(--primary);
  transform: rotate(225deg) scale(1.35);
  animation: bulletHoverPulse 1.5s infinite;
}

.strengths-expertise .expertise-item span {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.strengths-expertise .strengths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.strengths-expertise .strength-box {
  background: #fff;
  padding: 45px 30px;
  border-radius: 0;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Professional Card Hover */
.strengths-expertise .strength-box:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.strengths-expertise .strength-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.strengths-expertise .strength-box:hover::before {
  transform: scaleX(1);
}

/* Slim & Straight Background Icon */
.strengths-expertise .card-bg-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px; /* Slightly larger for impact */
  height: 60px;
  background: var(--accent); /* Solid Brand Red */
  color: #fff; /* High-contrast white */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px; /* Bolder icon */
  border-radius: 0; /* Sharp professional edges */
  z-index: 5;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  opacity: 1 !important; /* No opacity reduction */
}

.strengths-expertise .strength-box:hover .card-bg-icon {
  background: var(--primary); /* Shift to dark on hover for contrast */
  transform: scale(1.1);
}

.strengths-expertise .strength-box h5 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-top: 25px; /* More offset for larger sharp badge */
  margin-bottom: 20px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
  letter-spacing: -0.2px;
}

.strengths-expertise .strength-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  position: relative;
  z-index: 2; /* Over the bg-icon */
}

/* ================== Founder Message Section ================== */
.founder-message .founder-card-wrapper {
  background: #4b4b4b; /* Deeper, more premium charcoal black */
  border-radius: 0;
  overflow: hidden;
}

.founder-message .founder-img-box {
  width: 100%;
  height: 100%;
  background: #4b4b4b;
}

.founder-message .founder-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-message .founder-text-box {
  padding: 80px 60px;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-message .founder-intro {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  letter-spacing: 0.2px;
}

.founder-message .founder-quote {
  border-left: 3px solid var(--accent);
  padding-left: 35px;
  margin-bottom: 45px;
  position: relative;
}

.founder-message .founder-quote i {
  position: absolute;
  top: -15px;
  left: 15px;
  font-size: 45px;
  color: var(--accent);
  opacity: 0.15;
}

.founder-message .founder-quote p {
  font-size: 22px;
  font-weight: 700;
  font-style: normal; /* Less aggressive than italic */
  line-height: 1.5;
  color: #fff;
  letter-spacing: -0.5px;
}

.founder-message .founder-meta .founder-name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--accent);
  /* text-transform: uppercase; */
  letter-spacing: 1.5px;
}

.founder-message .founder-meta .founder-desig {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  /* text-transform: uppercase; */
  letter-spacing: 2px;
}

@media (max-width: 991px) {
  .founder-message .founder-text-box {
    padding: 40px 30px;
  }
}

/* ================== Elevator Solutions — Tighter Text Alignment ================== */
.project-cards .heading-desc {
  max-width: 820px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.75;
  text-align: center;
}

/* ================== About Section Rich Content ================== */
.sub-title-accent {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.about-content-rich h3 {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.about-icon-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-icon-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-icon-item .icon-box {
  width: 50px;
  height: 50px;
  background: rgba(221, 53, 58, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.about-icon-item .text-box strong {
  display: block;
  font-size: 18px;
  color: var(--primary);
}

.about-icon-item .text-box span {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* ================== Black Stats Strip ================== */
.stats-strip-black {
  color: #fff;
}

.stats-strip-black .stat-item i {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 15px;
  display: block;
}

.stats-strip-black .stat-item h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 5px;
}

.stats-strip-black .stat-item p {
  font-size: 13px;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  opacity: 0.7;
  margin: 0;
}

.border-start-lg {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-premium-light {
  background-color: #f4f7f9; /* Sophisticated corporate blue-grey tint */
}

.section-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  max-width: 850px;
  margin: 0 auto;
}

.mb-120-custom {
  margin-bottom: 30px !important;
}

@media (max-width: 991px) {
  .border-start-lg {
    border-left: none;
  }
}

/* ================== Global Page Header (Breadcrumb) ================== */
.page-header {
  min-height: 350px;
  padding: 100px 0 60px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect for premium feel */
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 8px solid var(--accent);
}

/* Creative Alternative: Technical Grid Animation */
.page-header-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 2;
  opacity: 0.5;
  animation: gridMove 30s linear infinite;
  pointer-events: none;
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50px);
  }
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    75deg,
    rgba(17, 17, 17, 0.95) 0%,
    rgba(17, 17, 17, 0.7) 40%,
    rgba(221, 53, 58, 0.2) 100%
  );
  z-index: 1;
}

/* Technical grid texture overlay */
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  opacity: 0.3;
  z-index: 2;
  pointer-events: none;
}

/* Sharp geometric cut accent removed per request */

.page-header .container {
  position: relative;
  z-index: 3;
}

.page-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -1.5px;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-title span {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.page-title span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--accent);
  opacity: 0.2;
  z-index: -1;
}

.breadcrumb {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  display: inline-flex;
  padding: 6px 18px;
  border-radius: 0; /* Sharp edges only */
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none; /* Fix: removes numbers */
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--accent);
}

.breadcrumb-item.active {
  color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: rgba(255, 255, 255, 0.4);
  padding: 0 6px;
  font-weight: 300;
}

@media (max-width: 767px) {
  .page-header {
    min-height: 220px;
    padding: 80px 0 40px;
    background-attachment: scroll;
  }
  .page-title {
    font-size: clamp(22px, 5vw, 28px);
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    padding: 0 10px;
    text-align: center;
  }
  .breadcrumb {
    padding: 8px 12px;
    font-size: 12px;
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
    margin: 0 auto;
    max-width: 280px;
    border-radius: 4px;
  }
  .breadcrumb-item {
    font-size: 12px;
    white-space: nowrap;
    line-height: 1.8;
  }
}

@media (max-width: 350px) {
  .page-title {
    font-size: 20px;
  }
  .breadcrumb {
    max-width: 240px;
  }
}

/* ================== Client Logos Belt (About Page) ================== */
.client-logos-belt {
  padding: 70px 0;
  border-top: 1px solid var(--border-color);
  background-color: #f8f9fa; /* Consistent light grey */
}

/* Force linear transition for continuous infinite crawl */
.logos-swiper-infinite .swiper-wrapper {
  transition-timing-function: linear !important;
}

.simple-logo-card {
  height: 120px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--border-color);
  margin: 10px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.simple-logo-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.simple-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none; /* Removed grayscale */
  opacity: 0.9;
  transition: all 0.4s ease;
}

.simple-logo-card:hover img {
  opacity: 1;
  transform: scale(
    1.05
  ); /* Added slight scale for interaction instead of color shift */
}

/* ================== Manufacturing & Technology Section ================== */
.manufacturing-tech {
  padding: 70px 0;
  background-color: #fff;
}

.manufacturing-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  border-left: 4px solid var(--accent);
  padding-left: 25px;
  max-width: 1000px;
}

.manufacturing-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.m-detail-item {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.m-detail-item:last-child {
  border-bottom: none;
}

.m-detail-item strong {
  color: var(--primary);
  font-weight: 850;
  min-width: 180px;
  display: inline-block;
  letter-spacing: 0.5px;
}

@media (max-width: 767px) {
  .m-detail-item strong {
    display: block;
    margin-bottom: 5px;
  }
}

/* ================== Full-Width Manufacturing Parallax ================== */
.manufacturing-parallax-section {
  position: relative;
  width: 100%;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0;
}

.parallax-bg-fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
}

.pos-relative {
  position: relative;
  z-index: 5;
}

.parallax-lead {
  font-size: 1.1rem;
  font-weight: 300; /* Minimalist weight */
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85); /* Soft white for intro */
  letter-spacing: 0.3px;
}

.tech-parallax-grid {
  margin-top: 80px;
}

.parallax-node-card {
  background: rgba(255, 255, 255, 0.03); /* More minimal transparency */
  backdrop-filter: blur(12px);
  padding: 45px 35px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.parallax-node-card:hover {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.node-icon-top {
  width: 55px;
  height: 55px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 5px;
  transition: all 0.5s ease;
}

.parallax-node-card:hover .node-icon-top {
  background: #fff;
  color: var(--accent);
}

.parallax-node-card h5 {
  font-size: 18px;
  font-weight: 800; /* Sturdy heading */
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.5px;
  /* text-transform: uppercase; */
}

.parallax-node-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65); /* Subtle grey for minimal feel */
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 991px) {
  .parallax-bg-fixed {
    background-attachment: scroll;
  }
}

@media (max-width: 767px) {
  .manufacturing-parallax-section {
    padding: 70px 0;
  }
  .parallax-node-card {
    padding: 30px 20px;
  }
}

/* ================== About CTA & FAQ Styling ================== */
.about-cta-sec h3 {
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.5px;
}

.custom-faq .accordion-item {
  border: none;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border-radius: 0 !important;
}

.custom-faq .accordion-button {
  padding: 22px 30px;
  font-weight: 700;
  font-size: 16px;
  color: #222;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.custom-faq .accordion-button:not(.collapsed) {
  color: var(--accent);
  background: #fff;
  border-bottom: 1px solid transparent;
}

.custom-faq .accordion-button::after {
  background-size: 12px;
  transition: transform 0.4s ease;
}

.custom-faq .accordion-body {
  padding: 0 30px 25px;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  border: 1px solid #eee;
  border-top: none;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 991px) {
  .about-cta-sec .cta-box-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .about-cta-sec .cta-btns {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    gap: 20px !important; /* Explicit vertical gap for the two rows */
  }
  .about-cta-sec .cta-btns .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .about-cta-sec h3 {
    font-size: 22px;
  }
  .about-cta-sec {
    padding: 50px 0;
  }
  .about-cta-sec .cta-btns {
    gap: 15px !important;
  }
}
/* ================== Contact Page Specific — Refined ================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: stretch;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.8fr; /* Form gets more space */
  }
}

.contact-info-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0; /* Tight grid for the red block look */
  height: 100%;
  background: var(--accent);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(221, 53, 58, 0.2);
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact-info-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: var(--transition);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-card:last-child {
  border-bottom: none;
}

.contact-card:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.05);
}

.card-accent-top {
  height: 3px;
  background: #fff;
  width: 100%;
  opacity: 0.8;
}

.contact-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.contact-info-text {
  text-align: center;
}
.contact-card-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border-radius: 0;
}

.contact-info-text h4 {
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 800;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

.contact-info-text a:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-form-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  height: 100%;
}

@media (max-width: 576px) {
  .contact-form-card {
    padding: 25px;
  }
}

.map-container {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 70px;
  border: 4px solid #fff;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2);
}

.captcha-placeholder {
  background: #fdfdfd;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 4px;
  font-size: 14px;
  color: #888;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.captcha-placeholder i {
  color: #4285f4;
  font-size: 20px;
}

.branch-office-card {
  padding: 30px;
  background: #fff;
  border: 1px solid #eee;
  border-top: 4px solid var(--accent);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  height: 100%;
  transition: var(--transition);
}

.branch-office-card:hover {
  border-top-width: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.branch-office-card h4 {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 12px;
}

/* ============================================================
   PRODUCT PAGE - CREATIVE BENTO GRID & TECHNICAL SHOWCASE
   ============================================================ */

.product-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.bento-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bento-card.bento-wide {
  grid-column: span 2;
}

.bento-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.bento-img {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.bento-wide .bento-img {
  height: 400px;
}

.bento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.bento-card:hover .bento-img img {
  transform: scale(1.1);
}

.bento-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
}

.bento-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-content.compact {
  padding: 25px;
}

.bento-wide .bento-content {
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.bento-wide .bento-content.reverse {
  flex-direction: row-reverse;
}

.bento-text h3 {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 800;
}

.bento-features {
  margin: 20px 0;
  padding: 0;
}

.bento-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-muted);
}

.bento-features i {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}

/* Button Variants for Products Page */
.btn-white {
  background: #fff !important;
  color: var(--accent) !important;
}

.btn-white::before {
  background: #f0f0f0 !important;
}

.btn-outline {
  background: transparent !important;
  color: var(--primary) !important;
  border: 1px solid #727272 !important;
}

.btn-outline:hover {
  background: var(--primary) !important;
  color: #fff !important;
}

.btn-outline-white {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.btn-outline-white:hover {
  background: #fff !important;
  color: var(--accent) !important;
}

.bento-specs {
  background: #f8fbff;
  padding: 24px;
  border-radius: var(--radius-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border: 1px solid #eef2f6;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-item span {
  font-size: 12px;
  
  color: var(--text-muted);
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.spec-item strong {
  font-size: 18px;
  color: var(--primary);
  font-weight: 800;
}

.bento-hover-specs {
  margin: 20px 0;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.bento-hover-specs span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bento-hover-specs span::before {
  content: "→";
  color: var(--accent);
}

/* Technical Excellence Styles */
.tech-excellence {
  padding: 100px 0;
  background-color: var(--bg-neutral);
}

.tech-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.tech-card img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.tech-overlay.glass {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 30px;
  padding: 40px;
  background: rgba(45, 52, 54, 0.4);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: #fff;
}

.tech-overlay.glass h4 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 12px;
}

.tech-overlay.glass p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.tech-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(221, 53, 58, 0.3);
}

.feature-list-modern {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.f-item {
  display: flex;
  gap: 25px;
}

.f-icon {
  width: 55px;
  height: 55px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-size: 26px;
  color: var(--accent);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.f-item:hover .f-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.f-info h5 {
  margin-bottom: 8px;
  font-size: 20px;
}

/* Product CTA Styles */
.cta-products {
  padding: 70px 0;
}

.cta-card.glass-red {
  background: linear-gradient(135deg, var(--brand-red) 0%, #b02428 100%);
  padding: 100px 40px;
  border-radius: var(--radius-md);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(221, 53, 58, 0.2);
}

.cta-card.glass-red::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.cta-card h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 50px);
  margin-bottom: 25px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-body);
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsiveness Extra Polish */
@media (max-width: 1200px) {
  .product-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .bento-card.bento-wide {
    grid-column: span 1;
  }
  .bento-wide .bento-content,
  .bento-wide .bento-content.reverse {
    flex-direction: column;
    align-items: flex-start;
  }
  .bento-specs {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .product-bento-grid {
    grid-template-columns: 1fr;
  }
  .tech-card img {
    height: 400px;
  }
  .tech-overlay.glass {
    padding: 25px;
    margin: 15px;
  }
  .cta-card.glass-red {
    padding: 60px 25px;
  }
  .cta-btns {
    flex-direction: column;
    width: 100%;
  }
  .cta-btns .btn {
    width: 100%;
  }
}

/* ============================================================
   OUR PRODUCTS - 2 COLUMN GRID (ONE ROW, TWO CONTENTS)
   ============================================================ */

.our-products-section {
  background-color: #fff;
  padding-top: 50px;
}

.product-grid-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1px solid #f0f0f0;
}

.product-grid-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.pg-img {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.pg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-grid-card:hover .pg-img img {
  transform: scale(1.1);
}

.pg-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.pg-content {
  padding: 35px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pg-header h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary);
}

.pg-header p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.pg-features {
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
  flex-grow: 1;
}

.pg-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
}

.pg-features i {
  color: var(--accent);
  font-size: 18px;
}

.pg-footer {
  margin-top: auto;
}

.btn-red {
  background: #e33539 !important;
  color: #fff !important;
  padding: 12px 25px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border-radius: 4px !important;
  border: none !important;
  transition: var(--transition) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.btn-red:hover {
  background: #c02b2f !important;
  transform: translateX(5px);
  color: #fff !important;
}

.btn-dark-blue {
  background: #2b4570 !important;
  color: #fff !important;
  padding: 12px 25px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border-radius: 4px !important;
  border: none !important;
  transition: var(--transition) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.btn-dark-blue:hover {
  background: #1a2d4b !important;
  transform: translateX(5px);
  color: #fff !important;
}

/* Horizontal Variant */
.product-grid-card.horizontal {
  flex-direction: row;
}

.product-grid-card.horizontal .pg-img {
  height: 100%;
  min-height: 400px;
}

@media (max-width: 992px) {
  .product-grid-card.horizontal {
    flex-direction: column;
  }
  .product-grid-card.horizontal .pg-img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .pg-content {
    padding: 25px;
  }
  .pg-header h3 {
    font-size: 20px;
  }
  .our-products-section {
    padding-top: 30px;
  }
}

/* ============================================================
   OUR PREMIUM PRODUCTS SECTION
   ============================================================ */

.premium-products-section {
  background-color: #ededed;
}

.premium-text-block h3 {
  color: #000;
  font-size: 26px;
  letter-spacing: -0.5px;
}

.premium-detail-list {
  margin: 20px 0 0 0;
  padding: 0;
  list-style: none;
}

.premium-detail-list li {
  font-size: 17px;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
}

.premium-detail-list i {
  font-size: 22px;
  color: #000;
  font-weight: 900;
}

.premium-visual-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.card-title-blue {
  color: #0d47a1;
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-heading);
}

.premium-card-inner {
  border: 1px solid #f0f0f0;
  padding: 20px;
  border-radius: 4px;
}

.pc-image {
  height: 250px;
  overflow: hidden;
  border-radius: 4px;
}

.pc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pc-features li {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pc-features i {
  color: #1976d2;
  font-size: 16px;
  font-weight: 900;
}

/* Premium Card Enhancement */
.product-grid-card.premium {
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.product-grid-card.premium:hover {
  box-shadow: 0 30px 80px rgba(221, 53, 58, 0.15);
  border-color: var(--accent);
}

.premium-ribbon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  z-index: 3;
  border-radius: 4px;
}

.premium .pg-header h3 {
  color: #0d47a1; /* Maintaining the blue from screenshot for premium */
}

/* ════════════════ HOME LIFTS LANDING PAGE ════════════════ */

.home-lifts-hero {
  position: relative;
  padding: 45px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: right center;
  color: #fff;
  overflow: hidden;
}

.home-lifts-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgb(83 0 0 / 90%) 0%,
    rgb(227 73 73 / 50%) 60%,
    rgb(255 64 64 / 28%) 100%
  );
  z-index: 1;
}

.home-lifts-hero .container {
  position: relative;
  z-index: 2;
}

.hero-content-box {
  max-width: 700px;
}

.hero-content-box .hero-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 25px;
  text-align: left;
}

.hero-content-box .hero-desc {
  font-size: clamp(16px, 1.2vw, 19px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  line-height: 1.6;
  text-align: left;
  max-width: 100%;
  margin-left: 0;
}

/* Feature Grid with Glassmorphism (Creative Alternative) */
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 45px;
}

.hero-feature-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.hero-feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  transform: translateY(-5px);
}

.hero-feature-item i {
  color: #2ecc71;
  font-size: 24px;
  flex-shrink: 0;
}

.hero-feature-item span {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.hero-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 991px) {
  .home-lifts-hero {
    padding: 30px 0;
    min-height: auto;
    text-align: center;
  }
  .hero-content-box {
    margin: 0 auto;
  }
  .hero-content-box .section-heading {
    text-align: center !important;
  }
  .hero-content-box .hero-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center !important;
  }
  .hero-features-grid {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-btns .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* ════════════════ SMART HOME ELEVATORS SECTION ════════════════ */

.modern-living-section {
  padding: 45px 0;
  background-color: var(--bg-white);
  overflow: hidden;
}

.collage-wrapper {
  position: relative;
  height: 600px;
  width: 100%;
}

.collage-item {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  z-index: 1;
}

.collage-item:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Top Left Image */
.collage-item.top-left {
  top: 0;
  left: 0;
  width: 60%;
  height: 45%;
}

/* Center Right Image */
.collage-item.center-right {
  top: 25%;
  right: 0;
  width: 55%;
  height: 50%;
  z-index: 2;
  border: 8px solid #fff;
}

/* Bottom Left Image */
.collage-item.bottom-left {
  bottom: 0;
  left: 5%;
  width: 50%;
  height: 40%;
  z-index: 3;
  border: 8px solid #fff;
}

.content-box-premium {
  padding-left: 40px;
}

.content-box-premium .section-heading .title {
  margin-bottom: 30px;
  color: var(--primary);
}

.content-box-premium p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 25px;
}

@media (max-width: 1199px) {
  .collage-wrapper {
    height: 500px;
  }
}

@media (max-width: 991px) {
  .modern-living-section {
    padding: 45px 0;
  }
  .collage-wrapper {
    height: 450px;
    margin-bottom: 50px;
  }
  .content-box-premium {
    padding-left: 0;
    text-align: center;
  }
  .content-box-premium .section-heading {
    text-align: center !important;
  }
}

@media (max-width: 575px) {
  .collage-wrapper {
    height: 350px;
  }
  .collage-item.center-right {
    border-width: 4px;
  }
  .collage-item.bottom-left {
    border-width: 4px;
  }
}

/* ════════════════ WHY CHOOSE COOPER SECTION ════════════════ */

.why-choose-lifts {
  padding: 45px 0;
  background-color: var(--bg-neutral);
  position: relative;
}

.why-choose-lifts .section-heading {
  margin-bottom: 60px;
}

.why-choose-lifts .subtitle {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.feature-grid-corporate {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card-corporate {
  background: #fff;
  padding: 40px 30px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
  height: 100%;
}

.feature-card-corporate::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card-corporate:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.feature-card-corporate:hover::before {
  transform: scaleX(1);
}

.f-icon-box {
  width: 60px;
  height: 60px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 25px;
  transition: var(--transition);
}

.feature-card-corporate:hover .f-icon-box {
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
}

.feature-card-corporate h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
}

.feature-card-corporate p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1199px) {
  .feature-grid-corporate {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .feature-grid-corporate {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-choose-lifts {
    padding: 45px 0;
  }
}

/* ════════════════ HOME LIFT MODELS SECTION ════════════════ */

.lift-models-section {
  padding: 45px 0;
  background-color: #fff;
}

.model-row {
  margin-bottom: 80px;
}

.model-row:last-child {
  margin-bottom: 0;
}

.model-image-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-light);
}

.model-image-box img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition);
}

.model-image-box:hover img {
  transform: scale(1.05);
}

.model-content-box {
  padding-left: 50px;
}

.model-title {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 15px;
  font-family: var(--font-heading);
}

.model-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 35px;
}

.spec-item {
  display: flex;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: #fdfdfd;
  padding: 15px 20px;
  border-radius: 8px;
  border:1px solid #cbcbcb;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
  text-align: left !important;
  width: 100%;
}

/* .spec-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background-color: var(--accent);
  border-radius: 0 4px 4px 0;
  opacity: 0.8;
} */

.spec-item i {
  flex-shrink: 0 !important;
  color: var(--accent);
  font-size: 20px;
  background: rgba(221, 53, 58, 0.05);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.spec-item:hover {
  background: #fff;
  border-color: var(--accent);
  transform: translateX(5px);
  box-shadow: 0 10px 20px rgba(221, 53, 58, 0.05);
}

.spec-item:hover i {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 1199px) {
  .model-content-box {
    padding-left: 30px;
  }
  .model-image-box img {
    height: 400px;
  }
}

@media (max-width: 991px) {
  .model-row {
    margin-bottom: 60px;
  }
  .model-content-box {
    padding-left: 0;
    margin-top: 30px;
  }
  .model-image-box img {
    height: 350px;
  }
  .model-title {
    /* Standardized via clamp */
  }
}

@media (max-width: 575px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════ DESIGN & CUSTOMIZATION SECTION (MINIMAL) ════════════════ */

.customization-section-minimal {
  padding: 45px 0;
  background-color: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.minimal-card {
  padding: 40px;
  height: 100%;
  border: 2px solid var(--accent-soft-1);
  border-radius: 4px;
  transition: var(--transition);
}

.minimal-card:hover {
  border-color: var(--accent);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.minimal-card h3 {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 25px;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 10px;
}

.minimal-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.6;
}

.minimal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.minimal-list li {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-weight: 500;
}

.minimal-list li span.emoji {
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 991px) {
  .customization-section-minimal {
    padding: 45px 0;
  }
  .minimal-card {
    padding: 30px;
    margin-bottom: 30px;
  }
}

/* ════════════════ PROJECTS VISUAL SUMMARY ════════════════ */
.projects-visual-sec {
  position: relative;
  background-image: url("../images/projects_banner.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}

.projects-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

.project-cat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  text-align: center;
  border-radius: 4px;
  transition: var(--transition);
  height: 100%;
  backdrop-filter: blur(5px);
}

.project-cat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  border-color: var(--accent);
}

.project-cat-card .cat-icon {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.project-cat-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}

.project-cat-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin: 0;
}

/* ════════════════ 320px - 480px RESPONSIVE FIXES (HOMEPAGE) ════════════════ */
@media (max-width: 480px) {
  .header-logo-img {
    height: 60px;
  }
  .header-inner {
    height: 70px;
  }
  .hero-title {
    font-size: clamp(28px, 8vw, 36px) !important;
    margin-bottom: 15px;
  }
  .hero-desc {
    font-size: 16px;
    margin-bottom: 25px;
    padding: 0 10px;
  }
  .hero-btns {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns .btn {
    width: 100%;
    padding: 14px 20px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  .form-container-dark {
    padding: 25px 20px;
  }
  .form-row-modern {
    flex-direction: column;
    gap: 0;
  }
  .phone-input-group .input-modern {
    padding-left: 10px !important;
  }
  .contact-info-wrapper {
    margin-bottom: 30px;
  }
  .contact-card-modern {
    padding: 15px;
    gap: 15px;
    align-items: flex-start;
  }
  .contact-card-modern .card-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
    flex-shrink: 0;
  }
  .contact-card-modern .card-text h4 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
  }
  .contact-card-modern .card-link {
    font-size: 16px !important;
    word-break: break-all;
  }
}

@media (max-width: 350px) {
  .hero-title {
    font-size: 24px !important;
  }
  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .hero-subtitle::before,
  .hero-subtitle::after {
    width: 20px;
  }
  .section-heading .title {
    font-size: 22px;
  }
  .form-container-dark {
    padding: 20px 15px;
  }
  .phone-prefix {
    padding: 0 10px;
    font-size: 13px;
  }
  .contact-card-modern {
    padding: 12px;
    gap: 10px;
  }
  .contact-card-modern .card-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .contact-card-modern .card-link {
    font-size: 14px !important;
  }
}

/* ---------------- HOME LIFTS HERO NEW DESIGN ---------------- */
.home-lifts-hero {
    position: relative;
    background: #ffefef;
    padding: 45px 0;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-shapes .shape {
    position: absolute;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 100%);
    border-radius: 50%;
}

.hero-bg-shapes .shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    opacity: 0.05;
}

.hero-bg-shapes .shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    opacity: 0.03;
}

.home-lifts-hero .container {
    position: relative;
    z-index: 2;
}

.hero-desc-text {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-feature-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.hero-feature-pill:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.hero-feature-pill i {
    color: var(--accent);
    font-size: 18px;
}

/* Creative Composition */
.hero-image-composition {
    position: relative;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.composition-card {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 90%;
    background: var(--accent);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    z-index: 1;
    transition: var(--transition);
}

.hero-image-composition:hover .composition-card {
    transform: scale(1.02);
}

.main-image-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: 100%;
}

.hero-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-image-composition:hover .hero-main-img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    left: 0;
    background: #fff;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent);
    z-index: 3;
    animation: heroFloat 3s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-icon {
    font-size: 30px;
    color: var(--accent);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 18px;
    color: var(--primary);
    font-weight: 800;
}

.badge-text span {
    font-size: 13px;
    color: var(--text-muted);
}

.tech-tag {
    position: absolute;
    top: 60px;
    right: -20px;
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 4;
}

/* Secondary Button Style */
.btn.btn-outline {
    background-color: transparent;
    color: var(--primary) !important;
    border: 1px solid var(--border-color);
}

.btn.btn-outline:hover {
    background-color: var(--accent);
    color: #fff !important;
    border-color: var(--accent);
}

.btn.btn-outline::before {
    background-color: var(--accent);
}

/* Responsive */
@media (max-width: 991px) {
    .home-lifts-hero {
        padding: 60px 0;
        text-align: center;
    }
    .hero-desc-text {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-features-list {
        justify-content: center;
    }
    .hero-btns {
        justify-content: center !important;
    }
    .hero-image-composition {
        margin-top: 60px;
        padding: 20px;
    }
    .hero-main-img {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .home-lifts-hero {
        padding: 45px 0;
    }
    .hero-feature-pill {
        width: 100%;
        justify-content: center;
    }
    .hero-image-composition {
        padding: 0;
        margin-top: 40px;
        flex-direction: column;
    }
    .composition-card {
        display: none; /* Hide for cleaner mobile look */
    }
    .main-image-wrapper {
        width: 100%;
        margin-bottom: 20px;
    }
    .hero-main-img {
        height: 280px; /* More compact for 320px */
    }
    .floating-badge {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 10px;
        width: 100%;
        animation: none;
        padding: 12px 20px;
        justify-content: center;
    }
    .tech-tag {
        top: 10px;
        right: 10px;
        font-size: 12px;
        padding: 6px 15px;
    }
    .badge-icon {
        font-size: 24px;
    }
    .badge-text strong {
        font-size: 16px;
    }
}



/* ---------------- MISSING CONTACT SECTION STYLES ---------------- */
.phone-input-group {
  display: flex;
  background: #f8fbff;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

.phone-prefix {
  padding: 0 15px;
  background: #e9ecef;
  display: flex;
  align-items: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

.phone-input-group .input-modern {
  border: none;
  margin-bottom: 0;
}

.contact-info-wrapper {
  padding: 40px 0;
}

.text-muted-modern {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
}

.contact-card-modern {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border-left: 4px solid var(--accent);
}

.contact-card-modern .card-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 4px;
}

.contact-card-modern .card-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary);
}

.contact-card-modern .card-link {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  display: block;
}



.bg-cream {
  background-color: #fffcf9 !important; /* Premium Warm Cream */
} 


/* ================== Gallery Page Styles ================== */


/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

/* Gallery Grid (Uniform) */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.gallery-item {
    margin-bottom: 0;
    transition: var(--transition);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-img-wrapper {
    overflow: hidden;
    background: #f0f0f0;
}

.gallery-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.img-category {
    color: var(--accent);
    background: #fff;
    padding: 2px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.img-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.2s;
    font-family: var(--font-heading);
}

.gallery-card:hover .img-category,
.gallery-card:hover .img-title {
    transform: translateY(0);
}

.overlay-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
}

.center-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transform: scale(0.5) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.gallery-card:hover .center-icon {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

.overlay-bottom {
    margin-top: auto;
    width: 100%;
    text-align: center;
}


/* Pagination */
.pagination-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pagination li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.pagination li a:hover,
.pagination li a.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.pagination li a.prev-next {
    font-size: 20px;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.lightbox-modal.active {
    visibility: visible;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
}

.lightbox-container {
    position: relative;
    z-index: 3001;
    max-width: 95%;
    max-height: 95%;
    width: 1100px;
}

.lightbox-content {
    padding: 10px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

#lightbox-img {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.lightbox-info {
    padding: 25px;
    text-align: center;
   
}

#lightbox-category {
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#lightbox-title {
    margin: 0;
    font-size: 28px;
    color: var(--bg-white);
    font-family: var(--font-heading);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 3002;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.lightbox-nav .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    z-index: 3002;
    transition: var(--transition);
    border-radius: 50%;
}

.lightbox-nav .nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

#lightbox-prev { left: 40px; }
#lightbox-next { right: 40px; }

@media (max-width: 1199px) {
    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-img {
        height: 300px;
    }
    .lightbox-nav .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    #lightbox-prev { left: 15px; }
    #lightbox-next { right: 15px; }
    .lightbox-close {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 575px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    .gallery-img {
        height: 250px;
    }
    .gallery-filters {
        gap: 10px;
    }
    .filter-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
    .gallery-hero .section-subtitle {
        font-size: 16px;
    }
    .lightbox-info {
        padding: 15px;
    }
    #lightbox-title {
        font-size: 20px;
    }
}
/* ================== Gallery Enhancements ================== */
.media-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn i {
  font-size: 20px;
}

.tab-btn:hover {
  color: var(--accent);
}

.tab-btn.active {
  color: var(--accent);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -21px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
}

.media-container {
  display: none;
}

.media-container.active {
  display: block;
  animation: mediaFadeIn 0.5s ease forwards;
}

@keyframes mediaFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.video-card .play-icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(221, 53, 58, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  z-index: 2;
  transition: var(--transition);
}

.video-card:hover .play-icon-overlay {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--primary);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ============================================================
   STRENGTHS & EXPERTISE SECTION
   ============================================================ */
.strengths-expertise {
    padding: 80px 0;
    background-color: #fff;
}

.strengths-expertise .section-heading .title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
}

/* Red Diamond List Styling */
.strengths-expertise ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 15px 0 !important;
}

.strengths-expertise ul li {
    position: relative;
    padding-left: 28px !important;
    margin-bottom: 15px !important;
    font-size: 16px;
    line-height: 1.5;
    color: #444;
    font-weight: 500;
}

.strengths-expertise ul li::before {
    content: "" !important;
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--accent) !important;
    transform: rotate(45deg);
}

/* If user enters plain paragraphs instead of a list */
.strengths-expertise .col-lg-6 > p:not(:first-of-type) {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
}

.strengths-expertise .col-lg-6 > p:not(:first-of-type)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    transform: rotate(45deg);
}

/* Strength Grid Items (Image 2 Style) */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.strength-box {
    background: #fff;
    padding: 55px 25px 35px;
    border-radius: 4px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #f2f2f2;
    border-top: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.strength-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
    border-top-width: 4px;
}

.strength-box .icon-box {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    border-radius: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.strength-box:hover .icon-box {
    background: var(--primary);
    transform: scale(1.05);
}


/* Custom Points List for CKEditor */
.custom-points-list ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
}
.custom-points-list ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.6;
    font-weight: 500;
}
.custom-points-list ul li::before {
    font-family: 'themify';
    content: '\e64c'; /* ti-check */
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--brand-red);
    font-size: 11px;
    font-weight: bold;
    background: rgba(218, 33, 39, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ============================================================
   SWIPER SMOOTHNESS & CUSTOM DELAYS
   ============================================================ */

/* Ensure the infinite logo carousel scrolls truly linearly */
.logos-swiper-infinite .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* Optional: Make the hero slide fade even more premium */
.hero-slider .swiper-slide-fade {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}



/* ============================================================
   PRODUCT VISUALIZER CONFIGURATOR
   ============================================================ */

.product-visualizer-section {
  padding: 70px 0;
}

.visualizer-tabs-wrapper {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}

.visualizer-main-tabs {
  display: inline-flex;
  background: #f1f3f5;
  padding: 6px;
  border-radius: 60px;
  gap: 5px;
  list-style: none;
  margin: 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.visualizer-main-tabs .tab-item {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 30px;
  cursor: pointer;
  border-radius: 50px;
  color: var(--text-main);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.visualizer-main-tabs .tab-item:hover {
  color: var(--brand-red);
  background: rgba(255, 255, 255, 0.5);
}

.visualizer-main-tabs .tab-item.active {
  color: #fff !important;
  background: var(--brand-red);
  box-shadow: 0 4px 12px rgba(237, 28, 36, 0.3);
}

.visualizer-content-area .tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.visualizer-content-area .tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Type Selector - Premium Cards */
.type-selector-wrapper {
  display: flex;
  align-items: center;
  align-self: center; /* changed from flex-start to center */
  background: #f1f3f5;
  padding: 6px;
  border-radius: 60px;
  gap: 5px;
  list-style: none;
  margin: 0 0 16px 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  max-width: 100%;
}

.options-zone .type-card {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 30px;
  cursor: pointer;
  border-radius: 50px;
  color: var(--text-main);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  background: transparent;
  border: none;
  box-shadow: none;
  flex-shrink: 0;
  width: auto;
  height: auto;
}

.options-zone .type-card:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.5);
}

.options-zone .type-card.active {
  color: #fff !important;
  background: var(--brand-red);
  box-shadow: 0 4px 12px rgba(237, 28, 36, 0.3);
}
.type-card span {
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
}

.type-card.active span {
  color: #fff !important;
}

/* Split Layout */
.configurator-split {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  align-items: stretch;
}

.visual-zone {
  flex: 0 0 45%;
  max-width: 45%;
}

/* AFTER */
.options-zone {
  flex: 0 0 55%;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  overflow-y: auto;
  max-height: 600px;
  direction: rtl;
  padding: 8px 0 8px 15px; /* top padding prevents clipping of first child */
}

/* Restore normal text direction for content inside options-zone */
.options-zone > * {
  direction: ltr;
}

/* Ensure the COP options container has the same gap as options-zone */
.cop-options-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Custom Scrollbar for Options Zone (Left Side) */
.options-zone::-webkit-scrollbar {
  width: 6px;
}

.options-zone::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.options-zone::-webkit-scrollbar-thumb {
  background: #c9c9c9;
  border-radius: 10px;
}

.options-zone::-webkit-scrollbar-thumb:hover {
  background: #717171;
}

.product-visual-box {
  background: #fff;
  padding: 0;
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.main-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.1s ease-out;
}

/* E-commerce Hover Zoom Styles */
.zoom-lens {
  position: absolute;
  border: 1px solid #d4d4d4;
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  pointer-events: none;
  visibility: hidden;
  z-index: 100;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background-color: #000;
}

.product-visual-box:hover .zoom-lens {
  visibility: visible;
}

.visual-overlay-tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: var(--transition);
}

/* Group Cards */
.group-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 20px;
  transition: var(--transition);
}

.group-card:hover {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
}

.group-header h3 {
  font-size: 16px;
  margin: 0;
  color: var(--primary);
}

.option-count {
  font-size: 12px;
  color: #999;
  background: #eee;
  padding: 2px 8px;
  border-radius: 10px;
}

/* Swatch Grid - Horizontal Scrollable */
.swatch-grid {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 10px 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  cursor: grab;
  user-select: none;
  position: relative;
}

/* Creative Alternative: Edge Fade Indicator - Only when scrollable */
.group-card {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.group-card:hover {
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.group-card.is-scrollable::after {
  content: "";
  position: absolute;
  top: 50px; /* Below header */
  right: 0;
  width: 40px;
  height: 60px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.9));
  pointer-events: none;
  z-index: 2;
  border-radius: 0 15px 15px 0;
}

.scroll-hint {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: none; /* Hidden by default */
  align-items: center;
  gap: 5px;
  opacity: 0.7;
  animation: pulseHint 2s infinite;
}

.group-card.is-scrollable .scroll-hint {
  display: flex; /* Show only when scrollable */
}

@keyframes pulseHint {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(5px);
    opacity: 1;
  }
}

.swatch-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.swatch-grid:active {
  cursor: grabbing;
}

.swatch-item {
  flex: 0 0 auto; /* Prevent shrinking */
  display: flex;
  flex-direction: column; /* Image on top, text below */
  align-items: center;
  text-align: center;
  gap: 8px;
  cursor: pointer;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: var(--transition);
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.swatch-item:hover {
  background: var(--bg-neutral);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.swatch-item.active {
  border-color: #ff9800;
  background: rgba(255, 152, 0, 0.05);
}

.swatch-circle {
  display: block; /* Ensure visibility */
  width: 80px; /* Box shape */
  height: 100px; /* More height */
  border-radius: 8px; /* Rounded box */
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center;
}

.swatch-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-main);
}

/* Material Swatches (Cabin Tab) */
/* Group 1: MS Powder Coated */
.swatch-item[data-color-key="jade_green"] .swatch-circle {
  background-image: url("../images/configurator/jade_green_texture.png");
}

.swatch-item[data-color-key="copper"] .swatch-circle {
  background-image: url("../images/configurator/steel_texture.png");
  background-color: #b0654d;
  background-blend-mode: overlay;
}

.swatch-item[data-color-key="brown_tex"] .swatch-circle {
  background-image: url("../images/configurator/steel_texture.png");
  background-color: #9e5e29;
  background-blend-mode: overlay;
}

.swatch-item[data-color-key="golden_yellow"] .swatch-circle {
  background-image: url("../images/configurator/steel_texture.png");
  background-color: #e8b845;
  background-blend-mode: overlay;
}

.swatch-item[data-color-key="silver_grey"] .swatch-circle {
  background-image: url("../images/configurator/steel_texture.png");
  background-color: #99a1a6;
  background-blend-mode: overlay;
}

.swatch-item[data-color-key="usha_beige"] .swatch-circle {
  background-image: url("../images/configurator/steel_texture.png");
  background-color: #c9bca3;
  background-blend-mode: overlay;
}

/* Group 2: PVC & Wood Laminates */
.swatch-item[data-color-key="wood_dl44ce"] .swatch-circle,
.swatch-item[data-color-key="wood_dt9"] .swatch-circle,
.swatch-item[data-color-key="wood_dl96e"] .swatch-circle {
  background-image: url("../images/configurator/wood_texture.png");
}

/* Group 3: Stainless Steel */
.swatch-item[data-color-key="brushed_silver"] .swatch-circle,
.swatch-item[data-color-key="patterned_steel"] .swatch-circle,
.swatch-item[data-color-key="butler_silver"] .swatch-circle {
  background-image: url("../images/configurator/steel_texture.png");
}

/* Group 4: Gold & Patterned */
.swatch-item[data-color-key="gold_brushed"] .swatch-circle,
.swatch-item[data-color-key="gold_leaves"] .swatch-circle,
.swatch-item[data-color-key="gold_patterned"] .swatch-circle,
.swatch-item[data-color-key="satin_gold"] .swatch-circle {
  background-image: url("../images/configurator/gold_texture.png");
}

/* Responsive Configurator */
@media (max-width: 1200px) {
  .visual-zone {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .options-zone {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 991px) {
  .configurator-split {
    flex-direction: column;
    gap: 30px;
  }
  .visual-zone,
  .options-zone {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .options-zone {
    max-height: none;
    overflow-y: visible;
    direction: ltr;
    padding-left: 0;
  }
  .product-visual-box {
    min-height: 450px;
    height: auto;
  }
}

@media (max-width: 575px) {
  .visualizer-tabs-wrapper {
    justify-content: flex-start;
    padding: 0 15px;
  }
  .visualizer-main-tabs {
    overflow-x: auto;
    width: 100%;
    scrollbar-width: none;
    padding: 4px;
  }
  .visualizer-main-tabs::-webkit-scrollbar {
    display: none;
  }
  .visualizer-main-tabs .tab-item {
    font-size: 13px;
    padding: 10px 20px;
  }
  .type-card {
    width: 140px;
  }
  .product-visual-box {
    min-height: 350px;
  }
}

/* ============================================================
   BLOG SECTION (Modern Corporate Layout)
   ============================================================ */
.blog-section {
  padding: 80px 0;
  background-color: var(--bg-neutral);
}

/* Featured Blog Post Style */
.featured-blog-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog-category-badge {
  background: var(--accent);
  color: #ffffff;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.featured-blog-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 15px;
}

.featured-blog-title a {
  color: var(--primary);
  transition: var(--transition);
}

.featured-blog-title a:hover {
  color: var(--accent);
}

.featured-blog-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.featured-blog-img-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 100%;
  width: 100%;
}

.featured-blog-img-wrapper a {
  display: block;
  height: 100%;
  width: 100%;
}

.featured-blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-blog-img-wrapper:hover img {
  transform: scale(1.04);
}

/* Full-Width Blog Cards (Text Only) */
.blog-card-full {
  background: #ffffff;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  width: 100%;
}

.blog-card-full:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.blog-card-content-full {
  padding: 35px;
  display: flex;
  flex-direction: column;
}

.blog-category-text {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  display: inline-block;
}

.blog-sep {
  color: var(--border-color);
  margin: 0 8px;
  font-size: 12px;
}

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 15px;
  opacity: 0.8;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i {
  color: var(--accent);
  font-size: 14px;
}

.blog-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.blog-title a {
  color: var(--primary);
  transition: var(--transition);
}

.blog-card-full:hover .blog-title a {
  color: var(--accent);
}

.blog-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 20px;
  opacity: 0.9;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  transition: var(--transition);
  align-self: flex-start;
}

.blog-read-more i {
  font-size: 15px;
  transition: transform 0.3s ease;
}

.blog-read-more:hover {
  color: var(--primary);
}

.blog-read-more:hover i {
  transform: translateX(5px);
}

/* Responsiveness for Layout */
@media (max-width: 991px) {
  .featured-blog-img-wrapper {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .blog-card-content-full {
    padding: 25px;
  }
  .featured-blog-img-wrapper {
    height: 260px;
  }
}

/* Featured Blog Button Alignment Fixes */
.featured-blog-content .btn {
  border: 1px solid var(--accent) !important;
  white-space: nowrap;
}

.featured-blog-content .btn:hover {
  border-color: var(--primary) !important;
}

.featured-blog-content .btn-outline {
  border: 1px solid #727272 !important;
}

.featured-blog-content .btn-outline:hover {
  border-color: var(--primary) !important;
}

.featured-blog-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================================
   THANK YOU PAGE STYLING
   ============================================================ */
.thankyou-section {
  background-color: var(--bg-neutral);
}

.thankyou-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 60px 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.thankyou-icon {
  font-size: 80px;
  color: var(--accent);
  margin-bottom: 25px;
  line-height: 1;
  animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thankyou-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 46px);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 20px;
}

.thankyou-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.thankyou-actions .btn {
  border: 1px solid var(--accent) !important;
}

.thankyou-actions .btn:hover {
  border-color: var(--primary) !important;
}

.thankyou-actions .btn-outline {
  border: 1px solid #727272 !important;
}

.thankyou-actions .btn-outline:hover {
  border-color: var(--primary) !important;
}

@media (max-width: 575px) {
  .thankyou-card {
    padding: 40px 20px;
  }
}

