/* css/reset.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* Fluid root font-size scaling for Mobile, Desktops & 4K/TV displays */
@media (max-width: 380px) {
  html {
    font-size: 14.5px;
  }
}

@media (min-width: 2000px) {
  html {
    font-size: 18px;
  }
}

@media (min-width: 2800px) {
  html {
    font-size: 22px;
  }
}

body {
  font-family: var(--font-body);
  color: var(--clr-text-main);
  background-color: var(--clr-bg-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  margin: 0;
  padding: 0;
}

#spa-container,
.spa-page {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  border: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

ul,
ol {
  list-style: none;
}

img,
video,
iframe,
svg,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  max-width: 100%;
}

button {
  cursor: pointer;
  background: none;
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background-color: var(--clr-secondary);
  color: var(--clr-white);
}

/* css/variables.css */


:root {
  /* Luxury Color Palette */
  --clr-primary: #050A1F;
  /* Deep Midnight Blue */
  --clr-secondary: #0A1128;
  /* Rich Navy */
  --clr-accent: #D4AF37;
  /* Luxury Gold */
  --clr-accent-dim: rgba(212, 175, 55, 0.2);
  --clr-bg-light: #FDFDFD;
  /* Pearl White */
  --clr-bg-dark: #030613;
  /* Ultra Dark for contrast */
  --clr-text-main: #1A1A1A;
  --clr-text-light: #6A6E78;
  --clr-white: #FFFFFF;

  /* Glassmorphism & Borders */
  --clr-glass: rgba(255, 255, 255, 0.05);
  --clr-glass-border: rgba(255, 255, 255, 0.1);
  --clr-glass-dark: rgba(5, 10, 31, 0.6);
  --border-gold: 1px solid rgba(212, 175, 55, 0.3);
  --border-light: 1px solid rgba(0, 0, 0, 0.05);

  /* Modern Sleek Typography */
  --font-page-title: 'Cinzel', serif; /* Controls ONLY top page headings like "About The Company", "Our Projects", etc. */
  --font-heading: 'Playfair Display', serif; /* Controls all other section & content headings across the website */
  --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-number: 'Outfit', sans-serif;

  /* Layout */
  --container-width: 1500px;
  /* Slightly wider for editorial feel */
  --grid-gap: 1.5rem;

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-normal: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.5s cubic-bezier(0.25, 1, 0.5, 1);

  /* Shadows */
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.15);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* 4K and Ultra-wide Display Tokens */
@media (min-width: 2000px) {
  :root {
    --container-width: 1800px;
    --grid-gap: 2rem;
  }
}

@media (min-width: 2800px) {
  :root {
    --container-width: 2200px;
    --grid-gap: 2.5rem;
  }
}

/* Mobile Token Adjustments */
@media (max-width: 768px) {
  :root {
    --grid-gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  :root {
    --grid-gap: 1rem;
  }
}

/* Custom scrollbar for luxury feel */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--clr-bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-accent);
}


/* css/layout.css */

/* Global Image Protection (Anti-Drag & Anti-Select) */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none; /* Disables long-press download popups on iOS / Android */
}

/* Fluid Containers */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3.5vw, 2.5rem);
}

.container-whoweare {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3.5vw, 2.5rem);
}

/* Global Link Behavior */
a {
  transition: color var(--transition-fast), transform var(--transition-fast);
}

a:hover {
  color: var(--clr-accent);
}

/* 12 Column Fluid Grid System */
.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gap);
  width: 100%;
}

.col-1 { grid-column: span 1; }
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-9 { grid-column: span 9; }
.col-10 { grid-column: span 10; }
.col-11 { grid-column: span 11; }
.col-12 { grid-column: span 12; }

/* Sections */
section {
  padding: clamp(1.5rem, 4vw, 3rem) 0;
  position: relative;
  width: 100%;
}

.section-dark {
  background-color: var(--clr-bg-dark);
  color: var(--clr-white);
  margin-top: 0;
}

