/* ==========================================================
   FULL-WIDTH CINEMATIC BANNER CSS
========================================================== */

.fw-premium-banner {
  position: relative;
  width: 100%;
  height: 65vh; /* Expansive viewport height */
  min-height: 500px;
  display: flex;
  align-items: flex-end; /* Anchors content elegantly to the lower third */
  overflow: hidden;
  background-color: #070709;
}

/* --- The Visual Engine --- */
.fw-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%; /* Extra height for the subtle pan */
  background-size: cover;
  background-position: center;
  z-index: 1;
  /* Very slow, continuous zoom-out effect used in luxury branding */
  animation: cinematicZoomOut 15s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* The Gradient Shield ensures perfect text legibility and blends into the page below */
.fw-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(7, 7, 9, 0.1) 0%,
    rgba(7, 7, 9, 0.4) 40%,
    rgba(7, 7, 9, 0.98) 95%,
    #070709 100%
  );
  z-index: 2;
}

/* --- Content Architecture --- */
.fw-banner-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px 80px 40px; /* Generous bottom padding */
}

.fw-banner-content {
  max-width: 800px; /* Keeps line lengths comfortable for reading */
}

/* --- Fine-Line Breadcrumb --- */
.fw-breadcrumb {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateX(-20px);

  max-width: 250px;
  background: #ff4e898a;
  padding: 8px 18px;
  border-radius: 50px;
}

.fw-breadcrumb .crumb-link {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.fw-breadcrumb .crumb-link:hover {
  color: #ffffff;
}

.fw-breadcrumb .crumb-line {
  width: 24px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.fw-breadcrumb .crumb-current {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
}

/* --- Typography & Masks --- */
.fw-title {
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.title-mask {
  display: block;
  overflow: hidden;
}

.title-text {
  display: block;
  font-size: clamp(52px, 7vw, 84px); /* Perfectly fluid sizing */
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -2px;
  transform: translateY(100%);
  animation: textRevealUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-mask:nth-child(2) .title-text {
  animation-delay: 0.15s;
}

.accent-text {
  background: linear-gradient(90deg, #ff0055, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.fw-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 550px;
  margin: 0;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* --- High-End Keyframes --- */
@keyframes cinematicZoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes textRevealUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==========================================================
   FLUID MOBILE RESPONSIVENESS (< 991px Viewports)
========================================================== */
@media (max-width: 991px) {
  .fw-premium-banner {
    height: 55vh;
    min-height: 450px;
  }

  .fw-banner-container {
    padding: 0 24px 50px 24px;
    top: 80px;
  }

  .fw-breadcrumb {
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .fw-breadcrumb .crumb-line {
    width: 15px;
  }

  .fw-subtitle {
    display: none;
  }
}

@media (max-width: 576px) {
  .fw-premium-banner {
    height: 60vh;
    min-height: 400px;
  }

  .title-text {
    letter-spacing: -1px;
  }
}

/* ==========================================================
   WHO WE ARE
========================================================== */

.who-we-are {
  position: relative;
  padding: 110px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  overflow: hidden;
}

.who-we-are::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(233, 30, 99, 0.06);
  border-radius: 50%;
  top: -180px;
  left: -180px;
  filter: blur(20px);
}

.who-we-are::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
  right: -120px;
  bottom: -120px;
  filter: blur(20px);
}

.who-we-are .container {
  max-width: var(--container);
  margin: auto;
  position: relative;
  z-index: 2;
}

/*==========================
GRID
==========================*/

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/*==========================
IMAGE
==========================*/

.who-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0 20px 0 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.image-wrapper img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
  transition: 0.7s ease;
}

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

.image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.05));
  z-index: 1;
}

/* Decorative Border */

.image-wrapper::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  z-index: 2;
  pointer-events: none;
}

/* Floating Card */

.experience-card {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 5;

  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);

  padding: 22px 30px;

  border-radius: 20px 0 20px 0;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

  animation: floatCard 4s ease-in-out infinite;
}

.experience-card h3 {
  margin: 0;
  font-size: 42px;
  line-height: 1;

  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent;
}

