﻿:root {
  /* Colors */
  --color-bg-dark: #050a14;
  --color-bg-dark-hover: #022345;
  --color-bg-card: #101828;
  --color-text-white: #ffffff;
  --color-text-gray: #d9d9d9;
  --color-accent-gold: #d4af37;
  --color-accent-hover: #b59226;
  --color-border: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-primary: 'Roboto Flex', sans-serif;

  /* Spacing */
  --spacing-xs: clamp(0.25rem, 0.5vw, 0.5rem);
  --spacing-sm: clamp(0.75rem, 1.5vw, 1rem);
  --spacing-md: clamp(1.5rem, 3vw, 2rem);
  --spacing-lg: clamp(2.5rem, 5vw, 4rem);
  --spacing-xl: clamp(4rem, 8vw, 6rem);
  --spacing-2xl: clamp(6rem, 10vw, 8rem);

  --section-padding: clamp(5rem, 10vh, 10rem) 0;
  --section-padding-mobile: clamp(2.0rem, 5vh, 5rem) 0;
  --container-padding: clamp(1rem, 3vw, 2rem);
  /* Standardized section padding */

  /* Font Sizes (Clamp Variables) */
  --fs-xs: clamp(0.65rem, 0.65rem + 0.1vw, 0.85rem);
  --fs-sm: clamp(0.75rem, 0.75rem + 0.1vw, 1rem);
  --fs-base: clamp(1rem, 0.95rem + 0.22vw, 1.125rem);
  /* P: 16px -> 18px */
  --fs-md: clamp(1rem, 0.95rem + 0.22vw, 1.125rem);
  /* P: 16px -> 18px */
  /* H3: 20px -> 30px (Desktop 30, Tablet 25, Mobile 20) */
  --fs-h3: clamp(1.25rem, 0.99rem + 1.1vw, 1.6rem);

  /* H2: 25px -> 40px (Desktop 40, Tablet 30, Mobile 25) */
  --fs-h2: clamp(1.5625rem, 1.17rem + 1.66vw, 2.3rem);

  /* H1: 30px -> 50px (Desktop 50, Tablet 40, Mobile 30) */
  --fs-h1: clamp(1.875rem, 1.36rem + 2.21vw, 3.125rem);

  /* Container */
  --container-width: calc(100vw - 10%);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-dark);
  color: var(--color-text-white);
  line-height: 1.3;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

h1,
h5,
h6 {
  font-weight: 600;
}

h2,
h3,
h4 {
  font-weight: 500;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

p {
  font-size: var(--fs-base);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 0.6rem;
  letter-spacing: 1px;
}

p:last-child {
  margin-bottom: 0;
}

/* Utility Classes */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  /* padding: 0 var(--container-padding); */
}

.center-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  font-size: var(--fs-base);
  transition: all var(--transition-fast), background-position 0.4s ease;
  border: 1px solid #d4af37;
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.4s ease;
}