/* Page Headers (Across About, Services, Projects, Gallery, Contact, Privacy, Terms) */
.page-header {
  padding: clamp(3rem, 6vh, 5rem) 1.5rem clamp(1rem, 2vh, 2rem);
  background-color: var(--clr-bg-dark);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  color: var(--clr-white);
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header .overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 31, 0.62) 0%, rgba(5, 10, 31, 0.82) 90%);
  backdrop-filter: blur(0px) brightness(0.75);
  -webkit-backdrop-filter: blur(5px) brightness(0.85);
  z-index: 1;
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

/* Header & Navigation Bar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
  padding: clamp(1rem, 2vh, 1.45rem) 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease;
}

.header.scrolled {
  background: rgba(4, 7, 22, 0.96) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  padding: 0.65rem 0 !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.28) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

.header.menu-open {
  background: rgba(5, 10, 31, 0.98) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.2vw, 2.1rem);
  font-weight: 800;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: -0.5px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  width: clamp(34px, 4vw, 48px);
  height: auto;
  display: block;
}

.logo span {
  color: var(--clr-white);
  opacity: 0.7;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.8vw, 1.8rem);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo i {
  color: var(--clr-accent);
  font-size: 2.2rem;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2vw, 2.2rem);
}

.nav-link {
  color: var(--clr-white);
  font-weight: 500;
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  position: relative;
  padding: 0.3rem 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--clr-accent);
  transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Desktop Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(5, 10, 31, 0.98);
  min-width: 190px;
  box-shadow: var(--shadow-glass);
  z-index: 100;
  border: 1px solid var(--clr-glass-border);
  border-radius: 6px;
  flex-direction: column;
  padding: 0.5rem 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.dropdown-content a {
  color: var(--clr-white);
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: background 0.3s, color 0.3s, padding-left 0.3s;
}

.dropdown-content a:hover {
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--clr-accent);
  padding-left: 24px;
}

/* Desktop Hover */
@media (min-width: 1025px) {
  .dropdown:hover .dropdown-content {
    display: flex;
    animation: fadeInMenu 0.25s ease forwards;
  }
}

@keyframes fadeInMenu {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  color: var(--clr-white);
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(5, 10, 31, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 100002;
  transition: all 0.3s ease;
}

.menu-btn:hover {
  background: var(--clr-accent);
  color: var(--clr-primary);
  border-color: var(--clr-accent);
}

/* Mobile Nav Overlay (Backdrop behind header & drawer) */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 12, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99990;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Footer Section */
.footer {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  padding: clamp(1.5rem, 4vw, 3rem) 0 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
  z-index: 5;
}

.footer-top {
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer-widget h4 {
  color: var(--clr-white);
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  font-family: var(--font-heading);
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 36px;
  height: 2px;
  background-color: var(--clr-accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links li {
  display: flex;
  align-items: flex-start;
  word-break: break-word;
  font-size: 0.92rem;
  color: #bbb;
  line-height: 1.6;
}

.footer-links a {
  color: #bbb;
  display: inline-flex;
  align-items: flex-start;
  word-break: break-word;
  transition: color 0.3s, transform 0.3s;
}

.footer-links a:hover {
  color: var(--clr-accent);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #888;
  font-size: 0.88rem;
}

.project-footer {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS: Mobile, Tablet, Laptop, Desktop, 4K & TVs
   ========================================================================== */

/* 1. Large Displays, 4K & Smart TVs (>= 2000px) */
@media (min-width: 2000px) {
  section {
    padding: 3rem 0;
  }

  .page-header {
    padding: 5rem 2rem 2rem;
  }

  .nav-link {
    font-size: 1.15rem;
  }

  .footer {
    padding: 3rem 0 1rem;
  }
}

/* 2. Standard Laptops & Large Tablets in Landscape (1025px to 1280px) */
@media (max-width: 1280px) {
  .nav-links {
    gap: 1.4rem;
  }
}

/* 3. Tablets and Mobile Devices (<= 1024px) */
@media (max-width: 1024px) {
  /* Hide Desktop Nav and Show Mobile Hamburger */
  .menu-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 86vw);
    height: 100vh;
    height: 100dvh;
    background: #050a1f;
    background: linear-gradient(180deg, #070e2a 0%, #030614 100%);
    padding: 2.5rem 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.95);
    border-left: 1px solid rgba(212, 175, 55, 0.4);
    transition: right 0.38s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 100001;
    overflow-y: auto;
  }

  .nav-links.nav-active {
    right: 0;
  }

  .nav-link {
    font-size: 1.12rem;
    width: 100%;
    padding: 0.7rem 0;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--clr-accent);
    padding-left: 6px;
    border-bottom-color: rgba(212, 175, 55, 0.4);
  }

  /* Mobile Dropdown Accordion */
  .dropdown {
    width: 100%;
  }

  .dropdown > .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
  }

  .dropdown > .nav-link i {
    transition: transform 0.3s ease;
    color: var(--clr-accent);
  }

  .dropdown.open > .nav-link i {
    transform: rotate(180deg);
  }

  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    background: rgba(212, 175, 55, 0.06);
    border-left: 2px solid var(--clr-accent);
    margin-top: 0.3rem;
    margin-bottom: 0.4rem;
    padding: 0.4rem 0 0.4rem 0.8rem;
    border-radius: 4px;
    width: 100%;
    min-width: 100%;
  }

  .dropdown.open .dropdown-content {
    display: flex;
    flex-direction: column;
  }

  .dropdown-content a {
    padding: 0.65rem 0.8rem;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s ease;
  }

  .dropdown-content a:hover,
  .dropdown-content a.active {
    color: var(--clr-accent);
    background-color: rgba(212, 175, 55, 0.15);
    padding-left: 1.1rem;
  }

  /* Tablet Grid Adaptations */
  .col-1,
  .col-2,
  .col-3,
  .col-4 {
    grid-column: span 6;
  }

  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    grid-column: span 12;
  }

  /* Hero row spacing */
  .hero-content .row {
    row-gap: 2.5rem;
  }
}