.experience-card p {
  margin-top: 8px;
  color: var(--text-light);
  font-size: 15px;
}

/*==========================
CONTENT
==========================*/

/* .section-tag{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:10px 18px;

    border-radius:50px;

    background:#fff;

    border:1px solid rgba(233,30,99,.15);

    box-shadow:var(--shadow-sm);

    color:var(--primary);

    font-weight:600;

    margin-bottom:28px;
} */

/* .section-tag span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--gradient);
} */

.who-content h2 {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 25px;
}

.who-content h2 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent;
}

.lead {
  font-size: 22px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.6;
}

.who-content p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 16px;
}

/*==========================
FEATURES
==========================*/

.who-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 40px 0;
}

.who-features div {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 15px 18px;

  background: #fff;

  border-radius: 0 20px 0 20px;

  border: 1px solid rgba(233, 30, 99, 0.08);

  transition: 0.35s;

  box-shadow: var(--shadow-sm);
}

.who-features div:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 30, 99, 0.25);
  box-shadow: var(--shadow);
}

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

/*==========================
BUTTONS
==========================*/

.who-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 34px;

  border-radius: 24px 0 20px 0;

  text-decoration: none;

  font-weight: 600;

  transition: 0.4s ease;
}

.btn-primary {
  background: var(--gradient);

  color: #fff;

  box-shadow: 0 12px 30px rgba(233, 30, 99, 0.25);
}

.btn-primary:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.3);
}

.btn-outline {
  background: #fff;

  color: var(--text);

  border: 2px solid rgba(233, 30, 99, 0.15);
}

.btn-outline:hover {
  color: var(--primary);

  border-color: var(--primary);

  transform: translateY(-5px);
}

/*==========================
ANIMATIONS
==========================*/

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*==========================
TABLET
==========================*/

@media (max-width: 992px) {
  .who-we-are {
    padding: 90px 20px;
  }

  .who-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .who-image {
    order: 1;
  }

  .who-content {
    order: 2;

    text-align: center;
  }

  /* .section-tag{

justify-content:center;

} */

  .who-buttons {
    justify-content: center;
  }

  .who-features {
    grid-template-columns: 1fr 1fr;
  }

  .image-wrapper img {
    height: 520px;
  }

  .experience-card {
    left: 25px;

    bottom: 25px;
  }
}

/*==========================
MOBILE
==========================*/

@media (max-width: 768px) {
  .who-we-are {
    padding: 80px 20px;
  }

  .who-content h2 {
    font-size: 38px;
  }

  .lead {
    font-size: 20px;
  }

  .who-features {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .image-wrapper img {
    height: 420px;
  }

  .experience-card {
    padding: 18px 22px;

    left: 20px;

    bottom: 20px;
  }

  .experience-card h3 {
    font-size: 34px;
  }

  .who-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }
}

/*==========================
SMALL MOBILE
==========================*/

@media (max-width: 480px) {
  .who-we-are {
    padding: 70px 15px;
  }

  .who-content h2 {
    font-size: 32px;
  }

  .who-content p {
    font-size: 15px;
  }

  .lead {
    font-size: 18px;
  }

  /* .image-wrapper {
    border-radius: 20px;
  } */

  .image-wrapper img {
    height: 340px;
  }

  .experience-card {
    left: 15px;

    bottom: 15px;

    padding: 15px 18px;
  }

  .experience-card h3 {
    font-size: 28px;
  }

  .experience-card p {
    font-size: 13px;
  }

  /* .section-tag{

font-size:13px;

padding:8px 15px;

} */
}

/*=========================================
WHY CHOOSE US
=========================================*/

.why-us {
  padding: 120px 0;

  background: var(--background);

  position: relative;

  overflow: hidden;
}

.why-us::before {
  content: "";

  position: absolute;

  width: 400px;

  height: 400px;

  top: -180px;

  right: -120px;

  border-radius: 50%;

  background: rgba(233, 30, 99, 0.05);

  filter: blur(80px);
}