.btn-primary {
  background-image: linear-gradient(to right, #050a14 50%, #d4af37 50%);
  color: var(--color-bg-dark);
}

.btn-primary:hover {
  background-position: left bottom;
  color: #d4af37;
}

.btn-accent {
  background-image: linear-gradient(to right, #050a14 50%, #d4af37 50%);
  color: var(--color-bg-dark);
  font-weight: 600;
  padding: 0.8rem 1.5rem;
}

.btn-accent:hover {
  background-position: left bottom;
  color: #d4af37;
}


.tag {
  font-size: var(--fs-sm);
  color: var(--color-text-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
}

.badge {
  background: var(--color-accent-gold);
  color: var(--color-bg-dark);
  font-size: var(--fs-xs);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Header styles moved to header.css */

/* Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-in-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Child Animations */
.reveal .service-card,
.reveal .stat-card,
.reveal .industry-card,
.reveal .tool-logo,
.reveal .choice-card,
.reveal .value-card,
.reveal .job-card,
.reveal .highlight-item,
.reveal .vm-card,
.reveal .footer-col,
.reveal .footer-bottom {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.reveal.active .service-card,
.reveal.active .stat-card,
.reveal.active .industry-card,
.reveal.active .tool-logo,
.reveal.active .choice-card,
.reveal.active .value-card,
.reveal.active .job-card,
.reveal.active .highlight-item,
.reveal.active .vm-card,
.reveal.active .footer-col,
.reveal.active .footer-bottom {
  opacity: 1;
  transform: translateY(0);
}

/* Delays */
.reveal.active :nth-child(1) {
  transition-delay: 0.1s;
}

.reveal.active :nth-child(2) {
  transition-delay: 0.2s;
}

.reveal.active :nth-child(3) {
  transition-delay: 0.3s;
}

.reveal.active :nth-child(4) {
  transition-delay: 0.4s;
}

.reveal.active :nth-child(5) {
  transition-delay: 0.5s;
}

.reveal.active :nth-child(6) {
  transition-delay: 0.6s;
}

.reveal.active :nth-child(7) {
  transition-delay: 0.7s;
}

.reveal.active :nth-child(8) {
  transition-delay: 0.8s;
}

.reveal.active .footer-bottom {
  transition-delay: 1.2s;
}

@keyframes hero-bg-appear {
  from {
    transform: scale(1.1);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Hero Section */
.hero-section {
  padding: calc(80px + 3vw) 4% 5%;
  /* Kept specific top padding for header offset */
  position: relative;
  /* display: flex; REMOVED */
  /* align-items: center; REMOVED */
  display: block;
  overflow: hidden;
  /* Contain the pseudo-element */
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}




/* Navigation Controls */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  color: var(--color-bg-dark);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--color-accent-gold);
  transform: scale(1.2);
}

/* Adjustments for Mobile */
@media (max-width: 768px) {

  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Autoplay Progress Ring */
.autoplay-progress {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.autoplay-progress svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.autoplay-progress circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 3;
}

.autoplay-progress .progress-ring-circle {
  stroke: var(--color-accent-gold);
  stroke-dasharray: 113;
  stroke-dashoffset: 113;
  transition: stroke-dashoffset 0.1s linear;
  stroke-width: 3;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 20, 0.7);
  /* Overlay */
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 0;
}

.slide .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  transition-delay: 0.1s;
}

.slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
  /* Wait for slide background to settle */
}

/* Navigation Controls */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  color: var(--color-bg-dark);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--color-accent-gold);
  transform: scale(1.2);
}

/* Adjustments for Mobile */
@media (max-width: 768px) {

  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Hero Section Desktop Adjustments */
@media (min-width: 1280px) {

  .hero-section {
    min-height: 100vh;
  }

  .hero-content {
    max-width: 800px;
    margin: 15vh auto 0 5%;

  }

  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
  }

  .rowOne {
    max-width: 30%;
  }

  .rowTwo {
    max-width: 50%;

  }

}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 20, 0.4);
  z-index: -1;
}


.hero-text h1 {
  font-size: var(--fs-h1);
  margin-bottom: 0.8rem;
  background: linear-gradient(to right, #fff, #a0aec0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: var(--fs-md);
  color: var(--color-text-white);
  margin-bottom: 2rem;
}



/* Services Section */
.services-section {
  background-color: var(--color-bg-dark);
}

.section-header {
  margin-bottom: var(--spacing-lg);
  max-width: 100%;
}


.btnWrapper {
  margin-left: auto;
}

.section-header h2 {
  font-size: var(--fs-h2);
  /* Standardized H2 */
  color: var(--color-text-white);
}

.section-desc {
  color: var(--color-text-gray);
  margin-bottom: 1rem;
}

.section-header.center {
  text-align: center;
  margin: 0 auto 3rem;
}

.section-header-wide {
  max-width: 900px;
  margin: 0 auto var(--spacing-xl);
  color: var(--color-text-gray);
  text-align: right;
  font-size: var(--fs-base);
  line-height: 1.8;
}


/* Shared Content Carousel */
.content-carousel {
  width: 100%;
  overflow-x: auto;
  /* Allows manual scroll/swipe */
  display: flex;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.content-carousel::-webkit-scrollbar {
  display: none;
}

.content-track {
  display: flex;
  gap: var(--spacing-md);
  width: max-content;
}

/* Base Card Styles for Carousel Items */
.service-card {
  position: relative;
  height: 350px;
  width: 450px;
  /* Standard width */
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-medium);
}


/* Responsive Card Sizing */
@media (max-width: 1279px) {

  /* Tablet: 2 cards view */
  .service-card {
    width: calc((100vw - 4rem) / 2);
    width: 45vw;
  }
}

@media (max-width: 767px) {

  /* Mobile: 1 card view */
  .service-card {
    width: 90vw;
    margin-left: 5vw;
  }
}

/* Pagination Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: var(--spacing-md);
}

.dot {
  width: 20px;
  height: 5px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.dot.active {
  background-color: var(--color-accent-gold);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* Card Counter */
.card-counter {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  z-index: 10;
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-card:hover .card-counter {
  color: var(--color-accent-gold);
  transform: scale(1.1);
}



.service-card:hover {
  transform: translateY(-5px);
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-medium);
}

.service-card:hover .card-image {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.card-content h3 {
  font-size: var(--fs-h3);
  color: var(--color-text-white);
  border-left: 3px solid var(--color-accent-gold);
  padding-left: 0.8rem;
}

/* Highlights Section */
.highlights-section {
  position: relative;
  background: var(--color-bg-card);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-md);
}

.stat-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  /* Glass feel */
  padding: var(--spacing-md);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.stat-number {
  display: block;
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--color-accent-gold);
  margin-bottom: 0.5rem;
}