/* 4. Standard Mobile Phones & Small Tablets (<= 768px) */
@media (max-width: 768px) {
  /* Complete Grid Stacking */
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    grid-column: span 12;
  }

  section {
    padding: 4rem 0;
  }

  .section-dark {
    margin-top: 0;
  }

  .header {
    background: transparent;
    padding: 0.85rem 0;
  }

  .logo {
    font-size: 1.3rem;
    max-width: calc(100vw - 80px);
  }

  .logo img {
    width: 38px !important;
  }

  /* Fix nested sub-rows */
  .row .row {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }

  /* Reset harmful negative margins on mobile */
  .overlap-section,
  [style*="margin-top: -100px"],
  [style*="margin-top:-100px"] {
    margin-top: 0 !important;
  }

  /* Reset image offsets */
  [style*="margin-top: 2rem"] img,
  .col-6 img[style*="margin-top"] {
    margin-top: 0 !important;
  }

  /* Footer Mobile */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }

  .footer-bottom div {
    justify-content: center;
  }

  .footer-widget {
    margin-bottom: 1.5rem;
  }

  /* Inline grid resets */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: repeat(4, 1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Inline padding resets */
  [style*="padding-left: 4rem"] {
    padding-left: 0 !important;
  }
}

/* 5. Responsive Page-Header & Logo tweaks for smaller devices */
@media (max-width: 1024px) {
  .page-header {
    padding: clamp(7.5rem, 12vh, 9rem) 1.25rem clamp(2.8rem, 5vh, 4rem) !important;
    background-size: 100% 100% !important;
    background-position: center center !important;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: clamp(5.8rem, 10vh, 7rem) 1rem clamp(2.2rem, 4vh, 3rem) !important;
    background-size: 100% 100% !important;
    background-position: center center !important;
  }
  .page-title,
  .page-header h1 {
    font-size: clamp(1.7rem, 5.5vw, 2.15rem) !important;
    margin-bottom: 0.75rem !important;
  }
  .page-subtitle,
  .page-header p {
    font-size: clamp(0.85rem, 2.8vw, 0.95rem) !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
  }
  .page-badge {
    padding: 0.3rem 0.9rem !important;
    font-size: 0.7rem !important;
    margin-bottom: 0.8rem !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.15rem;
    gap: 0.5rem;
  }

  .logo img {
    width: 32px !important;
  }

  .menu-btn {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .footer-top {
    padding-bottom: 2.5rem;
  }
}
/* ==========================================================================
   ULTRA-RESPONSIVE ENHANCEMENTS (All Devices: TVs, Tablets, Tiny Mobile)
   ========================================================================== */

/* 1. Large Desktop, PC (1600px - 2159px) */
@media (min-width: 1600px) {
  html {
    font-size: 110%; /* Scale up typography */
  }
  .container {
    max-width: 1500px; /* Expand container */
  }
}

/* 2. Standard 4K TVs and Ultra-Wide Monitors (2160px - 3839px) (43", 55" etc.) */
@media (min-width: 2160px) {
  html {
    font-size: 140%; /* Massively scale typography for 4K TV viewing distance */
  }
  .container {
    max-width: 90vw; /* Let the container take up 90% of the TV screen */
  }
  .page-title {
    font-size: 5rem !important;
  }
  .section-title {
    font-size: 4rem !important;
  }
}

/* 3. Massive 8K TVs and Projectors (3840px and above) (65", 75", 85"+) */
@media (min-width: 3840px) {
  html {
    font-size: 200%; /* Double typography scale for massive 8K TVs */
  }
  .container {
    max-width: 95vw; /* Almost full width for maximum visual impact */
  }
  .page-title {
    font-size: 7rem !important;
  }
  .section-title {
    font-size: 5.5rem !important;
  }
}

/* 4. Landscape Orientation for Mobile & Tablets */
@media (max-width: 900px) and (orientation: landscape) {
  .page-header {
    padding: clamp(4rem, 15vh, 6rem) 1rem clamp(2rem, 5vh, 3rem) !important;
  }
  .project-hero {
    min-height: 85vh; /* Ensure hero images fit perfectly when turning phone sideways */
  }
}

/* 5. Ultra-Small Mobile Devices (Galaxy Fold, iPhone SE, etc. < 380px) */
@media (max-width: 380px) {
  html {
    font-size: 85%; /* Scale down slightly to prevent text clipping */
  }
  .nav-container .logo img {
    width: 35px !important; /* Smaller logo */
  }
  .section-title {
    font-size: 1.6rem !important; /* Prevent massive headings from breaking words */
  }
  .project-meta-card {
    grid-template-columns: 1fr; /* Force single column strictly */
  }
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    width: 100% !important;
    padding: 0 !important;
  }
}