.section-heading {
  text-align: center;

  max-width: 750px;

  margin: 0 auto 70px;
}

.section-heading h2 {
  font-size: var(--fs-3xl);

  color: var(--text);

  margin: 20px 0;

  line-height: 1.25;
}

.section-heading h2 span {
  background: var(--gradient);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.section-heading p {
  color: var(--text-light);

  line-height: 1.9;
}

/*=========================================
GRID
=========================================*/

.why-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;
}

/*=========================================
CARD
=========================================*/

.why-card {
  position: relative;

  background: var(--white);

  padding: 40px;

  border-radius: 0 20px 0 20px;

  border: 1px solid var(--border);

  box-shadow: var(--shadow);

  transition: 0.35s;

  overflow: hidden;
}

.why-card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 5px;

  background: var(--gradient);

  transform: scaleX(0);

  transform-origin: left;

  transition: 0.4s;
}

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

  box-shadow: var(--shadow-lg);

  border-color: rgba(233, 30, 99, 0.2);
}

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

/*=========================================
ICON
=========================================*/

.why-icon {
  width: 75px;

  height: 75px;

  border-radius: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--gradient);

  color: var(--white);

  font-size: 30px;

  margin-bottom: 30px;

  transition: 0.35s;
}

.why-card:hover .why-icon {
  transform: rotate(-8deg) scale(1.08);
}

.why-card h3 {
  font-size: 24px;

  margin-bottom: 18px;

  color: var(--text);

  transition: 0.3s;
}

.why-card:hover h3 {
  color: var(--primary);
}

.why-card p {
  color: var(--text-light);

  line-height: 1.9;
}

/*=========================================
BOTTOM LINE
=========================================*/

.why-card::after {
  content: "";

  position: absolute;

  bottom: 0;

  left: 40px;

  width: 60px;

  height: 4px;

  border-radius: 20px;

  background: var(--gradient);

  transition: 0.4s;
}

.why-card:hover::after {
  width: 140px;
}

