/* ==========================================================================
   Global Variables & Base Styles
   ========================================================================== */

:root {
  /* Colors */
  --primary-blue: #0A5B99;       /* Corporate Healthcare Blue */
  --primary-blue-dark: #074577;
  --secondary-teal: #14B8A6;      /* Teal */
  --teal-gradient: linear-gradient(135deg, #14B8A6, #0A5B99);
  
  --bg-white: #FFFFFF;
  --bg-soft-gray: #F8FAFC;
  --text-main: #334155;
  --text-light: #64748B;
  --text-heading: #0F172A;
  --footer-bg: #0B1120;           /* Dark Navy */
  
  /* Shadows & Borders */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-premium: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-card: 20px;
  --radius-btn: 8px;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: 1px solid rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-soft-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary-blue); }
.text-teal { color: var(--secondary-teal); }
.gradient-text {
  background: var(--teal-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Button Styles */
.btn {
  display: inline-flex;
  font-family: inherit;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  white-space: nowrap;
}
}

.btn-primary {
  background-color: var(--primary-blue);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(10, 91, 153, 0.39);
}
.btn-primary:hover {
  background-color: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 91, 153, 0.23);
}

.btn-secondary {
  background-color: white;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}
.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: white;
}

/* Section Padding */
.section-padding {
  padding: 80px 0;
}
.bg-white { background-color: var(--bg-white); }
.bg-gray { background-color: var(--bg-soft-gray); }

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 20px 0;
  background: transparent;
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: max-content;
}

.logo span {
  white-space: nowrap;
}

.logo img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .logo span {
    display: none !important;
  }
  .logo {
    gap: 0 !important;
  }
}

.nav-links {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-shrink: 1;
}

@media (min-width: 1200px) {
  .nav-links {
    gap: 20px;
  }
}
@media (min-width: 1400px) {
  .nav-links {
    gap: 20px;
  }
}

.nav-links a {
  font-weight: 500;
  color: var(--text-heading);
  position: relative;
  white-space: nowrap;
}

.nav-links .btn-primary {
  padding: 10px 20px;
  font-size: 0.9rem;
}

@media (min-width: 1400px) {
  .nav-links .btn-primary {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--secondary-teal);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-heading);
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, #ffffff, #f0f7ff);
  padding-top: 80px;
}

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

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: float 10s infinite ease-in-out alternate;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-blue);
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary-teal);
  bottom: -50px;
  left: -100px;
  animation-delay: -5s;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  padding: 0 20px;
}

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

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 50px) scale(1.1); }
}

/* ==========================================================================
   Internal Page Navbar Fix
   ========================================================================== */
body.internal-page .navbar:not(.scrolled) .logo {
  color: white;
}
/* Removed invert filter */
body.internal-page .navbar:not(.scrolled) .nav-links a,
body.internal-page .navbar:not(.scrolled) .mobile-menu-btn {
  color: white;
}
body.internal-page .navbar:not(.scrolled) .nav-links a::after {
  background-color: white;
}

@media (max-width: 1200px) {
  body.internal-page .navbar:not(.scrolled) .nav-links a {
    color: var(--text-heading);
  }
  body.internal-page .navbar:not(.scrolled) .btn-primary {
    background-color: var(--primary-blue);
    color: white !important;
    border: none;
  }
}

/* ==========================================================================
   Trust / Logos Strip (Modern Marquee)
   ========================================================================== */
.trust-strip {
  background: white;
  padding: 50px 0;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}
.marquee-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  gap: 40px;
}
.marquee-group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  min-width: 100%;
  flex-shrink: 0;
  animation: scroll-left 15s linear infinite;
}
.marquee-group span {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-light);
  opacity: 0.6;
  white-space: nowrap;
  transition: var(--transition-smooth);
}
.marquee-group span:hover {
  color: var(--primary-blue);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - 40px)); }
}

/* ==========================================================================
   Cards (Services / Projects)
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.premium-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(20, 184, 166, 0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-soft-gray);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.premium-card:hover .card-icon {
  /* background: var(--primary-blue); */
  color: white;
}

.premium-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.premium-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.card-link {
  color: var(--secondary-teal);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-link:hover {
  color: var(--primary-blue);
  gap: 12px;
}

/* ==========================================================================
   Modern Stats Card
   ========================================================================== */
.modern-stats-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-premium);
  padding: 40px;
  border: 1px solid rgba(20, 184, 166, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 10;
  margin-top: -60px; /* Overlap effect */
  margin-bottom: 40px;
}
.modern-stats-content {
  flex: 1;
}
.modern-stats-content h3 {
  font-size: 2rem;
  color: var(--text-heading);
  margin-bottom: 10px;
}
.modern-stats-content p {
  color: var(--text-light);
  font-size: 1.1rem;
}
.modern-stats-grid {
  flex: 1.5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  text-align: center;
}
.stat-box {
  background: white;
  padding: 20px 10px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
  transition: var(--transition-smooth);
}
.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(20, 184, 166, 0.3);
}
.stat-number {
  font-size: 2.2rem;
  margin-bottom: 5px;
  font-weight: 800;
  background: var(--teal-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-box p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .modern-stats-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    margin-top: -40px; /* Keep overlap on mobile */
  }
  .modern-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}
@media (max-width: 576px) {
  .modern-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Director Overview (Premium Layout)
   ========================================================================== */
.about-overview.premium-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 992px) {
  .about-overview.premium-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.about-image-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* Glowing Orb Background */
.glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--teal-gradient);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: pulse-glow 6s infinite alternate;
  z-index: 0;
}

@keyframes pulse-glow {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.1; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.25; }
}

/* Pill Shape Image */
.premium-pill-image {
  position: relative;
  z-index: 1;
  width: 85%;
  aspect-ratio: 1 / 1.4;
  border-radius: 200px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  background: #cbd5e1;
  border: 8px solid white;
}

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

.about-image-container:hover .premium-pill-image img {
  transform: scale(1.05);
}

/* Floating Glass Badge */
.glass-badge {
  position: absolute;
  bottom: 20px;
  right: 10px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  border-radius: 20px;
  z-index: 2;
  text-align: center;
  animation: float-badge 6s ease-in-out infinite;
}

@media (min-width: 768px) {
  .glass-badge {
    bottom: 40px;
    right: -20px;
    padding: 15px 25px;
  }
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.glass-badge h4 {
  font-size: 2rem;
  margin-bottom: 0;
  line-height: 1;
  font-weight: 800;
}

.glass-badge p {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  color: var(--text-heading);
}

/* Editorial Text Content */
.editorial-content {
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  color: var(--primary-blue);
  opacity: 0.1;
  position: absolute;
  top: -30px;
  left: -20px;
  z-index: 0;
}

.editorial-content .section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.editorial-text {
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.premium-list {
  margin-top: 30px;
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
}

.premium-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.6;
}

.premium-list li i {
  color: var(--secondary-teal);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 5px;
}

.premium-list li strong {
  display: block;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.director-signature {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 30px;
}

.director-signature h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.director-signature span {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ==========================================================================
   Timeline / Workflow
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--primary-blue);
  opacity: 0.2;
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-content {
  width: 45%;
  background: white;
  padding: 30px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--secondary-teal);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.2);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--footer-bg);
  color: white;
  padding: 80px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand p {
  color: #94A3B8;
  margin-top: 20px;
}
.footer h4 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: white;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #94A3B8;
  display: inline-block;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: var(--secondary-teal);
  transform: translateX(5px);
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #94A3B8;
  font-size: 0.875rem;
}

/* ==========================================================================
   Hidden Future Modules
   ========================================================================== */
.future-module {
  display: none !important;
}

/* ==========================================================================
   Animations & Utilities
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Page Headers & Internal Pages
   ========================================================================== */
.page-header {
  padding: 160px 0 80px;
  background: var(--primary-blue);
  background: linear-gradient(to right, var(--primary-blue-dark), var(--primary-blue));
  color: white;
  text-align: center;
}
.page-header h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* About */
.mission-vision {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.mission-vision > * {
    flex: 1 1 300px;
    max-width: calc(300px + 100px); /* Provides a reasonable max-width to prevent massive stretching */
}
.mv-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-smooth);
}
.mv-card:hover {
  transform: translateY(-5px);
}
.mv-card i {
  font-size: 2.5rem;
  color: var(--secondary-teal);
  margin-bottom: 20px;
}

/* Services */
.accordion {
  background: white;
  border-radius: var(--radius-btn);
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.accordion-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  background: var(--bg-soft-gray);
  transition: var(--transition-smooth);
}
.accordion-header:hover {
  background: #e2e8f0;
}
.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
}
.accordion.active .accordion-content {
  padding: 20px;
  max-height: 800px;
}
.accordion.active .accordion-header i {
  transform: rotate(180deg);
} }

/* Projects */
.filter-btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}
.filter-btn {
  background: white;
  border: 1px solid var(--text-light);
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 500;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}
.project-card .project-img {
  height: 200px;
  background: #cbd5e1;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  margin: -40px -30px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  overflow: hidden;
}
.project-item.hidden {
  display: none;
}

/* Team & Gallery */
.masonry-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.masonry-grid > * {
    flex: 1 1 300px;
    max-width: calc(300px + 100px); /* Provides a reasonable max-width to prevent massive stretching */
}
.masonry-item {
  background: white;
  border-radius: var(--radius-btn);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.masonry-item .img-placeholder {
  width: 100%;
  height: 250px;
  background: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-info-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}
.contact-info-card h4 {
  margin-bottom: 10px;
  color: var(--primary-blue);
}
.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-premium);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-btn);
  font-family: inherit;
  transition: var(--transition-smooth);
}
.form-control:focus {
  outline: none;
  border-color: var(--secondary-teal);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
  .hero h1 { font-size: 3rem; }
  .about-overview { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

 /* Hide logo text on very small screens to make room for hamburger menu */
@media (max-width: 480px) {
  .logo span { display: none; }
  .logo {gap: 0;}
}

@media (max-width: 1200px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    padding: 40px 20px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    overflow-y: auto;
  }
  .nav-links.active { left: 0; }
  .mobile-menu-btn { display: block; }
  
  .hero h1 { font-size: 2.5rem; }
  .hero-btns { flex-direction: column; }
  
  .timeline::before { left: 30px; }
  .timeline-item, .timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-end;
  }
  .timeline-content { width: calc(100% - 70px); }
  .timeline-dot { left: 30px; transform: translate(-50%, 0); top: 20px; }
  
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Premium Refinements & Additions
   ========================================================================== */
.bg-gradient-soft { background: linear-gradient(135deg, #f8fafc, #e2e8f0); }
.glass-card { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.5); box-shadow: var(--shadow-md); border-radius: 20px; padding: 30px; transition: transform 0.3s; }
.glass-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-premium); }