/* 6. Fluid Image & Media Guarantee */
img, picture, video, canvas, svg, iframe, object, embed {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* 7. Responsive Logo Fixes (Prevent touching left edge) */
.footer-logo-img {
  width: 50px !important; /* Forces project-pages footer logo to match homepage size, overriding .logo img rules */
}
@media (max-width: 768px) {
  .header-logo-img {
    margin-left: 10px !important;
  }
  .footer-logo-img {
    margin-left: 15px !important;
  }
}


/* css/components.css */

/* Magnetic & Editorial Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: clamp(0.9rem, 2vw, 1.25rem) clamp(1.6rem, 3vw, 2.6rem);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.78rem, 1.2vw, 0.92rem);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  border-radius: 0;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  text-align: center;
  min-height: 46px;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background-color: var(--clr-accent);
  color: var(--clr-primary);
  border: 1px solid var(--clr-accent);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-white);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-normal);
  z-index: -1;
}

@media (hover: hover) {
  .btn-primary:hover::before {
    transform: scaleY(1);
  }

  .btn-primary:hover {
    color: var(--clr-primary);
    box-shadow: var(--shadow-md);
  }

  .btn-outline:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
  }
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-outline {
  background-color: transparent;
  color: var(--clr-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Editorial Glass Cards */
.glass-card {
  background: var(--clr-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--clr-glass-border);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  border-radius: 4px;
}

@media (hover: hover) {
  .glass-card:hover {
    border-color: var(--clr-accent);
  }
}

/* Testimonials Slider Equal Heights */
.testimonials-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.testimonials-slider .swiper-slide {
  height: auto;
  display: flex;
}

.testimonials-slider .glass-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Service Cards */
.service-card {
  background: var(--clr-white);
  padding: 2rem 1.5rem;
  border: var(--border-light);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  color: #050A1F !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  margin-bottom: 0.8rem !important;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--clr-accent);
  transition: height var(--transition-normal);
}

@media (hover: hover) {
  .service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
  }

  .service-card:hover::after {
    height: 100%;
  }

  .service-card:hover .service-icon {
    color: var(--clr-accent);
    transform: scale(1.08);
  }

/* Auto-apply hover states for mobile devices (so icons are visible without holding) */
@media (hover: none) {
  .service-card {
    box-shadow: var(--shadow-lg);
  }
  .service-card::after {
    height: 100%;
  }
  .service-card .service-icon {
    color: var(--clr-accent);
  }
}

}