.stat-card p {
  font-size: var(--fs-base);
  color: var(--color-text-gray);
  line-height: 1.5;
}

.cta-wrapper {
  margin-top: 2rem;
}

/* Industries Section */
.industries-section {
  background-color: var(--color-bg-dark);
}

.industries-list {
  display: grid;
  gap: var(--spacing-md);
}

.industry-card {
  position: relative;
  /* height: 400px; Removed fixed height */
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  background: var(--color-bg-card);
  /* Added background */
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 200px;
  /* Ensure reasonable height without image */
  justify-content: center;
  /* Center content vertically if needed */
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent-gold);
}

.industry-image {
  position: relative;
  /* Changed from absolute */
  width: 100%;
  height: 200px;
  /* Fixed height for image */
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-medium);
}

.industry-card:hover .industry-image {
  transform: scale(1.05);
}

.industry-overlay {
  display: none;
  /* Hidden as requested */
}

.industry-content {
  position: relative;
  z-index: 2;
  height: auto;
  /* Changed from 100% */
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Align to top */
  flex-grow: 1;
}


.industry-content h3 {
  font-size: var(--fs-h3);
  color: var(--color-text-white);
  margin-bottom: 1rem;
  border-left: 3px solid var(--color-accent-gold);
  padding-left: 0.8rem;
}

.industry-content p {
  color: var(--color-text-gray);
  font-size: var(--fs-base);
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 0;
}