/* FAQ Accordion */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid rgba(0,0,0,0.05); border-radius: 12px; margin-bottom: 15px; background: #fff; overflow: hidden; transition: all 0.3s ease; box-shadow: var(--shadow-sm); }
.faq-item.active { box-shadow: var(--shadow-md); border-color: var(--secondary-teal); }
.faq-question { padding: 20px 25px; width: 100%; text-align: left; background: none; border: none; font-size: 1.1rem; font-weight: 600; color: var(--text-heading); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question i { color: var(--secondary-teal); transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 25px; color: var(--text-main); }
.faq-answer p { padding-bottom: 20px; }

/* Timeline */
.process-timeline { position: relative; max-width: 900px; margin: 0 auto; padding: 40px 0; }
.process-timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--teal-gradient); transform: translateX(-50%); opacity: 0.3; }
.timeline-step { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; position: relative; }
.timeline-step:nth-child(even) { flex-direction: row-reverse; }
.timeline-content { width: 45%; background: #fff; padding: 25px; border-radius: 20px; box-shadow: var(--shadow-md); position: relative; transition: transform 0.3s; border: 1px solid rgba(0,0,0,0.03); }
.timeline-content:hover { transform: translateY(-5px); box-shadow: var(--shadow-premium); }
.timeline-icon { width: 50px; height: 50px; background: white; border: 3px solid var(--secondary-teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--primary-blue); z-index: 2; position: absolute; left: 50%; transform: translateX(-50%); box-shadow: 0 0 15px rgba(20, 184, 166, 0.3); }
@media (max-width: 768px) {
    .process-timeline::before { left: 30px; }
    .timeline-step, .timeline-step:nth-child(even) { flex-direction: column; align-items: flex-start; margin-bottom: 30px; padding-left: 70px; }
    .timeline-content { width: 100%; }
    .timeline-icon { left: 30px; transform: translateX(-50%); }
}

/* Departments & Chips */
.chip-grid { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
.premium-chip { background: #fff; border: 1px solid #e2e8f0; padding: 12px 20px; border-radius: 50px; font-weight: 600; color: var(--primary-blue); display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-sm); transition: all 0.3s ease; }
.premium-chip:hover { background: var(--teal-gradient); color: white; border-color: transparent; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.premium-chip i { color: var(--secondary-teal); }
.premium-chip:hover i { color: white; }

/* Hierarchy Team Cards */
.expert-hierarchy { display: flex; flex-direction: column; gap: 40px; align-items: center; }
.expert-card { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.6); box-shadow: var(--shadow-premium); border-radius: 24px; padding: 30px; text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; }
.expert-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.expert-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--teal-gradient); }
.expert-image { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 20px; background: var(--bg-soft-gray); border: 4px solid #fff; box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center; overflow: hidden; font-size: 3rem; color: #cbd5e1; }
.expert-image img { width: 100%; height: 100%; object-fit: cover; }
.expert-card h3 { font-size: 1.5rem; color: var(--text-heading); margin-bottom: 5px; }
.expert-card .role { color: var(--secondary-teal); font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; display: block; }
.expert-card p { font-size: 0.95rem; color: var(--text-main); line-height: 1.6; margin-bottom: 20px; }
.expert-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.expert-tag { font-size: 0.75rem; background: rgba(20, 184, 166, 0.1); color: var(--primary-blue); padding: 5px 12px; border-radius: 20px; font-weight: 700; }
.expert-card.large { max-width: 600px; width: 100%; padding: 40px; }
.expert-card.large .expert-image { width: 150px; height: 150px; }
.expert-card.medium { max-width: 400px; width: 100%; }
.expert-card.small { max-width: 300px; width: 100%; padding: 25px; }

/* Contact Socials & Trust */
.social-row { display: flex; justify-content: space-between; align-items: center; margin-top: 25px; width: 100%; gap: 10px; }
.social-btn { flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%; background: #f8fafc; color: var(--primary-blue); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; transition: all 0.3s ease; border: 1px solid rgba(0,0,0,0.05); box-shadow: var(--shadow-sm); text-decoration: none; }
.social-btn:hover { background: var(--teal-gradient); color: #fff; transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
@media (max-width: 480px) {
  .social-row { justify-content: space-between; gap: 5px; }
  .social-btn { width: 42px; height: 42px; font-size: 1.1rem; }
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 40px;
}
.trust-card { background: #fff; padding: 20px; border-radius: 16px; border: 1px solid rgba(0,0,0,0.04); text-align: center; box-shadow: var(--shadow-sm); transition: transform 0.3s ease; }
.trust-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--secondary-teal); }
.trust-card i { font-size: 2rem; color: var(--secondary-teal); margin-bottom: 10px; }
.trust-card h5 { font-size: 1rem; color: var(--text-heading); margin: 0; }
.response-assurance { background: rgba(20, 184, 166, 0.05); border-left: 4px solid var(--secondary-teal); padding: 15px 20px; border-radius: 0 12px 12px 0; margin-top: 25px; display: flex; align-items: center; gap: 15px; }
.response-assurance i { color: var(--secondary-teal); font-size: 1.5rem; }
.response-assurance p { margin: 0; font-size: 0.95rem; font-weight: 500; color: var(--text-heading); }

/* Floating WhatsApp */
.float-wa { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: linear-gradient(135deg, #25D366, #128C7E); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); z-index: 1000; transition: all 0.3s ease; text-decoration: none; animation: pulse-wa 2s infinite; }
.float-wa:hover { transform: scale(1.1) translateY(-5px); color: white; }
.float-wa-tooltip { position: absolute; right: 80px; top: 50%; transform: translateY(-50%); background: white; color: var(--text-heading); padding: 8px 15px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; white-space: nowrap; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transition: all 0.3s ease; border: 1px solid rgba(0,0,0,0.05); }
.float-wa-tooltip::after { content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); border-width: 5px 0 5px 5px; border-style: solid; border-color: transparent transparent transparent white; }
.float-wa:hover .float-wa-tooltip { opacity: 1; visibility: visible; right: 75px; }
@keyframes pulse-wa { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
@media (max-width: 768px) { .float-wa { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.5rem; } .float-wa-tooltip { display: none; } }

/* Custom Outline Buttons */
.btn-outline-teal {
  background-color: transparent;
  color: var(--secondary-teal);
  border: 2px solid var(--secondary-teal);
}
.btn-outline-teal:hover {
  background-color: var(--secondary-teal);
  color: white;
  border-color: var(--secondary-teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.23);
}

.btn-outline-blue {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}
.btn-outline-blue:hover {
  background-color: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 91, 153, 0.23);
}

/* Premium Badge Card */
.premium-badge-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    min-width: 130px;
}
.premium-badge-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--secondary-teal);
}
.premium-badge-card i {
    font-size: 2.5rem;
    color: var(--secondary-teal);
    background: linear-gradient(135deg, var(--secondary-teal), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.premium-badge-card span {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Service Tag */
.service-tag {
    font-size: 0.85rem;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    color: var(--primary-blue);
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 3px 6px rgba(0,0,0,0.04);
}

/* ==========================================================================
   Home Page Navbar Fix
   ========================================================================== */
body.home-page .navbar:not(.scrolled) .logo {
  color: white;
}
body.home-page .navbar:not(.scrolled) .nav-links a,
body.home-page .navbar:not(.scrolled) .mobile-menu-btn {
  color: white;
}
body.home-page .navbar:not(.scrolled) .nav-links a::after {
  background-color: white;
}

@media (max-width: 1200px) {
  body.home-page .navbar:not(.scrolled) .nav-links a {
    color: var(--text-heading);
  }
  body.home-page .navbar:not(.scrolled) .btn-primary {
    background-color: var(--primary-blue);
    color: white !important;
    border: none;
  }
}

/* ==========================================================================
   Custom Hero & Flagship Buttons
   ========================================================================== */
.btn-hero-primary {
  background: var(--secondary-teal);
  color: white;
  border: none;
  padding: 16px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.25);
  transition: all 0.3s ease;
}
.btn-hero-primary:hover {
  background: #109f8f; /* darker teal */
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.35);
  color: white;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 16px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.4);
  color: white;
}

.btn-flagship {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(10, 91, 153, 0.2);
}
.btn-flagship:hover {
  background: var(--primary-blue-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 91, 153, 0.3);
  color: white;
}

/* ==========================================================================
   Hero Operational Cards
   ========================================================================== */






@media (max-width: 991px) {
  .hero-op-card-1, .hero-op-card-2, .hero-op-card-3 { transform: translateX(0); width: 100%; }
  .hero-op-card-1:hover, .hero-op-card-2:hover, .hero-op-card-3:hover { transform: translateY(-5px); }
  .hero-flex-container { gap: 30px; }
  .hero-content-col { text-align: center; }
  .hero-desc-main { margin: 0 auto 30px auto; }
}


/* ==========================================================================
   Portfolio Button
   ========================================================================== */
.btn-outline-dark {
  background: white;
  border: 2px solid var(--text-light);
  color: var(--text-heading);
}
.btn-outline-dark:hover {
  background: var(--text-heading);
  color: white;
  border-color: var(--text-heading);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ==========================================================================
   Footer Button
   ========================================================================== */
a.btn-footer, .footer-links a.btn-footer {
  background: var(--secondary-teal);
  color: white !important;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 30px;
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(20, 184, 166, 0.2);
  text-decoration: none;
}
a.btn-footer:hover, .footer-links a.btn-footer:hover {
  background: #109f8f;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(20, 184, 166, 0.3);
}

/* ==========================================================================
   About Page Custom Classes
   ========================================================================== */

.philosophy-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--secondary-teal);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0,0,0,0.05);
}
.comparison-col-1 {
    background: #f8fafc;
    padding: 60px 50px;
    border-right: 1px solid rgba(0,0,0,0.05);
}
.comparison-col-2 {
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
    padding: 60px 50px;
    color: white;
}
@media (max-width: 992px) {
    .comparison-grid { grid-template-columns: 1fr; }
    .comparison-col-1 { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.05); }
}