.service-icon {
  font-size: 2rem;
  color: var(--clr-primary);
  margin-bottom: 1rem;
  opacity: 0.85;
  transition: all var(--transition-fast);
}

/* Section Titles - Editorial Style */
.section-header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  position: relative;
}

.section-subtitle {
  color: var(--clr-accent);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.72rem, 1.2vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: clamp(2px, 0.4vw, 4px);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.section-subtitle::before {
  content: '';
  width: clamp(25px, 4vw, 40px);
  height: 1px;
  background-color: var(--clr-accent);
}

/* Center Aligned Section Headers */
.section-header.text-center,
.text-center .section-header {
  text-align: center;
}

.section-header.text-center .section-subtitle,
.text-center .section-subtitle {
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header.text-center .section-subtitle::after,
.text-center .section-subtitle::after {
  content: '';
  width: clamp(25px, 4vw, 40px);
  height: 1px;
  background-color: var(--clr-accent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  color: var(--clr-primary);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-title i {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  color: var(--clr-accent);
}

.section-dark .section-title {
  color: var(--clr-white);
}

/* Page Headers & Standardized Centered Top Headings */
.page-title,
.page-header h1 {
  font-family: var(--font-page-title, var(--font-heading));
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--clr-white);
  margin: 0 auto 1.2rem;
  text-align: center;
  letter-spacing: clamp(1px, 0.15vw, 2.5px);
  text-transform: capitalize;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85), 0 2px 8px rgba(0, 0, 0, 0.95);
}

.page-title i,
.page-header h1 i,
.page-title span.highlight,
.page-header h1 span.highlight {
  font-style: normal;
  color: var(--clr-accent);
  font-weight: 700;
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.5), 0 4px 16px rgba(0, 0, 0, 0.9);
}

.page-subtitle,
.page-header p {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
  text-align: center;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.page-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: rgba(5, 10, 31, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.65);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.15);
  color: var(--clr-accent);
  padding: 0.38rem 1.2rem;
  border-radius: 50px;
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  margin-bottom: 1.25rem;
}

.page-badge i {
  font-size: 0.5rem;
  color: var(--clr-accent);
}

/* Hero Titles */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.0rem, 6.2vw, 5.8rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}

.hero-title i {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--clr-accent);
  font-weight: 400;
}

/* Trusted Partner Logos */
.partner-logo {
  opacity: 0.65;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: grayscale(100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--clr-primary);
  cursor: pointer;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
  width: 100%;
}

@media (hover: hover) {
  .partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-6px);
    background: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  .partner-logo:hover i {
    color: var(--clr-accent);
    transform: scale(1.1);
  }
}

.partner-logo i {
  color: inherit;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Counter Cards */
.counter-card {
  background: var(--clr-bg-light);
  border: var(--border-light);
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.2rem, 2.5vw, 2rem);
  text-align: center;
  border-radius: 8px;
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-dark .counter-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (hover: hover) {
  .counter-card:hover {
    transform: translateY(-8px);
    border-color: var(--clr-accent);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
  }
}

.counter-icon {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: var(--clr-accent);
  margin-bottom: 1.2rem;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.4rem;
  line-height: 1;
}

.counter-title {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Inputs / Forms */
.form-group {
  margin-bottom: 1.5rem;
  width: 100%;
}

.form-control {
  width: 100%;
  padding: 0.9rem 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
  border-radius: 0;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-control:focus {
  border-color: var(--clr-accent);
  outline: none;
}

/* Ensure intl-tel-input occupies full width cleanly */
.iti {
  width: 100%;
  display: block;
}

.iti__country-list {
  background-color: #050a1f !important;
  color: #fff !important;
  border: 1px solid var(--border-gold) !important;
  max-height: 200px !important;
  z-index: 1000 !important;
}

.iti__country {
  padding: 8px 12px !important;
}

.iti__country:hover,
.iti__country.iti__highlight {
  background-color: rgba(212, 175, 55, 0.2) !important;
}

/* Video Modal Responsive Styling */
#video-modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 19, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

#video-modal.active {
  display: flex;
}

.modal-video-wrapper {
  position: relative;
  width: min(1000px, 94vw);
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid var(--clr-accent);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.modal-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--clr-white);
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}

.modal-close-btn:hover {
  color: var(--clr-accent);
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .modal-close-btn {
    top: 8px;
    right: 8px;
    background: rgba(5, 10, 31, 0.85);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    border: 1px solid rgba(212, 175, 55, 0.4);
  }
}

/* Overlays */
.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(5, 10, 31, 0.9), rgba(5, 10, 31, 0.4));
  z-index: 1;
}