@media (min-width: 1280px) {
  .industries-list {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 1279px) {
  .industries-list {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }

  /* Force visibility on mobile to prevent animation issues */
  .reveal .industry-card,
  section.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Tools Section */
/* Tools (Tech) Section */
.tech-section {
  background: var(--color-bg-card);
}

.tech-section .section-header {
  margin: 0 auto var(--spacing-md);
}

.tools-logos {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  align-items: center;
}

.tool-logo {
  font-size: var(--fs-h1);
  color: var(--color-text-gray);
  opacity: 0.5;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.tool-logo:hover {
  color: var(--color-accent-gold);
  opacity: 1;
}

.tool-logo span {
  font-size: var(--fs-sm);
  color: var(--color-text-white);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}

.tool-logo:hover span {
  opacity: 1;
  transform: translateY(0);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.tab-content.active {
  display: flex;
}

.tech-tab {
  background: transparent;
  border: 1px solid var(--color-accent-gold);
  color: var(--color-text-gray);
  padding: 0.8rem 1.5rem;
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  margin: 0rem 1rem 1rem 1rem;
  border-radius: 4px;
}

.tech-tab.active,
.tech-tab:hover,
.tech-tab:focus {
  background: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  color: var(--color-bg-dark);
}

.tech-tab:focus {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.logoBtnWrapper {
  margin: 0px auto 1rem auto;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Page Styles */
.hero-contact {
  min-height: 50vh;
  background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1600') no-repeat center center/cover;
  position: relative;
  padding-top: 150px;
}

.hero-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 20, 0.7);
}

.hero-text-simple {
  position: relative;
  z-index: 2;
}

.hero-text-simple h1 {
  font-size: var(--fs-h1);
  color: var(--color-text-white);
}

.hero-text-simple h1 span {
  color: var(--color-accent-gold);
}

@media screen and (min-width: 1280px) {
  .hero-text-simple {
    max-width: 45%;
  }
}

@media (max-width: 1279px) {
  .hero-text-simple {
    max-width: 100%;
  }
}

.contact-content-section {
  background-color: #020408;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: flex-start;
}

.contact-info h2 {
  font-size: var(--fs-h2);
  color: var(--color-text-white);
}

.contact-info p {
  color: var(--color-text-gray);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.info-list h3 {
  font-size: var(--fs-md);
  color: var(--color-text-white);
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item i {
  color: var(--color-accent-gold);
  margin-top: 5px;
}

.info-item p {
  margin-bottom: 0;
  color: #a0aec0;
}

.contact-form-wrapper {
  background: #fff;
  padding: 2.5rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent-gold);
  background: #fff;
}

/* Map Section */
.map-section {
  /* Keeping as is for specific design potentially */
  background-color: var(--color-bg-dark);
  position: relative;
}

.map-visual {
  position: relative;
  height: 400px;
  margin-bottom: 4rem;
  overflow: hidden;
}

.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--color-accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-accent-gold);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.location-card {
  background: #e2e8f0;
  padding: 2rem;
  border-radius: 4px;
  color: #2d3748;
}

.location-card h3 {
  font-size: var(--fs-h3);
  color: #1a202c;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #cbd5e0;
  padding-bottom: 1rem;
}

.location-card h3 small {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: #718096;
  display: block;
}

.location-card p {
  margin-bottom: 1rem;
  font-size: var(--fs-base);
}

.branches {
  font-size: var(--fs-sm) !important;
  color: #718096;
  margin-top: 1.5rem;
  text-transform: uppercase;
  line-height: 1.8;
}

/* Careers Page Styles */
.hero-icon {
  font-size: var(--fs-h1);
  color: var(--color-accent-gold);
  margin-bottom: 1rem;
  background: rgba(212, 175, 55, 0.1);
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.hero-meta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--color-text-gray);
  font-size: var(--fs-base);
}

.hero-meta i {
  color: var(--color-accent-gold);
  margin-right: 5px;
}

.positions-section {
  background-color: #0f172a;
}

.icon-header {
  font-size: var(--fs-h2);
  color: var(--color-accent-gold);
  margin-bottom: 1rem;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.job-card {
  background: #020408;
  padding: 2.5rem;
  border-radius: 5px;
  border: 1px solid #3a3a3a;
  transition: all 0.3s ease;
  cursor: pointer;
}

.job-card:hover {
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
  transform: translateY(-5px);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.job-header h3 {
  font-size: var(--fs-h3);
  color: var(--color-text-white);
}

.badge {
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-accent-gold);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.job-meta {
  display: flex;
  gap: 1.5rem;
  font-size: var(--fs-sm);
  color: var(--color-text-gray);
  margin-bottom: 2rem;
}

.job-meta i {
  color: var(--color-accent-gold);
  margin-right: 0.5rem;
}

.job-desc {
  color: var(--color-text-gray);
  font-size: var(--fs-base);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #3a3a3a;
}

.job-email {
  font-size: var(--fs-sm);
  color: var(--color-text-gray);
}

.job-email:hover {
  color: var(--color-accent-gold);
}

.process-section {
  background: #020408;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.step-card {
  text-align: center;
}

.step-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--color-accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-accent-gold);
  font-size: var(--fs-h3);
}

.step-card h3 {
  font-size: var(--fs-md);
  color: var(--color-text-white);
}

.step-card p {
  font-size: var(--fs-base);
  color: var(--color-text-gray);
}

.ready-cta {
  background: linear-gradient(to top, #000, #050a14);
}

.cta-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.cta-links a {
  color: var(--color-text-white);
  font-weight: 500;
}

.cta-links a:hover {
  color: var(--color-accent-gold);
}

/* Technologies Page Styles */
.hero-tech {
  background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?q=80&w=1600') no-repeat center center/cover;
  position: relative;
}

.hero-tech::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(5, 10, 20, 0.9), rgba(5, 10, 20, 0.4));
}

.tech-content-section {
  background-color: #020408;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.tech-card {
  text-align: center;
  padding: 2rem;
  background: #020408;
  border-radius: 5px;
  border: 1px solid #3a3a3a;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;

}


.tech-card:hover {
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}


.tech-icon-circle {
  width: fit-content;
  padding: 8%;
  /* height: 100px; */
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: var(--fs-h2);
  color: #fff;
  transition: all 0.3s;
}

.tech-card:hover .tech-icon-circle {
  background: var(--color-accent-gold);
  color: var(--color-bg-dark);
  transform: scale(1.1);
}

.tech-card h3 {
  font-size: var(--fs-h3);
  color: var(--color-text-white);
}

.tech-card p {
  font-size: var(--fs-base);
}

/* Partners Section */
.partners-section {
  padding: var(--section-padding) 0;
  background: var(--color-bg-dark);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.partner-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #020408;
  border-radius: 5px;
  border: 1px solid #3a3a3a;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.partner-card:hover {
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
  transform: translateY(-5px);
}

.partner-logo .tech-icon-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  transition: all 0.3s ease;
}

.partner-card:hover .tech-icon-circle {
  background: var(--color-accent-gold);
  color: var(--color-bg-dark);
  transform: scale(1.05);
}

.partner-card h3 {
  font-size: var(--fs-h4);
  color: var(--color-text-white);
  margin-bottom: 1rem;
}

.partner-card p {
  font-size: var(--fs-base);
  color: var(--color-text-gray);
  line-height: 1.6;
}

/* Clients Section */
.clients-section {
  padding: var(--section-padding) 0;
  background: var(--color-bg-dark);
}

.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.client-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #020408;
  border-radius: 5px;
  border: 1px solid #3a3a3a;
  color: var(--color-text-white);
  font-size: var(--fs-h4);
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 120px;
}