/*=========================================
RESPONSIVE
=========================================*/

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

  .section-heading {
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .why-us {
    padding: 80px 0;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .why-grid {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .why-card {
    padding: 30px;
  }

  .why-icon {
    width: 65px;

    height: 65px;

    font-size: 24px;
  }

  .why-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .section-heading h2 {
    font-size: 28px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .why-card {
    padding: 25px;

    border-radius: 20px;
  }

  .why-icon {
    width: 60px;

    height: 60px;

    font-size: 22px;
  }
}

/*=========================
COMMITMENT
=========================*/

.commitment {
  position: relative;
  padding: 130px 20px;
  background: #fff;
  overflow: hidden;
}

.commitment .container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Background Word */

.commitment-bg-text {
  position: absolute;
  top: 40px;
  left: 50%;

  transform: translateX(-50%);

  font-size: clamp(90px, 16vw, 220px);

  font-weight: 700;

  letter-spacing: 12px;

  color: #000;

  opacity: 0.03;

  white-space: nowrap;

  pointer-events: none;

  user-select: none;
}

/* Heading */

.commitment-head {
  text-align: center;
  margin-bottom: 80px;
}

.commit-label {
  color: var(--primary);

  font-weight: 600;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.commitment-head h2 {
  margin-top: 18px;

  font-size: clamp(36px, 5vw, 60px);

  color: var(--text);
}

.commitment-head h2 span {
  background: var(--gradient);

  -webkit-background-clip: text;

  color: transparent;
}

/* Quote Layout */

.manifesto {
  display: flex;

  gap: 50px;

  align-items: flex-start;
}

.quote-mark {
  font-size: 180px;

  font-family: Georgia, serif;

  line-height: 0.7;

  background: var(--gradient);

  -webkit-background-clip: text;

  color: transparent;

  flex-shrink: 0;
}

.manifesto-content {
  flex: 1;
}

.manifesto-lead {
  font-size: 34px;

  line-height: 1.4;

  font-weight: 300;

  color: var(--text);

  margin-bottom: 35px;
}

.manifesto-content p {
  font-size: 17px;

  line-height: 2;

  color: var(--text-light);

  margin-bottom: 22px;
}

/* Signature */

.signature {
  margin-top: 50px;

  padding-top: 30px;

  border-top: 1px solid rgba(0, 0, 0, 0.08);

  color: var(--text);
}

.signature span {
  display: block;

  margin-top: 10px;

  font-size: 28px;

  font-weight: 700;

  background: var(--gradient);

  -webkit-background-clip: text;

  color: transparent;
}

.signature small {
  display: block;

  margin-top: 8px;

  color: var(--text-muted);

  letter-spacing: 1px;
}

/* Bottom Values */

.commitment-values {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 40px;

  margin-top: 90px;

  padding-top: 35px;

  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.commitment-values span {
  position: relative;

  font-weight: 600;

  color: var(--text);

  letter-spacing: 0.5px;
}

.commitment-values span:not(:last-child)::after {
  content: "";

  position: absolute;

  right: -22px;

  top: 50%;

  width: 6px;
  height: 6px;

  background: var(--primary);

  border-radius: 50%;

  transform: translateY(-50%);
}

/* Hover */

.commitment-values span {
  transition: 0.3s;
}

.commitment-values span:hover {
  color: var(--primary);
}

/* Tablet */

@media (max-width: 992px) {
  .manifesto {
    flex-direction: column;

    gap: 20px;
  }

  .quote-mark {
    font-size: 120px;
  }

  .manifesto-lead {
    font-size: 28px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .commitment {
    padding: 90px 20px;
  }

  .commitment-bg-text {
    font-size: 80px;

    top: 80px;
  }

  .manifesto-lead {
    font-size: 24px;
  }

  .manifesto-content p {
    font-size: 16px;

    line-height: 1.9;
  }

  .commitment-values {
    gap: 20px;

    justify-content: flex-start;
  }

  .commitment-values span::after {
    display: none;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .quote-mark {
    font-size: 90px;
  }

  .manifesto-lead {
    font-size: 20px;
  }

  .commitment-head h2 {
    font-size: 32px;
  }
}

/* ==========================================================
   ULTRA-PREMIUM VISUAL GRID (LIGHT THEME LUXURY)
========================================================== */

.services-elevate-section.light-theme {
  padding: 80px 0;
  background: #ffffff;
  color: #111111;
  position: relative;
}

/* --- Typographic Header --- */
.elevate-header {
  margin-bottom: 80px;
}

.elevate-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 20px;
}

.elevate-main-heading {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -1px;
  margin: 0;
}

.elevate-main-heading span {
  background: linear-gradient(90deg, #111111, rgba(0, 0, 0, 0.4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Architectural Bento Grid --- */
.elevate-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* --- The Rising Card Framework --- */
.elevate-card {
  position: relative;
  border-radius: 0 20px 0 20px;
  overflow: hidden;
  background: #fdfdfd;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.03);
  /* Lock hardware-accelerated movement */
  transform: translateY(0);
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Asymmetric Desktop Span Sizing */
@media (min-width: 993px) {
  .card-tall {
    grid-row: span 2;
    min-height: 915px;
  }
  .card-wide {
    grid-column: span 2;
  }
}

/* --- Image Shifting Layer --- */
.card-image-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* --- High Visibility Base Image --- */
.elevate-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  /* filter: grayscale(100%); */
  opacity: 0.75; /* Boosted significantly so the image is fully crisp and visible */
  position: relative;
  z-index: 1;
}

/* --- Bottom-Heavy Readability Overlay --- */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  /* 
    to bottom:
    0%   -> Completely clear (0.0) so the top of the image shows perfectly.
    45%  -> Still mostly clear so the middle of the photo is sharp.
    85%  -> Rapidly fades to heavy white right where the text begins.
    100% -> Solid white (1.0) behind the text links for perfect contrast.
  */
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.1) 60%,
    rgba(255, 255, 255, 0.4) 80%,
    rgba(255, 255, 255, 0.9) 100%
  );
}

/* --- Content Layers & Structural Micro-Rising --- */
.card-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  transform: translateY(35px); /* Hidden structural offset */
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-header-meta {
  margin-bottom: 15px;
}

.card-index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.card-title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 0;
}

.card-desc {
  display: none;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
  /* opacity: 0; Hidden initially, reveals cleanly on rise */
  margin: 0 0 25px 0;
  max-width: 90%;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Sub-tags Cloud Execution --- */
.card-tags-cloud {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.card-tags-cloud span {
  font-size: 12px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.04);
  color: #111111;
  padding: 6px 14px;
  border-radius: 50px;
  transition:
    background 0.4s ease,
    color 0.4s ease;
}

/* --- Upward Arrow Action Link --- */
.card-link {
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  text-decoration: none;
  display: none;
  align-items: center;
  gap: 8px;
  /* opacity: 0; */
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s ease;
}

.card-link .arrow {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/*=========================
    TESTIMONIAL
=========================*/

.testimonial-section {
  padding: 120px 0;
  background: #fafafa;
}

.testimonial-slider {
  overflow: hidden;
  margin-top: 70px;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;

  animation: scrollTestimonials 24s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 420px;
  flex-shrink: 0;

  background: #fff;

  border-radius: 0 20px 0 20px;

  padding: 35px;

  border: 1px solid var(--border);

  box-shadow: var(--shadow);

  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow-lg);
}

.stars {
  color: var(--secondary);

  font-size: 22px;

  margin-bottom: 20px;
}

.testimonial-card p {
  line-height: 1.8;

  color: var(--text);

  margin-bottom: 30px;
}

.client {
  display: flex;

  align-items: center;

  gap: 15px;
}

.client img {
  width: 65px;

  height: 65px;

  border-radius: 50%;

  object-fit: cover;

  border: 3px solid var(--primary);
}

.client h4 {
  margin-bottom: 4px;

  font-size: 20px;
}

.client span {
  color: var(--text-light);
}

/* Infinite Animation */

@keyframes scrollTestimonials {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-450px * 3));
  }
}

/*======================
    Responsive
======================*/

@media (max-width: 768px) {
  .testimonial-card {
    width: 300px;
  }

  @keyframes scrollTestimonials {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(calc(-330px * 3));
    }
  }
}

/*=========================================
        INDUSTRIES
=========================================*/

.industries-section {
  padding: 120px 0;
  background: var(--background-light);
}

.industries-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 40px;

  margin-top: 70px;
}