.expertise-category-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.expertise-category-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

/* ==========================================================================
   Organizational Stats Grid
   ========================================================================== */
.stats-grid-premium {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: center;
}
.stats-grid-premium > * {
    flex: 1 1 220px;
    max-width: calc(220px + 100px);
}
.stat-box-premium {
    padding: 35px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.stat-box-premium:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Philosophy Grid Centering */

.philosophy-card {
    background: white;
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--secondary-teal);
}

/* ==========================================================================
   Projects Page Custom Classes
   ========================================================================== */
.case-study-card {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.case-study-content {
    flex: 1 1 500px;
    padding: 60px 50px;
}
.case-study-sidebar {
    flex: 1 1 300px;
    background: var(--bg-soft-gray);
    padding: 60px 50px;
    border-left: 1px solid rgba(0,0,0,0.05);
}

.project-cat-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.project-cat-card:hover {
    border-color: var(--secondary-teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.project-grid-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.project-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.state-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 15px 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1.1rem;
}
.state-card:hover {
    background: var(--teal-gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.outcome-box {
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
    color: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    margin-bottom: 20px;
}

/* Utility Margin Classes */
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }

/* ==========================================================================
   Portfolio Filters & Gallery Lightbox
   ========================================================================== */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}
.filter-btn {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    font-family: inherit;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--secondary-teal);
    color: white;
    border-color: var(--secondary-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.portfolio-grid > * {
    flex: 1 1 350px;
    max-width: calc(350px + 100px); /* Provides a reasonable max-width to prevent massive stretching */
}
.portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: var(--secondary-teal);
}
.portfolio-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--primary-blue-dark) !important;
}
.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.8;
}
.portfolio-card:hover .portfolio-img-wrapper img {
    transform: scale(1.08);
    opacity: 1;
}
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    opacity: 0.8;
    z-index: 1;
}
.portfolio-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-blue);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.portfolio-location {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}
.portfolio-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.portfolio-title {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.3;
}
.portfolio-facility {
    font-size: 0.9rem;
    color: var(--secondary-teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.portfolio-desc {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}
.portfolio-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: auto;
}

/* Lightbox Styling */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    background: #000;
}
.lightbox.active .lightbox-content {
    transform: scale(1);
}
.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    display: block;
    object-fit: contain;
}
.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
}
.lightbox-close:hover {
    color: var(--secondary-teal);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    backdrop-filter: blur(5px);
}
.lightbox-nav:hover {
    background: var(--secondary-teal);
    border-color: var(--secondary-teal);
}
.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }
.lightbox-counter {
    position: absolute;
    top: 40px;
    left: 40px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 2px;
    background: rgba(0,0,0,0.5);
    padding: 5px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}
@media (max-width: 768px) {
    .lightbox-nav { width: 45px; height: 45px; font-size: 1.2rem; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: 15px; right: 20px; font-size: 2rem; }
    .lightbox-counter { top: 20px; left: 20px; font-size: 0.9rem; }
    .portfolio-grid { grid-template-columns: 1fr; }
}

/* Load More Projects Hidden Class */
.hidden-project {
    display: none !important;
}

/* Carousel Styling */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}



@media (max-width: 992px) {
    
}
@media (max-width: 576px) {
    
}

/* Timeline vertical styling for case study details */
.cs-timeline-wrapper {
    position: relative;
    padding-left: 30px;
    margin-bottom: 40px;
}
.cs-timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--gray-light);
}
.cs-timeline-step {
    position: relative;
    margin-bottom: 30px;
}
.cs-timeline-step:last-child {
    margin-bottom: 0;
}
.cs-timeline-marker {
    position: absolute;
    left: -30px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 3px solid var(--secondary-teal);
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
    z-index: 2;
}
.cs-timeline-step:nth-child(even) .cs-timeline-marker {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(10, 91, 153, 0.1);
}
.cs-timeline-content {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cs-timeline-content:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-teal);
}
.cs-step-num {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

/* Case Study Project Gallery Grid */
.cs-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.cs-gallery-grid > * {
    flex: 1 1 200px;
    max-width: calc(200px + 100px);
}
.cs-gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 180px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.cs-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.cs-gallery-item:hover img {
    transform: scale(1.08);
}
.cs-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cs-gallery-item:hover::after {
    opacity: 1;
}
.cs-gallery-overlay {
    position: absolute;
    bottom: -20px;
    left: 20px;
    color: white;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease;
}
.cs-gallery-item:hover .cs-gallery-overlay {
    bottom: 20px;
    opacity: 1;
}
.case-study-card:hover .cs-cover-img { transform: scale(1.05); }

/* ==========================================================================
   Upgraded Team & Contact Page Styles
   ========================================================================== */

/* Authority Badges */
.authority-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}
.authority-badge i {
    color: var(--secondary-teal);
}
.authority-badge-dark {
    background: var(--bg-soft-gray);
    border: 1px solid #e2e8f0;
    color: var(--text-heading);
}

/* Expertise Grid */
.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.expertise-grid > * {
    flex: 1 1 250px;
    max-width: calc(250px + 100px); /* Provides a reasonable max-width to prevent massive stretching */
}
.expertise-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid #f1f5f9;
}
.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-blue);
}
.expertise-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(20, 184, 166, 0.1);
    color: var(--secondary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.expertise-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}
.expertise-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.expertise-card .tags span {
    font-size: 0.8rem;
    background: var(--bg-soft-gray);
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--text-light);
    font-weight: 500;
}

/* Team Card Premium */
.team-hierarchy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
.team-level {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}
.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid #f1f5f9;
    text-align: center;
    padding: 40px 30px;
    position: relative;
    width: 100%;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}
.team-card.leadership {
    max-width: 500px;
    border-top: 4px solid var(--secondary-teal);
}
.team-card.senior {
    max-width: 400px;
}
.team-card.specialist {
    max-width: 350px;
}
.team-card .photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--bg-soft-gray);
    border: 3px solid white;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-blue);
    overflow: hidden;
}
.team-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.team-card .designation {
    color: var(--secondary-teal);
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 15px;
}
.team-card .intro {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}
.team-card .expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.team-card .expertise-tags span {
    background: rgba(10, 91, 153, 0.05);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Process Flow */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.process-step {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    padding: 20px 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-sm);
    gap: 20px;
    border-left: 4px solid var(--secondary-teal);
}
.process-step .step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.process-step .step-content h4 {
    margin-bottom: 5px;
}
.process-step .step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}
.process-arrow {
    text-align: center;
    color: var(--text-light);
    font-size: 1.5rem;
}

/* Trust Cards */
.trust-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.trust-cards > * {
    flex: 1 1 200px;
    max-width: calc(200px + 100px); /* Provides a reasonable max-width to prevent massive stretching */
}
.trust-card-premium {
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius-card);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid #f1f5f9;
}
.trust-card-premium:hover {
    border-color: var(--secondary-teal);
    transform: translateY(-5px);
}
.trust-card-premium i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}
.trust-card-premium h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.trust-card-premium p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Philosophy */

.philosophy-item {
    display: flex;
    gap: 15px;
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-sm);
}
.philosophy-item i {
    color: var(--secondary-teal);
    font-size: 1.5rem;
    margin-top: 5px;
}

/* Consultation Categories */
.consultation-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}
.consultation-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-premium);
}
.consultation-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}
.consultation-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.consultation-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Info Hub */
.contact-hub-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.contact-hub-grid > * {
    flex: 1 1 250px;
    max-width: calc(250px + 100px); /* Provides a reasonable max-width to prevent massive stretching */
}
.contact-info-hub-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    text-align: center;
    border-top: 4px solid var(--primary-blue);
}
.contact-info-hub-card i {
    font-size: 2rem;
    color: var(--secondary-teal);
    margin-bottom: 15px;
}
.contact-info-hub-card h4 {
    margin-bottom: 10px;
}
.contact-info-hub-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 5px;
}
.contact-info-hub-card .status {
    display: inline-block;
    background: rgba(20, 184, 166, 0.1);
    color: var(--secondary-teal);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 15px;
}

/* Service Areas */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.area-badge {
    background: var(--bg-white);
    padding: 12px 25px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    color: var(--primary-blue);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.area-badge i {
    color: var(--secondary-teal);
}

/* Form Styles Premium */
.premium-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-premium);
    border: 1px solid #f1f5f9;
}
.premium-form .form-group label {
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
    display: block;
}