/* Swiper Slider Global Adjustments */
.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  height: auto;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--clr-accent) !important;
  transition: transform 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.15);
}

@media (max-width: 600px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}

/* Fix for dark-themed service cards (like on the homepage) so icons are visible */
.service-card[style*="transparent"] .service-icon {
  color: var(--clr-white);
}
@media (hover: hover) {
  .service-card[style*="transparent"]:hover .service-icon {
    color: var(--clr-accent);
  }
}
@media (hover: none) {
  .service-card[style*="transparent"] .service-icon {
    color: var(--clr-accent); /* Make it permanently gold on mobile so it looks "active" */
  }
}


/* css/animations.css */

/* Core Reveal Classes with Smooth Hardware-Accelerated Transitions */
.reveal-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

.parallax-img {
  will-change: transform;
  backface-visibility: hidden;
}

/* Text Reveal (Wrapper needs hidden overflow) */
.text-reveal-wrapper {
  overflow: hidden;
  display: inline-block;
}

.text-reveal {
  display: inline-block;
  transform: translateY(100%);
}

/* Image Zoom Hover */
.img-zoom-container {
  overflow: hidden;
  position: relative;
}

.img-zoom-container img {
  transition: transform var(--transition-slow);
}

.img-zoom-container:hover img {
  transform: scale(1.1);
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delay {
  animation: float 6s ease-in-out infinite 3s;
}

/* Infinite Marquee */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.marquee-content {
  display: flex;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* Assumes content is duplicated */
}

/* Loading Screen */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--clr-primary);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--clr-secondary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}



/* --- SMART PRINT STYLES (Brochure / PDF Export Mode) --- */
@media print {
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
  }
  @page { size: A4 portrait; margin: 1cm; }
  body { background-color: #050a1f !important; font-size: 12px !important; line-height: 1.4 !important; }
  .navbar, footer, .floating-wa-btn, .btn, #loader, .cursor, .cursor-follower { display: none !important; }
  section { page-break-inside: avoid; page-break-after: auto; padding: 1cm 0 !important; position: relative !important; }
  .hero, .about-section, .services-section, .projects-section, .contact-section {
    page-break-after: always !important; page-break-inside: avoid !important; height: 95vh !important;
    max-height: 95vh !important; display: flex !important; flex-direction: column !important;
    justify-content: center !important; overflow: hidden !important;
  }
  .hero-title { font-size: 26pt !important; line-height: 1.1 !important; margin-bottom: 0.5cm !important; }
  .section-title { font-size: 22pt !important; margin-bottom: 0.5cm !important; }
  p { font-size: 10pt !important; margin-bottom: 0.2cm !important; }
  img { max-height: 30vh !important; width: auto !important; object-fit: contain !important; }
  .row { display: flex !important; flex-wrap: nowrap !important; align-items: center !important; gap: 10px !important; }
  .col-6 { width: 50% !important; flex: 0 0 50% !important; }
  .col-4 { width: 33.333% !important; flex: 0 0 33.333% !important; }
  .col-8 { width: 66.666% !important; flex: 0 0 66.666% !important; }
  .hero-bg, .about-bg, .parallax-img { position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; object-fit: cover !important; z-index: 1 !important; opacity: 0.2 !important; }
  .reveal-up, .reveal-left, .reveal-right, .text-reveal, .hero-title-line { opacity: 1 !important; transform: none !important; visibility: visible !important; }
}