.client-logo-box:hover {
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
  transform: translateY(-5px);
  color: var(--color-accent-gold);
}




.cta-section {
  padding: var(--section-padding);
  background: linear-gradient(rgb(12 21 41 / 90%), rgba(5, 10, 20, 0.9)), url(assets/images/cta-bg.webp) center / cover;
  color: var(--color-text-white);
  text-align: center;
}


/* Testimonial Section */
.testimonial-section {
  background-color: var(--color-bg-card);
  padding: var(--section-padding);
}

.testimonial-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: var(--fs-h2);
  color: var(--color-text-white);
}

.testimonial-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  /* Will be handled by JS/Flex */
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Desktop: 2 visible items (50% - gap adjustment) */
  width: 500px;
  /* Fixed width for smooth scrolling like services, or flexible */
  flex-shrink: 0;
}

@media (min-width: 1280px) {
  .testimonial-card {
    /* Calculate width to show exactly 2 items with 2rem gap in a container */
    /* If container is 1200px, card should be approx 580px */
    width: calc(50vw - 2rem);
    max-width: 600px;
  }
}

@media (max-width: 1279px) {
  .testimonial-card {
    /* Tablet/Mobile: 1 visible item */
    width: 90vw;
    max-width: 100%;
  }
}

.testimonial-card p {
  color: var(--color-text-gray);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent-gold);
}

.testimonial-info-text h3 {
  font-size: 1rem;
  color: var(--color-text-white);
  margin-bottom: 0.2rem;
}

.testimonial-info-text p {
  font-size: 0.875rem;
  color: var(--color-text-gray);
  margin-bottom: 0;
  font-style: normal;
}


/* Carousel Dots (Shared) */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

/* .dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--color-accent-gold);
  transform: scale(1.2);
} */

/* Footer styles moved to footer.css */



/* Inner Page Styles */
@media (min-width: 1280px) {
  .InnerPageHero {
    overflow: hidden;
    padding: calc(80px + 15vw) 4% 5% !important;
  }

  .about-intro-grid {
    grid-template-columns: 1fr 1fr;
  }

}