/* Call to Action Block */
.cta-block {
    background: var(--primary-blue);
    border-radius: var(--radius-card);
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.cta-block h2 {
    color: white;
    margin-bottom: 20px;
}
.cta-block p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-inline: auto;
}
.cta-block .btn {
    background: var(--secondary-teal);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.cta-block .btn:hover {
    background: white;
    color: var(--primary-blue);
}

/* Asymmetrical & Layout Details */
.asymmetric-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
@media (max-width: 991px) {
    .asymmetric-layout {
        grid-template-columns: 1fr;
    }
}


/* Utility & Layout Classes extracted from inline styles */
.hero-premium-section { padding: 200px 0 120px; background: linear-gradient(135deg, #0f172a, var(--primary-blue-dark)); position: relative; overflow: hidden; text-align: left; }
.hero-orb-teal { position: absolute; top: -50%; left: -10%; width: 600px; height: 600px; background: var(--secondary-teal); filter: blur(150px); opacity: 0.15; border-radius: 50%; }
.hero-orb-blue { position: absolute; bottom: -50%; right: -10%; width: 600px; height: 600px; background: var(--primary-blue); filter: blur(150px); opacity: 0.2; border-radius: 50%; }
.hero-orb-teal-sm { position: absolute; top: -50%; left: -10%; width: 500px; height: 500px; background: var(--secondary-teal); filter: blur(150px); opacity: 0.15; border-radius: 50%; }
.hero-orb-blue-sm { position: absolute; bottom: -50%; right: -10%; width: 500px; height: 500px; background: var(--primary-blue); filter: blur(150px); opacity: 0.3; border-radius: 50%; }
.blueprint-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 40px 40px; opacity: 0.6; }
.hero-flex-container { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; justify-content: space-between; }
.hero-content-col { flex: 1 1 500px; max-width: 700px; text-align: left; }
.hero-cards-col { flex: 1 1 350px; max-width: 100%; position: relative; }
.hero-title-main { font-size: 3.5rem; margin-top: 0; line-height: 1.2; margin-bottom: 25px; color: white !important; font-weight: 800; }
.hero-desc-main { font-size: 1.25rem; margin-bottom: 40px; color: #f8fafc !important; line-height: 1.8; max-width: 650px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }





.cta-premium-section { padding: 80px 0; text-align: center; background: var(--primary-blue-dark) !important; color: white; position: relative; overflow: hidden; }
.cta-title { font-size: 3.2rem; margin-bottom: 25px; color: white; font-weight: 800; letter-spacing: -1px; }
.cta-desc { font-size: 1.25rem; color: #e2e8f0; max-width: 700px; margin: 0 auto 50px; line-height: 1.8; }
.cta-btn-wrap { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary { background: var(--secondary-teal); color: white; padding: 18px 45px; font-size: 1.15rem; box-shadow: 0 10px 30px rgba(20, 184, 166, 0.25); border-radius: 50px; }
.btn-cta-secondary { background: rgba(255, 255, 255, 0.1); color: white; border: 1px solid rgba(255, 255, 255, 0.3); padding: 18px 45px; font-size: 1.15rem; border-radius: 50px; backdrop-filter: blur(5px); }
.btn-nav-consult { margin-left: 15px; color: white; white-space: nowrap !important; }

.footer-texture { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 30px 30px; opacity: 0.5; }
.footer-logo-wrap { margin-bottom: 25px; }
.footer-logo-img { filter: brightness(0) invert(1); }
.footer-logo-text { color: white; font-size: 1.5rem; font-weight: 700; }
.footer-desc { color: #94a3b8; line-height: 1.8; font-size: 1rem; margin-bottom: 30px; padding-right: 20px; }
.footer-social-wrap { display: flex; gap: 15px; }
.footer-social-btn { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); color: var(--secondary-teal); display: flex; align-items: center; justify-content: center; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.1); }
.footer-social-btn:hover { background: var(--secondary-teal); color: white; }
.footer-col-title { color: white; font-size: 1.2rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-col-title-line { position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--secondary-teal); }
.footer-link-list { list-style: none; padding: 0; margin: 0; }
.footer-link-item { margin-bottom: 12px; }
.footer-link { color: #94a3b8; text-decoration: none; transition: color 0.3s; }
.footer-link:hover { color: var(--secondary-teal); }
.footer-contact-item { color: #94A3B8; margin-bottom: 15px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; }
.footer-contact-icon { color: var(--secondary-teal); margin-top: 4px; }
.footer-bottom-wrap { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; }
.footer-bottom-text { color: #64748b; margin: 0; font-size: 0.95rem; }

/* Grid and generic utils */
.grid-auto-280 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.text-margin-auto { margin: 0 auto; }


/* Fix navbar button on scroll */
.navbar.scrolled .nav-links a.btn-nav-consult {
    color: white !important;
}
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    font-size: 1rem;
}

/* Form Row Responsive */
.form-row-responsive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .form-row-responsive {
        grid-template-columns: 1fr;
    }
}

.btn-outline-teal, .btn-outline-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    white-space: nowrap;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .hero-title-main {
        font-size: 2rem !important; line-height: 1.3 !important; word-break: break-word;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

/* Glass Box for Services & Infrastructure Hero */
.hero-glass-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Fix Case Study Mobile Order */
@media (max-width: 991px) {
    .case-study-content {
        order: 2 !important;
        padding: 30px !important;
    }
    .case-study-image {
        order: 1 !important;
    }
}

/* Desktop Reverse Case Study */
@media (min-width: 992px) {
    .case-study-reverse {
        flex-direction: row-reverse !important;
    }
}








.btn, [class*="btn-"] {
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.3 !important;
    height: auto !important;
    min-height: 48px;
    align-items: center;
    justify-content: center;
}



/* Re-adjust hero tag label for better vertical centering */




.hero-tag-label {
    display: inline-block !important;
    text-align: center !important;
    padding: 8px 20px !important;
    background: rgba(20, 184, 166, 0.15) !important;
    border: 1px solid rgba(20, 184, 166, 0.3) !important;
    border-radius: 50px !important;
    color: var(--secondary-teal) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    margin-bottom: 25px !important;
    line-height: 1.5 !important;
    min-height: auto !important;
    height: auto !important;
}

/* --- Safe Multi-line Button Fix --- */
.btn, [class*="btn-"] {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Hero Operational Cards (Restored & Artifact Fixed)
   ========================================================================== */
.hero-cards-col {
  isolation: isolate; /* WebKit artifact fix */
}

.hero-op-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  cursor: default;
}
.hero-op-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

/* Individual transforms to preserve layout but override on hover without losing transform */
@media (min-width: 992px) {
  .hero-op-card-1 { transform: translate3d(20px, 0, 0); z-index: 3; }
  .hero-op-card-1:hover { transform: translate3d(20px, -5px, 0); z-index: 10; }

  .hero-op-card-2 { transform: translate3d(-20px, 0, 0); z-index: 2; }
  .hero-op-card-2:hover { transform: translate3d(-20px, -5px, 0); z-index: 10; }

  .hero-op-card-3 { transform: translate3d(30px, 0, 0); z-index: 1; }
  .hero-op-card-3:hover { transform: translate3d(30px, -5px, 0); z-index: 10; }
}
@media (max-width: 991px) {
  .hero-op-card-1, .hero-op-card-2, .hero-op-card-3 { transform: translate3d(0,0,0); width: 100%; z-index: 1; }
  .hero-op-card-1:hover, .hero-op-card-2:hover, .hero-op-card-3:hover { transform: translate3d(0,-5px,0); z-index: 10; }
  .hero-flex-container { gap: 30px; }
  .hero-content-col { text-align: center; }
  .hero-desc-main { margin: 0 auto 30px auto; }
}

/* Modern Carousel Styling */
.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    align-items: center;
}
.carousel-track::-webkit-scrollbar {
    display: none;
}
.carousel-item {
    flex: 0 0 85%;
    max-width: 450px;
    scroll-snap-align: center;
    cursor: grab;
    transition: transform 0.3s ease;
    height: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.carousel-item:active {
    cursor: grabbing;
}
.carousel-item:hover {
    transform: translateY(-5px);
}

@media (min-width: 768px) {
    .carousel-item {
        flex: 0 0 calc(50% - 10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}
}
@media (min-width: 1024px) {
    .carousel-item {
        flex: 0 0 calc(33.333% - 14px);
  display: flex;
  flex-direction: column;
  height: 100%;
}
}


@media (min-width: 768px) {
    .carousel-track {
        padding: 20px 0;
        scroll-padding-left: 0;
    }
    .carousel-item {
        flex: 0 0 calc(33.333% - 14px);
        scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  height: 100%;
}
}
@media (min-width: 576px) and (max-width: 767px) {
    .carousel-item {
        flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
}



@media (max-width: 991px) {
    
}

/* Team Hero Nodes & Animated Line */
@keyframes line-pulse {
    0% { top: 0; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { top: calc(100% - 30px); opacity: 0; }
}
.connecting-line-pulse {
    position: absolute;
    top: 0;
    left: -2px;
    width: 6px;
    height: 30px;
    border-radius: 4px;
    background: var(--secondary-teal);
    box-shadow: 0 0 15px 3px var(--secondary-teal);
    animation: line-pulse 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.team-hero-node {
    isolation: isolate;
    transition: all 0.3s ease;
}
.team-hero-node:hover {
    transform: translateX(10px) !important;
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.3) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3) !important;
    z-index: 10;
}
@media (max-width: 991px) {
    .team-hero-node:hover {
        transform: translateY(-5px) !important;
    }
}

/* ==========================================================================
   Vertical Hierarchy Tree (Highly Scalable)
   ========================================================================== */
.team-tree-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}
.tree-spine {
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 40px;
    width: 4px;
    background: linear-gradient(to bottom, var(--secondary-teal), var(--primary-blue), transparent);
    border-radius: 2px;
    opacity: 0.3;
}
.tree-level {
    position: relative;
    padding-left: 100px; /* Space from left edge past the spine */
    margin-bottom: 70px;
}
.tree-level:last-child {
    margin-bottom: 0;
}
.tree-node {
    position: absolute;
    top: 0;
    left: 32px; /* 40px (spine) - 10px (half node width) + 2px (half spine) = 32px */
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--secondary-teal);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.15);
    transition: all 0.3s ease;
}
.tree-level:hover .tree-node {
    background: var(--secondary-teal);
    box-shadow: 0 0 0 8px rgba(20, 184, 166, 0.25);
    transform: scale(1.2);
}
.tree-level::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 52px; /* Edge of the node */
    width: 38px; /* Connects to the 100px padding */
    height: 2px;
    background: var(--secondary-teal);
    opacity: 0.4;
}
.tree-level-header {
    margin-bottom: 30px;
}
.tree-level-tag {
    display: inline-block;
    background: rgba(10, 91, 153, 0.1);
    color: var(--primary-blue);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.tree-level-title {
    font-size: 2rem;
    color: var(--text-heading);
    margin: 0;
    line-height: 1.2;
}
.tree-level-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.tree-level-cards > * {
    flex: 1 1 300px;
    max-width: calc(300px + 100px); /* Provides a reasonable max-width to prevent massive stretching */
}

/* Tree Cards Styling */
.tree-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.tree-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(20, 184, 166, 0.3);
}
.tree-card-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.tree-card-img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--bg-soft-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: var(--shadow-sm);
}
.tree-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tree-card-info h4 {
    margin: 0 0 5px;
    font-size: 1.15rem;
    color: var(--text-heading);
}
.tree-card-info .role {
    margin: 0;
    font-size: 0.85rem;
    color: var(--secondary-teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tree-card-desc {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 20px;
}
.tree-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tree-card-tag {
    font-size: 0.75rem;
    background: rgba(10, 91, 153, 0.05);
    color: var(--primary-blue);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .team-tree-container {
        padding-left: 10px;
    }
    .tree-spine {
        left: 20px;
    }
    .tree-level {
        padding-left: 60px;
        margin-bottom: 50px;
    }
    .tree-node {
        left: 12px;
    }
    .tree-level::before {
        left: 32px;
        width: 18px;
    }
    .tree-level-title {
        font-size: 1.5rem;
    }
    .tree-level-cards {
        grid-template-columns: 1fr;
    }
}

.card-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 30px !important;
}
.card-grid > * {
    flex: 1 1 300px !important;
    max-width: 400px !important;
}

.philosophy-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 30px !important;
}
.philosophy-grid > * {
    flex: 1 1 300px !important;
    max-width: 400px !important;
}

.grid-auto-280 {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 30px !important;
}
.grid-auto-280 > * {
    flex: 1 1 280px !important;
    max-width: 380px !important;
}

.expertise-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 30px !important;
}
.expertise-grid > * {
    flex: 1 1 250px !important;
    max-width: 350px !important;
}

.trust-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 15px !important;
}
.trust-grid > * {
    flex: 1 1 180px !important;
    max-width: 250px !important;
}

.trust-cards {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
}
.trust-cards > * {
    flex: 1 1 200px !important;
    max-width: 300px !important;
}

.mission-vision {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 30px !important;
}
.mission-vision > * {
    flex: 1 1 300px !important;
    max-width: 400px !important;
}

.cs-gallery-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
}
.cs-gallery-grid > * {
    flex: 1 1 200px !important;
    max-width: 300px !important;
}