.industry-item {
  text-align: center;

  transition: 0.35s;
}

.industry-icon {
  width: 110px;

  height: 110px;

  margin: 0 auto 20px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #fff;

  border: 1px solid var(--border);

  box-shadow: var(--shadow);

  position: relative;

  transition: 0.35s;
}

.industry-icon::before {
  content: "";

  position: absolute;

  inset: -4px;

  border-radius: 50%;

  background: var(--gradient);

  z-index: -1;

  opacity: 0;

  transition: 0.35s;
}

.industry-icon i {
  font-size: 42px;

  color: var(--primary);

  transition: 0.35s;
}

.industry-item h4 {
  font-size: 20px;

  font-weight: 600;

  color: var(--text);

  transition: 0.35s;
}

.industry-item:hover {
  transform: translateY(-10px);
}

.industry-item:hover .industry-icon {
  background: var(--gradient);

  border-color: transparent;
}

.industry-item:hover .industry-icon::before {
  opacity: 1;
}

.industry-item:hover .industry-icon i {
  color: #fff;

  transform: scale(1.15);
}

.industry-item:hover h4 {
  color: var(--primary);
}

/*=========================
        Tablet
=========================*/

@media (max-width: 991px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 35px;
  }
}

/*=========================
        Mobile
=========================*/

@media (max-width: 576px) {
  .industries-section {
    padding: 80px 0;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
  }

  .industry-icon {
    width: 90px;

    height: 90px;
  }

  .industry-icon i {
    font-size: 34px;
  }

  .industry-item h4 {
    font-size: 17px;
  }
}