/* Custom Text Logo Styles */
.custom-text-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  position: relative;
  margin-top: 5px;
}
.logo-top {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 1;
}
.logo-meridian {
  font-family: var(--font-heading), 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--clr-white);
  text-transform: uppercase;
}
.logo-four {
  position: absolute;
  right: -20px;
  top: -5px;
  font-family: var(--font-serif), 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--clr-accent);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  text-shadow: -2px 0 0 var(--clr-bg-dark), 0 2px 0 var(--clr-bg-dark);
  z-index: 2;
}
.logo-divider-line {
  width: 100%;
  height: 1px;
  background: var(--clr-white);
  margin: 4px 0;
  z-index: 1;
}
.logo-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}
.logo-tagline {
  font-family: var(--font-serif), 'Playfair Display', serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--clr-white);
  font-weight: 400;
}
.logo-gold-line {
  flex: 1;
  height: 1px;
  background: var(--clr-accent);
  opacity: 0.7;
}

/* Tighter layout overrides */
.section-padding { padding: clamp(3rem, 6vh, 4rem) 0 !important; }
.hero { min-height: 70vh !important; margin-top: 0 !important; padding-top: 0 !important; }
.hero-content { padding-top: 60px !important; }
.page-header { padding: clamp(6rem, 10vh, 8rem) 1.5rem clamp(2rem, 4vh, 3rem) !important; min-height: auto !important; }

/* Extra text size compactions for screenshot optimization */
.section-title { font-size: clamp(2rem, 3.5vw, 3rem) !important; margin-bottom: 1.5rem !important; }
  .section-header { margin-bottom: 2rem !important; }
.page-title { font-size: clamp(2.5rem, 4vw, 3.5rem) !important; margin-bottom: 0.5rem !important; }
.section-subtitle { margin-bottom: 0.5rem !important; font-size: 0.9rem !important; }
.page-subtitle { font-size: 1rem !important; max-width: 600px !important; }
p { line-height: 1.5 !important; } /* Tighter paragraphs */
.btn { padding: 0.6rem 1.5rem !important; } /* Smaller buttons */

/* Restore Golden Hover Effect on Text Logo */
.logo-meridian, .logo-tagline {
  transition: color 0.3s ease !important;
}
.custom-text-logo-wrapper:hover .logo-meridian,
.custom-text-logo-wrapper:hover .logo-tagline,
.logo:hover .logo-meridian,
.logo:hover .logo-tagline {
  color: var(--clr-accent) !important;
}

/* Prevent logo from dimming/blurring on hover */
.logo, .logo:hover, .custom-text-logo-wrapper, .custom-text-logo-wrapper:hover {
  opacity: 1 !important;
  filter: none !important;
}

/* Proper Text Logo Styling (Moved from inline to allow hover states) */
.logo-meridian {
  color: #ffffff !important;
  -webkit-font-smoothing: antialiased;
  transition: color 0.3s ease !important;
}
.logo-four {
  color: #d4af37 !important;
  -webkit-font-smoothing: antialiased;
}
.logo-tagline {
  color: #ffffff !important;
  -webkit-font-smoothing: antialiased;
  transition: color 0.3s ease !important;
}

/* Hover State - Use extra specificity to override the above !important */
.logo:hover .logo-meridian,
.custom-text-logo-wrapper:hover .logo-meridian,
.logo:hover .logo-tagline,
.custom-text-logo-wrapper:hover .logo-tagline {
  color: var(--clr-accent) !important;
}

/* High-contrast headings on dark sections */
.section-dark .section-title,
#page-about .section-title {
  color: var(--clr-white);
}

/* Minimal Footer (Career, FAQ, Lab, News/Blog, Tools, Privacy, Terms) */
.project-footer.footer-minimal {
  padding: clamp(1.2rem, 2.5vh, 1.8rem) 0 !important;
  background-color: var(--clr-bg-dark) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.project-footer.footer-minimal .row {
  display: none !important;
}
.project-footer.footer-minimal .footer-bottom {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
}
.project-footer.footer-minimal .footer-bottom p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.9rem !important;
}
.project-footer.footer-minimal .footer-bottom a {
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  transition: color 0.3s ease !important;
}
.project-footer.footer-minimal .footer-bottom a:hover {
  color: var(--clr-accent) !important;
}