.InnerPageHero {
  position: relative;
  /* Ensure overlay stays within section */
}

.InnerPageHero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(5, 10, 20, 0.9), rgba(5, 10, 20, 0.4));
  z-index: 1;
}

.hero-text-simple .btn {
  margin-top: 1rem;
}

.hero-about {
  background: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?q=80&w=1600') no-repeat center center/cover;
}

.hero-services {
  background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?q=80&w=1600') no-repeat center center/cover;
}

.hero-why {
  background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1600') no-repeat center center/cover;
}

.hero-careers {
  background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1600') no-repeat center center/cover;
}

.hero-partners {
  background: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?q=80&w=1600') no-repeat center center/cover;
}

.hero-tech {
  background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1600') no-repeat center center/cover;
}

.hero-contact {
  background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600') no-repeat center center/cover;
}

.hero-clients {
  background: url('https://images.unsplash.com/photo-1556761175-4b46a572b786?q=80&w=1600') no-repeat center center/cover;
}

.hero-legal {
  background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=1600') no-repeat center center/cover;
}

.hero-sitemap {
  background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?q=80&w=1600') no-repeat center center/cover;
}

.about-intro-section {
  background-color: var(--color-bg-dark);
}

.about-intro-grid {
  display: grid;
  gap: var(--spacing-lg);
  justify-content: center;
  align-items: center;
}

.intro-visuals {
  background: url(https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=600);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 10px;
}

.about-intro-section p {
  text-align: justify;
}

.intro-highlights {
  margin-top: 3rem;
  display: grid;
  gap: var(--spacing-md);
}

.highlight-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-gold);
  font-size: var(--fs-h3);
  flex-shrink: 0;
}

/* Core Values */
.core-values-section {
  background-color: #020408;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.header-right {
  max-width: 40%;
  text-align: left;
  color: var(--color-text-gray);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  gap: var(--spacing-md);
}

.value-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: var(--color-bg-dark);
  cursor: pointer;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.2);

}

.value-icon {
  font-size: var(--fs-h2);
  color: var(--color-accent-gold);
  /* Gold icon */
}

.value-text h3 {
  color: var(--color-accent-gold);
}

.value-text p {
  font-size: var(--fs-base);
  color: var(--color-text-gray);
  line-height: 1.5;
  text-align: justify;
}

/* Why Choose Us */
.why-choose-section {
  background-color: var(--color-bg-dark);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  gap: var(--spacing-md);
}

.choice-card {
  border-radius: 5px;
  padding: 2rem;
  position: relative;
  color: var(--color-text-gray);
  border: 1px solid #343434;
  transition: all 0.3s ease;
  cursor: pointer;
}


.choice-card:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-text-white);
}

.choice-icon {
  font-size: var(--fs-h1);
  color: var(--color-text-gray);
  /* Accent color */
  margin-bottom: 0.8rem;
}

.choice-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 1rem;
  color: var(--color-accent-gold);
}

.choice-card p {
  font-size: var(--fs-base);
  color: var(--color-text-gray);
  line-height: 1.6;
  text-align: justify;
}



/* Vision Mission */
.vision-mission-section {
  background-color: #0f172a;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.vm-card {
  background: var(--color-bg-dark);
  border-radius: 6px;
  padding: 2rem;
}