/* Hero Buttons Wrapper */
.hero-btn-wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
@media (max-width: 991px) {
    .hero-btn-wrap {
        justify-content: center !important;
    }
}


/* ==========================================================================
   Navigation Dropdown
   ========================================================================== */
.nav-dropdown {
    position: relative;
    display: inline-block;
}
.nav-arrow {
    font-size: 0.75rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}
@media (min-width: 992px) { .nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
} }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: white;
    min-width: 250px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 10px 0;
    z-index: 1000;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    color: var(--text-main) !important;
    padding: 10px 25px !important;
    font-size: 0.95rem !important;
    text-transform: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: block;
    white-space: nowrap;
}
.dropdown-menu a:hover {
    color: var(--primary-blue) !important;
    background: rgba(10, 91, 153, 0.05) !important;
    padding-left: 30px !important;
}
.dropdown-menu a.active {
    color: var(--secondary-teal) !important;
    background: rgba(20, 184, 166, 0.05) !important;
    font-weight: 600;
}

/* Mobile Dropdown Fix & Nav Links Alignment */
@media (max-width: 1200px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 5px;
        padding: 100px 30px 40px !important;
        background: white !important;
    }
    .nav-links a {
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        color: var(--text-heading) !important;
        width: 100%;
        display: block;
        padding: 12px 0 !important;
    }
    .nav-dropdown {
        width: 100%;
        display: block;
        text-align: left !important;
    }
    .nav-arrow {
        float: right;
        margin-top: 5px;
        pointer-events: auto; padding: 10px; margin-right: -10px; margin-top: -2px;
    }
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 0;
        visibility: hidden;
        display: none !important;
        box-shadow: none;
        border: none;
        background: var(--bg-soft-gray) !important;
        padding: 5px 0 10px 0;
        min-width: 100%;
        margin-top: 5px;
        border-radius: 10px !important;
    }
    .nav-dropdown.mobile-dropdown-open .dropdown-menu {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        flex-direction: column;
    }
    .dropdown-menu a {
        font-size: 1rem !important;
        padding: 10px 20px !important;
        border-bottom: 1px solid rgba(0,0,0,0.03);
    }
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    .dropdown-menu a:hover {
        padding-left: 25px !important;
    }
    .btn-nav-consult {
        max-width: 100% !important;
        width: 100% !important;
        padding: 15px !important;
        border-radius: 10px !important;
        font-size: 1.1rem !important;
        margin-top: 20px !important;
        text-align: center !important;
        margin-left: 0 !important;
        white-space: normal !important;
    }
}