.vm-img {
  width: 100%;
  height: 30vh;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.vm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vm-card h3 {
  font-size: var(--fs-h3);
  color: var(--color-accent-gold);
}

.vm-card p {
  color: var(--color-text-white);
  text-align: justify;
}

/* Responsive Adjustments for About Page */

/* Sitemap Styles Removed */

/* --------------------------
   Responsive Design & Media Queries
   -------------------------- */

@media (max-width: 1279px) {

  .hero-section {
    min-height: 80vh;
  }

  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 5%;
  }

  .hero-text p {
    margin: 0 auto var(--spacing-md);
  }

  .industry-image {
    min-height: 200px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {

  /* General */
  .tools-cta-box {
    flex-direction: column;
    background: transparent;
    border: none;
  }

  .btn-primary-inv,
  .btn-secondary-inv {
    width: 100%;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    background: var(--color-accent-gold);
    color: var(--color-bg-dark);
    border-radius: 4px;
  }


  /* Footer media queries moved to footer.css */
}

/* Scroll to Top Button */
/* Progress Scroll to Top */
#scroll-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 64px;
  height: 64px;
  display: none;
  /* Hidden by default on mobile */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5) rotate(-45deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#scroll-container.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1) rotate(0deg);
}

/* The SVG Progress Ring */
.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring__circle {
  transition: stroke-dashoffset 0.1s;
  transform-origin: 50% 50%;
  stroke: var(--color-accent-gold);
}

.progress-ring__background {
  stroke: rgba(255, 255, 255, 0.2);
}

/* The Button Inside */
#inner-button {
  width: 30px;
  height: 30px;
  background: var(--color-bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: var(--color-accent-gold);
  z-index: 2;
  transition: all 0.2s ease;
  border: 1px solid var(--color-accent-gold);
}

#scroll-container:hover #inner-button {
  background-color: var(--color-accent-gold);
  color: var(--color-bg-dark);
}

/* WhatsApp Floating Button & Popup */
.whatsapp-container {
  position: fixed;
  bottom: 150px;
  right: 2rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 10px;
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  /* Ensure it stays on top of container flow if needed */
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #fff;
}

.whatsapp-popup {
  background: white;
  color: #333;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transform: translateX(10px);
  position: absolute;
  right: 70px;
  /* Position to the left of the button */
  top: 50%;
  transform: translateY(-50%);
}

.whatsapp-popup::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  margin-top: -6px;
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent white;
}

/* Show popup on hover or initially if desired. 
   To show on load and hover: */
.whatsapp-container:hover .whatsapp-popup,
.whatsapp-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Optional: Animation to pop in on load */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.whatsapp-popup {
  animation: popIn 0.5s ease-out 1s forwards;
  /* Delays 1s then shows */
}


@media (max-width: 1279px) {
  .whatsapp-container {
    bottom: 90px;
    right: 1.5rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  /* Resize Scroll to Top to match WhatsApp */
  #scroll-container {
    width: 50px;
    height: 50px;
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .progress-ring {
    width: 50px;
    height: 50px;
  }

  #inner-button {
    width: 24px;
    height: 24px;
  }
}



/* Active Footer Link */
.active-footer-link {
  color: var(--color-accent-gold) !important;
  font-weight: 600;
  border-bottom: 1px solid var(--color-accent-gold);
}

/* =======================================================
   RESPONSIVE DESIGN (Based on User Breakpoints)
   ======================================================= */

@media (min-width:1280px) {

  section:not(.hero-section) {
    padding: var(--section-padding);
  }

  .intro-visuals {
    min-height: 50vh;
  }

}

/* 1. Tablet & Mobile Combined (Max Width: 1279px) */
@media (max-width: 1279px) {

  section:not(.hero-section) {
    padding: var(--section-padding-mobile);
  }

  .intro-visuals {
    min-height: 30vh;
  }

  /* Hero Adjustment */
  .InnerPageHero {
    overflow: hidden;
    padding: calc(100px + 8vw) 8% 10%;
    text-align: center;
  }

}

/* 2. Tablet Mode Specific (768px - 1279px) */
@media (min-width: 768px) and (max-width: 1279px) {

  /* Force 2 Columns for Grids (Rule: >3 cols on desktop -> 2 on Tablet) */
  .values-grid,
  .choice-grid,
  .process-steps,
  .tech-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* 3. Mobile Specific (Max Width: 767px) */
@media (max-width: 767px) {

  /* Force 1 Column for ALL Grids */
  .about-intro-grid,
  .values-grid,
  .choice-grid,
  .vision-mission-grid,
  .contact-grid,
  .locations-grid,
  .jobs-grid,
  .process-steps,
  .tech-grid {
    grid-template-columns: 1fr !important;
  }


  /* About Intro */
  .about-intro-section p {
    text-align: left;
    /* Justify difficult on mobile */
  }

  .intro-highlights {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  /* Cards & Spacing */
  .value-card,
  .choice-card,
  .vm-card {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .value-card {
    flex-direction: column;
    align-items: center;
  }

  .value-text p,
  .vm-card p {
    text-align: center;
    /* Better readability */
  }

}