/* Desktop Navbar Scaling Fix (1200px - 1400px) */
@media (min-width: 1201px) and (max-width: 1400px) {
  .logo {
    font-size: 1.1rem;
    gap: 5px;
  }
  .logo img {
    height: 35px;
  }
  .nav-links {
    gap: 12px !important;
  }
  .nav-links a {
    font-size: 0.9rem;
  }
  .nav-links .btn-primary {
    padding: 8px 14px !important;
    font-size: 0.85rem !important;
  }
  .btn-nav-consult {
    margin-left: 0 !important;
  }
}
/* Extracted Inline Styles */
.section-gradient { position: relative; padding: 180px 0 120px; background: linear-gradient(135deg, var(--primary-blue-dark), #0f172a); overflow: hidden; }
.box-glow-primary-circle { position: absolute; bottom: -50%; right: -10%; width: 600px; height: 600px; background: var(--primary-blue); filter: blur(150px); opacity: 0.3; border-radius: 50%; }
.box-relative { position: relative; z-index: 2; }
.u-text-teal { color: var(--secondary-teal); }

.u-flex-items-center-gap-15px { display: flex; align-items: center; gap: 15px; }
.box-secondary-rounded-white { width: 45px; height: 45px; background: var(--secondary-teal); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; }
.title-small { color: white; margin: 0; font-size: 1.1rem; }
.text-small-small { color: #94a3b8; margin: 0; font-size: 0.9rem; }
.box-primary-rounded-white { width: 45px; height: 45px; background: var(--primary-blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; }
.box-rounded-white { width: 45px; height: 45px; background: #3b82f6; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; }
.section-white-bordered { background: white; border-bottom: 1px solid rgba(0,0,0,0.05); position: relative; margin-top: -40px; z-index: 10; }
.card-white-rounded-shadow-bordered { background: white; border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); padding: 50px; border: 1px solid rgba(0,0,0,0.04); display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; align-items: center; }
.u-flex-1-1-300px { flex: 1 1 300px; }
.title-section { font-size: 2rem; color: var(--primary-blue); margin-bottom: 15px; line-height: 1.3; }
.text-body { color: var(--text-main); line-height: 1.7; font-size: 1.05rem; margin-bottom: 0; }
.box-grid { flex: 2 1 500px; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 30px; }
.box-bordered-centered { text-align: center; border-left: 2px solid var(--secondary-teal); padding-left: 20px; }
.title-card { font-size: 3rem; color: var(--primary-blue); margin: 0; line-height: 1; }
.text-small-small-2 { color: var(--text-light); font-weight: 600; margin: 10px 0 0; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
.box-bordered-centered-2 { text-align: center; border-left: 2px solid var(--primary-blue); padding-left: 20px; }
.u-mb-15px { margin-bottom: 15px; }
.u-mb-50px { margin-bottom: 50px; }
.u-flex-justify-center-gap-20px-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.img { height: 60px; width: 60; font-size: 1.5rem; }
.img-2 { height: 60px; font-size: 1.5rem; }
.u-items-center { align-items: center; }
.text-body-small { color: var(--secondary-teal); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; display: block; margin-bottom: 10px; }
.text-body-2 { color: var(--text-main); font-size: 1.15rem; line-height: 1.8; margin-bottom: 30px; }
.box-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; }
.u-flex-items-flex-start-gap-15px { display: flex; align-items: flex-start; gap: 15px; }
.icon { font-size: 1.5rem; margin-top: 5px; }
.title-small-2 { color: var(--primary-blue); font-size: 1.1rem; margin-bottom: 5px; }
.text-small-small-3 { color: var(--text-main); font-size: 0.95rem; line-height: 1.5; margin: 0; }
.u-position-relative { position: relative; }
.card-gradient-rounded-shadow-bordered { background: linear-gradient(135deg, var(--bg-soft-gray), #e2e8f0); border-radius: 30px; padding: 50px; position: relative; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); box-shadow: var(--shadow-premium); }
.icon-absolute-huge { font-size: 15rem; color: var(--primary-blue); opacity: 0.03; position: absolute; right: -20px; bottom: -20px; }
.title-card-2 { font-size: 1.8rem; color: var(--primary-blue); margin-bottom: 20px; position: relative; z-index: 1; }
.text-body-3 { color: var(--text-main); font-size: 1.05rem; line-height: 1.7; position: relative; z-index: 1; }
.btn-2 { margin-top: 20px; display: inline-block; position: relative; z-index: 1; }
.section-gradient-white { background: linear-gradient(135deg, #0f172a, var(--primary-blue-dark)); color: white; position: relative; overflow: hidden; }
.box-glow-secondary-circle { position: absolute; top: -30%; left: -10%; width: 500px; height: 500px; background: var(--secondary-teal); filter: blur(120px); opacity: 0.2; border-radius: 50%; }
.box-glow-circle { position: absolute; bottom: -30%; right: -10%; width: 500px; height: 500px; background: #3b82f6; filter: blur(120px); opacity: 0.2; border-radius: 50%; }
.box-centered { position: relative; z-index: 1; text-align: center; max-width: 900px; }
.icon-huge { font-size: 3rem; color: var(--secondary-teal); opacity: 0.5; margin-bottom: 30px; display: block; }
.title-section-2 { font-size: 3rem; margin-bottom: 30px; line-height: 1.3; font-weight: 700; color: white; }
.text-body-4 { font-size: 1.3rem; color: #cbd5e1; line-height: 1.8; margin-bottom: 0; font-weight: 300; }
.u-mb-60px { margin-bottom: 60px; }
.u-flex-column-gap-40px { display: flex; flex-direction: column; gap: 40px; }
.card-white-rounded-shadow-bordered-2 { background: white; border-radius: 24px; box-shadow: var(--shadow-premium); overflow: hidden; display: flex; flex-wrap: wrap; border: 1px solid rgba(0,0,0,0.05); }
.card-gradient-bordered { flex: 1 1 400px; padding: 50px; background: linear-gradient(135deg, var(--bg-white), var(--bg-soft-gray)); border-right: 1px solid rgba(0,0,0,0.05); position: relative; }
.badge-rounded-shadow-white-small { display: inline-block; background: var(--teal-gradient); color: white; padding: 5px 15px; border-radius: 20px; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; box-shadow: 0 4px 10px rgba(20, 184, 166, 0.3); }
.title-card-3 { font-size: 2.2rem; color: var(--primary-blue); margin-bottom: 20px; line-height: 1.2; }
.text-body-5 { color: var(--text-main); font-size: 1.1rem; line-height: 1.7; margin-bottom: 30px; }
.u-ml-8px { margin-left: 8px; }
.card { flex: 1 1 300px; padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.title-small-3 { color: var(--primary-blue); margin-bottom: 20px; font-size: 1.2rem; }
.box-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.u-p-40px { padding: 40px; }
.box-overlay-primary { background: rgba(10, 91, 153, 0.1); color: var(--primary-blue); width: 60px; height: 60px; font-size: 1.5rem; margin-bottom: 20px; }
.title-card-4 { font-size: 1.5rem; margin-bottom: 15px; }
.text-body-6 { color: var(--text-main); line-height: 1.6; margin-bottom: 25px; }
.u-flex-gap-10px-wrap-mb-25px { display: flex; gap: 10px; margin-bottom: 25px; flex-wrap: wrap; }
.btn-centered { width: 100%; text-align: center; }
.card-2 { padding: 40px; transition-delay: 100ms; }
.box-overlay-secondary { background: rgba(20, 184, 166, 0.1); color: var(--secondary-teal); width: 60px; height: 60px; font-size: 1.5rem; margin-bottom: 20px; }
.card-3 { padding: 40px; transition-delay: 200ms; }
.u-mt-50px { margin-top: 50px; }
.u-items-stretch { align-items: stretch; }
.box { flex: 1 1 400px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; }
.card-absolute-circle-shadow-white { position: absolute; top: 20px; left: 20px; width: 80px; height: 80px; border-radius: 50%; background: var(--teal-gradient); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; box-shadow: var(--shadow-md); z-index: 2; }
.img-rounded { width: 100%; max-width: 400px; margin: 0 auto; display: block; border-radius: 20px; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15)); z-index: 1; position: relative; object-fit: cover; }
.card-absolute-white-rounded-shadow-bordered { position: absolute; bottom: 30px; right: 20px; background: white; padding: 12px 20px; border-radius: 12px; box-shadow: var(--shadow-premium); z-index: 3; display: flex; flex-direction: column; align-items: flex-start; border: 1px solid rgba(0,0,0,0.05); }
.text-body-7 { color: var(--primary-blue); font-weight: 700; font-size: 1.1rem; margin-bottom: 2px; }
.text-body-small-2 { color: var(--secondary-teal); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.card-4 { flex: 1 1 500px; padding: 40px 0 40px 40px; display: flex; flex-direction: column; justify-content: center; }
.title-section-3 { margin-bottom: 25px; font-size: 2.5rem; }
.box-bordered { border-left: 4px solid var(--secondary-teal); padding-left: 25px; margin-bottom: 30px; }
.text-body-8 { font-size: 1.2rem; color: var(--primary-blue); font-style: italic; line-height: 1.7; font-weight: 500; margin: 0; }
.text-body-9 { color: var(--text-main); font-size: 1.05rem; line-height: 1.8; margin-bottom: 30px; }
.u-flex-gap-20px-wrap-mb-40px { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.card-rounded-bordered { background: var(--bg-gray); padding: 10px 20px; border-radius: 8px; border: 1px solid rgba(0,0,0,0.05); }
.text-body-10 { display: block; font-weight: 700; color: var(--primary-blue); font-size: 1.2rem; }
.text-body-small-3 { color: var(--text-light); font-size: 0.85rem; text-transform: uppercase; }
.u-w-fit-content { width: fit-content; }
.section-bordered { border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); }
.text-body-small-4 { font-size: 0.85rem; font-weight: 700; color: var(--secondary-teal); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 5px; }
.title-small-4 { color: var(--primary-blue); margin-bottom: 10px; font-size: 1.25rem; }
.text-body-11 { color: var(--text-main); font-size: 1rem; line-height: 1.6; }
.u-mb-40px { margin-bottom: 40px; }
.card-relative { padding: 30px; position: relative; }
.icon-absolute-large { font-size: 2rem; color: rgba(20, 184, 166, 0.2); position: absolute; top: 20px; right: 20px; }
.text-body-12 { color: var(--text-main); font-size: 1rem; line-height: 1.7; margin-bottom: 25px; font-style: italic; flex-grow: 1; }
.box-soft-circle-primary { width: 50px; height: 50px; background: var(--bg-soft-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--primary-blue); }
.title-small-5 { margin: 0; font-size: 1rem; color: var(--text-heading); }
.text-small-small-4 { margin: 0; font-size: 0.85rem; color: var(--text-light); }
.box-relative-2 { position: relative; z-index: 1; }
.u-gap-50px-mb-50px { gap: 50px; margin-bottom: 50px; }
.text-body-flex { color: #94A3B8; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.text-body-flex-2 { color: #94A3B8; margin-bottom: 25px; display: flex; align-items: center; gap: 10px; }
.box-centered-2 { text-align: center; width: 100%; }
.box-centered-3 { position: relative; z-index: 2; text-align: center; }
.u-text-center { text-align: center; }
.text-body-centered { text-align: center; margin-left: auto; margin-right: auto; }
.u-flex-justify-center-gap-30px-wrap-mt-50px { display: flex; justify-content: center; gap: 30px; margin-top: 50px; flex-wrap: wrap; }
.card-overlay-rounded-shadow-bordered { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 25px 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.title-card-5 { color: var(--secondary-teal); font-size: 2.8rem; margin-bottom: 5px; }
.text-small-small-5 { color: #cbd5e1; margin: 0; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
.title-card-6 { color: var(--primary-blue); font-size: 2.8rem; margin-bottom: 5px; }
.box-2 { flex: 1 1 400px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.img-rounded-2 { width: 100%; max-width: 400px; margin: 0 auto; display: block; border-radius: 20px; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15)); position: relative; object-fit: cover; }
.box-3 { flex: 1 1 500px; padding-left: 20px; display: flex; flex-direction: column; justify-content: center; }
.text-body-13 { max-width: 800px; margin: 0 auto; }
.icon-huge-2 { font-size: 3rem; margin-bottom: 25px; opacity: 0.8; }
.text-body-14 { font-size: 1.2rem; color: var(--text-heading); line-height: 1.8; font-weight: 500; margin-bottom: 20px; }
.text-body-15 { font-size: 1.1rem; color: var(--text-main); line-height: 1.8; }
.box-overlay-rounded-secondary { width: 50px; height: 50px; background: rgba(20, 184, 166, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--secondary-teal); font-size: 1.5rem; margin-bottom: 20px; }
.title-card-7 { font-size: 1.3rem; margin-bottom: 15px; color: var(--primary-blue); }
.text-body-16 { color: var(--text-main); line-height: 1.6; margin: 0; }
.box-overlay-rounded-primary { width: 50px; height: 50px; background: rgba(10, 91, 153, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary-blue); font-size: 1.5rem; margin-bottom: 20px; }
.title-card-8 { color: var(--text-heading); font-size: 1.5rem; margin-bottom: 25px; }
.icon-2 { color: #94a3b8; margin-right: 10px; }
.u-m-0 { margin: 0; }
.u-text-gray { color: #94a3b8; }
.title-card-9 { color: white; font-size: 1.5rem; margin-bottom: 25px; }
.u-mr-10px { margin-right: 10px; }
.u-text-white { color: white; }
.section-primary-bordered-white { background: var(--primary-blue-dark); color: white; border-top: 4px solid var(--secondary-teal); position: relative; overflow: hidden; }
.title-card-10 { font-size: 3.5rem; margin: 0; line-height: 1; color: white; }
.text-small-small-6 { color: var(--secondary-teal); font-weight: 600; margin: 15px 0 0; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.box-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.icon-large { font-size: 2.5rem; color: var(--secondary-teal); margin-bottom: 20px; }
.title-card-11 { font-size: 1.4rem; color: var(--primary-blue); margin-bottom: 15px; }
.u-delay-100ms { transition-delay: 100ms; }
.icon-large-2 { font-size: 2.5rem; color: var(--primary-blue); margin-bottom: 20px; }
.u-delay-200ms { transition-delay: 200ms; }
.u-delay-300ms { transition-delay: 300ms; }
.u-mb-20px { margin-bottom: 20px; }
.text-body-17 { color: var(--text-main); font-size: 1.15rem; line-height: 1.8; margin-bottom: 25px; }
.u-flex-gap-15px-wrap-mb-30px { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 30px; }
.u-border-color-rgba-0-0-0-0-1 { border-color: rgba(0,0,0,0.1); }
.card-white-bordered-centered { background: white; border-color: rgba(0,0,0,0.05); text-align: center; padding: 50px; }
.icon-huge-3 { font-size: 4rem; color: var(--primary-blue); margin-bottom: 20px; opacity: 0.8; }
.title-card-12 { color: var(--primary-blue); margin-bottom: 15px; }
.text-body-18 { color: var(--text-main); line-height: 1.7; }
.card-centered { padding: 30px; text-align: center; }
.title-small-6 { font-size: 1.2rem; color: var(--text-heading); margin-bottom: 15px; }
.text-small-small-7 { color: var(--text-main); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.btn-3 { padding: 18px 45px; font-size: 1.15rem; }
.u-ml-10px { margin-left: 10px; }
.box-glow-primary-circle-2 { position: absolute; bottom: -50%; right: -10%; width: 500px; height: 500px; background: var(--primary-blue); filter: blur(150px); opacity: 0.2; border-radius: 50%; }
.u-flex-items-center-gap-15px-mb-20px { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.box-overlay-circle-secondary { width: 50px; height: 50px; background: rgba(20, 184, 166, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--secondary-teal); font-size: 1.5rem; }
.title-small-7 { color: white; margin: 0; font-size: 1.2rem; }
.text-small-small-8 { color: #cbd5e1; margin: 0; font-size: 0.9rem; }
.text-body-19 { color: #e2e8f0; font-size: 1rem; line-height: 1.6; margin-bottom: 0; }
.u-border-b-1px-solid-rgba-0-0-0-0-05 { border-bottom: 1px solid rgba(0,0,0,0.05); }
.box-centered-4 { max-width: 900px; margin: 0 auto; text-align: center; }
.text-body-20 { font-size: 1.15rem; color: var(--text-main); line-height: 1.8; margin-bottom: 30px; }
.text-body-21 { font-size: 1.15rem; color: var(--text-main); line-height: 1.8; }
.card-white-rounded-shadow-bordered-3 { background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-premium); display: flex; flex-wrap: wrap; border: 1px solid rgba(0,0,0,0.05); }
.card-gradient-white { flex: 1 1 400px; background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue)); padding: 60px 40px; color: white; display: flex; flex-direction: column; justify-content: center; position: relative; }
.icon-absolute-huge-2 { font-size: 10rem; position: absolute; right: -20px; bottom: -20px; opacity: 0.1; }
.img-absolute { width: 120px; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15)); position: absolute; right: 15px; top: 15px; z-index:0 ; }
.badge-overlay-rounded-shadow-bordered-white-small { display: inline-block; background: rgba(255, 255, 255, 0.15); color: #ffffff; padding: 6px 15px; border-radius: 20px; font-weight: 600; font-size: 0.85rem; margin-bottom: 20px; width: fit-content; border: 1px solid rgba(255, 255, 255, 0.3); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.title-card-13 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; color: #ffffff; text-shadow: 0 2px 4px rgba(0,0,0,0.1); z-index: 1; }
.text-body-22 { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 0; line-height: 1.7; position: relative; z-index: 1; }
.card-5 { flex: 1 1 400px; padding: 60px 40px; display: flex; flex-direction: column; justify-content: center; }
.title-small-8 { color: var(--primary-blue); font-size: 1.3rem; margin-bottom: 20px; }
.u-mb-30px { margin-bottom: 30px; }
.box-bordered-2 { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; border-bottom: 2px solid var(--gray-light); padding-bottom: 15px; }
.icon-3 { font-size: 1.8rem; }
.title-card-14 { color: var(--primary-blue); font-size: 1.8rem; margin: 0; }
.box-5 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card-6 { padding: 40px 30px; display: flex; flex-direction: column; height: 100%; }
.title-small-9 { font-size: 1.3rem; margin-bottom: 15px; color: var(--text-heading); }
.text-body-23 { color: var(--text-main); line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.badge-white-rounded-shadow-bordered-primary-small { font-size: 0.85rem; background: #ffffff; padding: 6px 14px; border-radius: 20px; color: var(--primary-blue); font-weight: 600; border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 3px 6px rgba(0,0,0,0.04); }
.title-small-10 { color: var(--primary-blue); margin-bottom: 5px; }
.text-small-small-9 { color: var(--text-main); font-size: 0.95rem; }
.box-absolute { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 30px 30px; opacity: 0.2; }
.box-centered-5 { flex: 1 1 550px; max-width: 700px; text-align: center; }
.u-justify-center { justify-content: center; }
.box-overlay-rounded-secondary-2 { width: 50px; height: 50px; background: rgba(20, 184, 166, 0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--secondary-teal); font-size: 1.5rem; }
.text-body-24 { color: var(--text-main); font-size: 1.1rem; line-height: 1.8; margin-bottom: 25px; }
.card-white-bordered { background: white; border-color: rgba(0,0,0,0.05); padding: 40px; }
.title-card-15 { color: var(--primary-blue); margin-bottom: 15px; font-size: 1.5rem; }
.text-body-25 { color: var(--text-main); line-height: 1.8; font-size: 1.05rem; }
.card-gradient-white-2 { flex: 1 1 450px; background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue)); padding: 60px 40px; color: white; display: flex; flex-direction: column; justify-content: center; position: relative; }
.title-card-16 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; color: #ffffff; text-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.card-7 { flex: 1 1 350px; padding: 60px 40px; display: flex; flex-direction: column; justify-content: center; }
.box-6 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.u-text-red { color: #ef4444; }
.box-overlay-bordered { background: rgba(10, 91, 153, 0.03); border-color: rgba(10, 91, 153, 0.1); }
.card-overlay-rounded-shadow-bordered-2 { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; overflow: hidden; backdrop-filter: blur(10px); box-shadow: 0 25px 50px rgba(0,0,0,0.3); }
.box-7 { height: 220px; overflow: hidden; position: relative; }
.img-3 { width: 100%; height: 100%; object-fit: cover; }
.badge-absolute-secondary-rounded-shadow-white-small { position: absolute; top: 20px; right: 20px; background: var(--secondary-teal); color: white; padding: 6px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.u-p-30px { padding: 30px; }
.title-small-11 { color: white; font-size: 1.4rem; margin-bottom: 10px; }
.text-small-small-10 { color: #cbd5e1; font-size: 0.95rem; margin-bottom: 25px; }
.u-w-full { width: 100%; }
.section-relative-soft { background: var(--bg-soft-gray); position: relative; }
.card-white-rounded-shadow-bordered-4 { background: white; padding: 50px; border-radius: 24px; box-shadow: var(--shadow-premium); border: 1px solid rgba(0,0,0,0.05); margin-top: -40px; position: relative; z-index: 10; }
.card-centered-2 { text-align: center; padding: 20px; }
.title-card-17 { font-size: 3.5rem; margin: 0; line-height: 1; color: var(--primary-blue); }
.text-small-small-11 { color: var(--text-light); font-weight: 600; margin: 15px 0 0; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
.card-8 { display: flex; flex-wrap: wrap; padding: 0; }
.box-8 { flex: 1 1 45%; min-width: 300px; position: relative; overflow: hidden; }
.box-absolute-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(15, 23, 42, 0.4), transparent); z-index: 1; }
.img-4 { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.badge-absolute-overlay-rounded-bordered-white-small { position: absolute; top: 20px; left: 20px; z-index: 2; background: rgba(15, 23, 42, 0.75); color: white; padding: 6px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.1); }
.card-9 { flex: 1 1 55%; padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.badge-overlay-rounded-secondary-small { display: inline-block; background: rgba(20, 184, 166, 0.1); color: var(--secondary-teal); padding: 6px 14px; border-radius: 20px; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; width: fit-content; }
.title-card-18 { font-size: 2rem; color: var(--primary-blue); margin-bottom: 15px; line-height: 1.2; }
.box-small { display: flex; gap: 15px; margin-bottom: 25px; color: var(--text-light); font-size: 0.95rem; }
.text-body-26 { color: var(--text-main); line-height: 1.7; font-size: 1.05rem; margin-bottom: 15px; }
.text-body-27 { color: var(--text-main); line-height: 1.7; font-size: 1.05rem; margin-bottom: 25px; }
.text-body-28 { color: var(--primary-blue); display: block; margin-bottom: 10px; }
.u-flex-gap-10px-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.card-soft-rounded-bordered { background: var(--bg-soft-gray); padding: 20px; border-radius: 12px; border-left: 4px solid var(--secondary-teal); margin-bottom: 30px; }
.text-small-small-12 { color: var(--text-heading); font-weight: 600; margin: 0; line-height: 1.6; font-size: 0.95rem; }
.u-flex-gap-15px-wrap { display: flex; gap: 15px; flex-wrap: wrap; }
.badge-overlay-rounded-primary-small { display: inline-block; background: rgba(10, 91, 153, 0.1); color: var(--primary-blue); padding: 6px 14px; border-radius: 20px; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; width: fit-content; }
.card-soft-rounded-bordered-2 { background: var(--bg-soft-gray); padding: 20px; border-radius: 12px; border-left: 4px solid var(--primary-blue); margin-bottom: 30px; }
.box-absolute-gradient-2 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to left, rgba(15, 23, 42, 0.4), transparent); z-index: 1; }
.badge-absolute-overlay-rounded-bordered-white-small-2 { position: absolute; top: 20px; right: 20px; z-index: 2; background: rgba(15, 23, 42, 0.75); color: white; padding: 6px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.1); }
.u-flex-1 { flex: 1; }
.btn-centered-2 { flex: 1; text-align: center; }
.text-body-29 { font-size: 1rem; color: var(--secondary-teal); display: block; margin-bottom: 10px; }
.u-bg-var-secondary-teal { background: var(--secondary-teal); }
.u-bg-var-primary-blue-dark { background: var(--primary-blue-dark); }
.box-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.title-card-19 { color: var(--primary-blue); font-size: 1.3rem; margin-bottom: 10px; }
.text-small-small-13 { color: var(--text-main); font-size: 0.95rem; margin-bottom: 15px; }
.badge-soft-rounded-small { font-size: 0.85rem; font-weight: 700; color: var(--text-light); background: var(--bg-soft-gray); padding: 4px 12px; border-radius: 20px; }
.card-overlay-bordered-centered { background: rgba(10, 91, 153, 0.03); border-color: rgba(10, 91, 153, 0.1); padding: 50px; text-align: center; }
.title-card-20 { color: var(--primary-blue); margin-bottom: 15px; font-size: 1.6rem; }
.box-9 { position: relative; padding-left: 10px; max-width: 450px; margin: 0 auto; }
.box-absolute-overlay-rounded { position: absolute; top: 40px; bottom: 40px; left: 59px; width: 2px; background: rgba(255,255,255,0.1); z-index: 0; border-radius: 2px; }
.box-10 { display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 1; }
.card-overlay-rounded-shadow-bordered-3 { display: flex; align-items: center; gap: 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 15px 25px; border-radius: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.card-secondary-circle-shadow-white { width: 50px; height: 50px; background: var(--secondary-teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; flex-shrink: 0; box-shadow: 0 0 15px rgba(20, 184, 166, 0.4); position: relative; z-index: 2; }
.text-small-small-14 { color: #cbd5e1; margin: 0; font-size: 0.85rem; }
.card-circle-shadow-white { width: 50px; height: 50px; background: #3b82f6; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; flex-shrink: 0; box-shadow: 0 0 15px rgba(59, 130, 246, 0.4); position: relative; z-index: 2; }
.card-primary-circle-shadow-white { width: 50px; height: 50px; background: var(--primary-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; flex-shrink: 0; box-shadow: 0 0 15px rgba(10, 91, 153, 0.4); position: relative; z-index: 2; }
.box-overlay-secondary-2 { background: rgba(20, 184, 166, 0.1); color: var(--secondary-teal); }
.text-small-small-15 { font-size: 0.95rem; color: var(--text-light); margin-bottom: 15px; }
.u-flex-gap-8px-wrap { display: flex; gap: 8px; flex-wrap: wrap; }
.badge-soft-rounded-small-2 { font-size: 0.8rem; background: var(--bg-soft-gray); padding: 4px 10px; border-radius: 4px; color: var(--text-light); font-weight: 500; }
.box-overlay-primary-2 { background: rgba(10, 91, 153, 0.1); color: var(--primary-blue); }
.text-body-30 { color: var(--text-light); margin-bottom: 25px; font-size: 1.1rem; }
.u-text-var-text-light { color: var(--text-light); }
.u-mb-8px { margin-bottom: 8px; }
.text-small-small-16 { font-size: 0.95rem; color: var(--text-light); }
.card-overlay-rounded-shadow-bordered-centered { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 40px 30px; backdrop-filter: blur(15px); text-align: center; box-shadow: 0 25px 50px rgba(0,0,0,0.3); }
.card-secondary-circle-shadow-white-large { width: 80px; height: 80px; background: var(--secondary-teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 2.5rem; margin: 0 auto 20px; box-shadow: 0 10px 25px rgba(20, 184, 166, 0.4); }
.title-card-21 { color: white; font-size: 1.6rem; margin-bottom: 12px; }
.text-body-31 { color: #cbd5e1; font-size: 1.05rem; margin-bottom: 30px; }
.u-flex-items-center-justify-center-gap-15px-mt-25px { margin-top: 25px; display: flex; align-items: center; justify-content: center; gap: 15px; }
.box-overlay { height: 1px; background: rgba(255,255,255,0.2); flex-grow: 1; }
.text-body-small-5 { color: #94a3b8; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; }
.btn-4 { width: 100%; margin-top: 25px; }
.title-small-12 { font-size: 1.3rem; margin-bottom: 15px; }
.u-delay-400ms { transition-delay: 400ms; }
.u-delay-500ms { transition-delay: 500ms; }
.icon-4 { font-size: 1rem; margin-right: 8px; margin-bottom: 0; }
.text-body-32 { color: var(--text-light); margin-bottom: 20px; }
.box-grid-5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; text-align: left; }
.card-bordered-centered { padding: 30px; text-align: center; border-top: 4px solid var(--primary-blue); }
.icon-large-3 { font-size: 2rem; color: var(--secondary-teal); margin-bottom: 15px; }
.u-mb-10px { margin-bottom: 10px; }
.text-small-small-17 { color: var(--text-light); font-size: 0.95rem; margin: 0; }
.u-pt-0 { padding-top: 0; }
.card-rounded-shadow-bordered { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-premium); border: 1px solid rgba(0,0,0,0.05); height: 450px; }
.u-border-0 { border:0; }
.text-body-33 { color: var(--text-light); margin-bottom: 40px; font-size: 1.1rem; }
.title-card-22 { margin-bottom: 25px; font-size: 1.6rem; }
.u-display-none { display:none; }
.btn-rounded { width: 100%; font-size: 1.1rem; padding: 15px; border-radius: var(--radius-btn); }
.card-rounded-centered { display: none; padding: 15px; margin-top: 15px; border-radius: 8px; font-weight: 600; text-align: center; }
.text-small-small-centered { text-align: center; font-size: 0.85rem; color: var(--text-light); margin-top: 15px; }
.u-mr-5px { margin-right: 5px; }
.text-body-34 { margin-top: 10px; font-size: 1.05rem; line-height: 1.7; color: var(--text-main); }
.box-centered-6 { position: relative; z-index: 1; text-align: center; }
.u-grid-items-center-gap-60px { display: grid; gap: 60px; align-items: center; }
.title-section-4 { font-size: 2.8rem; margin-bottom: 25px; }
.text-body-35 { font-size: 1.15rem; color: var(--text-main); margin-bottom: 20px; line-height: 1.8; }
.card-gradient-rounded-shadow-bordered-2 { width: 100%; height: 380px; background: linear-gradient(135deg, #f8fafc, #e2e8f0); border-radius: 30px; box-shadow: var(--shadow-premium); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); }
.icon-absolute-huge-3 { opacity: 0.05; position: absolute; right: -30px; bottom: -30px; font-size: 16rem; }
.img-5 { width: 250px; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15)); position: relative; top: 30px; z-index: 2; }
.card-absolute-white-rounded-shadow-primary-small { position: absolute; top: 20px; left: 20px; background: white; padding: 10px 20px; border-radius: 20px; font-weight: 700; color: var(--primary-blue); box-shadow: var(--shadow-sm); font-size: 0.85rem; display: flex; align-items: center; gap: 8px; }
.text-body-36 { max-width: 850px; margin: 20px auto 0; font-size: 1.15rem; color: var(--text-main); line-height: 1.8; }
.card-white-rounded-shadow-bordered-5 { max-width: 900px; margin: 0 auto; padding: 40px; background: white; box-shadow: var(--shadow-sm); border-left: 4px solid var(--secondary-teal); border-radius: 0 15px 15px 0; }
.text-body-37 { font-size: 1.15rem; color: var(--text-main); line-height: 1.8; margin: 0; }
.box-centered-7 { max-width: 850px; margin: 0 auto; text-align: center; }
.text-body-38 { font-size: 1.2rem; color: var(--text-heading); line-height: 1.8; margin-bottom: 40px; font-weight: 500; }
.btn-rounded-bordered-white { background: transparent; color: white; border-color: rgba(255,255,255,0.2); padding: 18px 45px; font-size: 1.15rem; border-radius: 50px; }
.img-6 { width: 200px; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15)); position: relative; top: 30px; z-index: 2; }
.img-7 { width: 280px; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15)); position: relative; top: 30px; z-index: 2; }
.title-main { font-size: 3.5rem; margin: 15px auto 20px; }
.img-8 { width: 160px; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15)); position: relative; z-index: 2; }
.box-absolute-2 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover; opacity: 0.15; mix-blend-mode: overlay; }
.box-11 { position: relative; z-index: 1; text-align: left; }
.title-main-2 { font-size: 3.5rem; margin: 15px 0 20px; max-width: 900px; line-height: 1.2; color: white; }
.text-body-39 { font-size: 1.25rem; max-width: 700px; margin: 20px 0 0; color: #f8fafc; font-weight: 500; }
.u-items-flex-start { align-items: flex-start; }
.u-flex-1-1-600px { flex: 1 1 600px; }
.title-section-5 { font-size: 2.2rem; margin-bottom: 20px; }
.text-body-40 { font-size: 1.1rem; color: var(--text-main); line-height: 1.8; margin-bottom: 40px; }
.card-overlay-rounded-bordered { background: rgba(239, 68, 68, 0.05); border-left: 4px solid #ef4444; padding: 30px; border-radius: 0 15px 15px 0; margin-bottom: 40px; }
.text-body-41 { font-size: 1.1rem; color: var(--text-main); line-height: 1.8; margin: 0; }
.text-body-42 { font-size: 1.1rem; color: var(--text-main); line-height: 1.8; margin-bottom: 50px; }
.text-body-43 { color: white; font-weight: 500; }
.title-card-23 { color: var(--primary-blue); font-size: 1.5rem; margin-bottom: 25px; }
.title-small-13 { color: var(--primary-blue); font-size: 1.1rem; margin-bottom: 8px; }
.text-small-small-18 { color: var(--text-main); margin: 0; line-height: 1.5; font-size: 0.95rem; }
.card-soft-rounded-bordered-3 { background: var(--bg-soft-gray); border-color: rgba(0,0,0,0.05); padding: 40px; border-radius: 24px; position: sticky; top: 120px; }
.u-flex-gap-12px-wrap-mb-40px { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.title-card-24 { color: var(--primary-blue); font-size: 1.5rem; margin-bottom: 20px; }
.text-small-small-19 { color: var(--text-main); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.6; }
.box-rounded { height: 300px; border-radius: 20px; overflow: hidden; position: relative; }
.u-bg-linear-gradient-to-top-rgba-15-23-42-0-6-transparent { background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent); }
.box-absolute-white { position: absolute; bottom: 20px; left: 20px; color: white; z-index: 2; font-weight: 600; font-size: 1.1rem; }
.u-mr-8px { margin-right: 8px; }
.box-absolute-3 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('https://images.unsplash.com/photo-1581594693702-fbdc51b2763b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover; opacity: 0.15; mix-blend-mode: overlay; }
.box-absolute-4 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover; opacity: 0.15; mix-blend-mode: overlay; }
