/* ==========================================================================
   AVHIAL INFRAPROJ PRIVATE LIMITED — Master Stylesheet
   Design Tokens:
   - Primary Blue: #0B4F9C
   - Dark Blue: #073B73
   - Accent Red: #E31E24
   - Light Blue: #EEF6FF
   - Dark Text: #172033
   - Gray Text: #667085
   - White: #FFFFFF
   ========================================================================== */

:root {
  --primary-blue: #0B4F9C;
  --dark-blue: #073B73;
  --accent-red: #E31E24;
  --accent-red-hover: #c41318;
  --light-blue: #EEF6FF;
  --dark-text: #172033;
  --gray-text: #667085;
  --light-gray: #F4F6F9;
  --border-color: #E2E8F0;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 4px rgba(7, 59, 115, 0.05);
  --shadow-md: 0 6px 16px rgba(7, 59, 115, 0.08);
  --shadow-lg: 0 12px 32px rgba(7, 59, 115, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a, button, input, select, textarea {
  touch-action: manipulation;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Noto Sans Oriya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Noto Sans Oriya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--dark-blue);
  font-weight: 700;
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-padding {
  padding: 5rem 0;
}

.bg-light-blue {
  background-color: var(--light-blue);
}

.bg-dark-blue {
  background-color: var(--dark-blue);
  color: var(--white);
}

.bg-gray {
  background-color: var(--light-gray);
}

.text-center { text-align: center; }
.text-red { color: var(--accent-red); }
.text-blue { color: var(--primary-blue); }

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  background-color: var(--light-blue);
  color: var(--primary-blue);
  border-left: 3px solid var(--primary-blue);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.badge-tag.badge-red {
  background-color: rgba(227, 30, 36, 0.08);
  color: var(--accent-red);
  border-left-color: var(--accent-red);
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-text);
  max-width: 680px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(227, 30, 36, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

.btn-secondary {
  background-color: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(11, 79, 156, 0.25);
}

.btn-secondary:hover {
  background-color: var(--dark-blue);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--dark-blue);
}

.btn-outline-blue {
  background-color: transparent;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline-blue:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #1eb956;
}

/* 4. Top Utility Bar */
.top-bar {
  background: linear-gradient(90deg, #073B73 0%, #0B4F9C 100%);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.825rem;
  padding: 0.4rem 0;
  border-bottom: 2px solid var(--accent-red);
  position: relative;
  z-index: 1000;
}

.top-bar-inner {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--accent-red);
  transform: scale(1.1);
}

.social-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Ticker marquee */
.ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
}

.ticker-move {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.ticker-item {
  display: inline-block;
  padding: 0 1rem;
  font-weight: 500;
  color: #E2E8F0;
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-contact-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.top-contact-item svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-red);
}

/* 5. Main Navigation Header */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 999;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}

.main-header.scrolled {
  height: 70px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, 0.99);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 0.75rem;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled .header-inner {
  height: 70px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo-img {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled .header-logo-img {
  height: 50px;
}

.brand-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--dark-blue);
  letter-spacing: -0.2px;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.68rem;
  color: var(--accent-red);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 1;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-text);
  padding: 0.4rem 0;
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  line-height: 1.3;
  transition: color 0.18s ease;
}

.nav-link .arrow {
  font-size: 0.75rem;
  color: var(--gray-text);
  transition: transform 0.2s ease;
}

.nav-dropdown-item:hover .arrow {
  transform: rotate(180deg);
  color: var(--primary-blue);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-red);
  transition: width 0.2s ease;
}

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

/* PWA Mobile/Tablet Only Navigation Link */
.pwa-mobile-only {
  display: none !important;
}

/* Dropdown Menu Styling */
.nav-dropdown-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-item > .nav-link {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background-color: var(--white);
  min-width: 250px;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(7, 59, 115, 0.18), 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(11, 79, 156, 0.12);
  padding: 0.65rem 0.5rem;
  opacity: 0;
  visibility: hidden;
  display: none;
  transform: translateY(10px);
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.22s;
  z-index: 1000;
  list-style: none;
}

/* Invisible hover bridge to prevent accidental closure */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 14px;
}

@media (min-width: 992px) {
  .nav-dropdown-item:hover .dropdown-menu,
  .nav-dropdown-item:focus-within .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.dropdown-menu li {
  margin-bottom: 2px;
}

.dropdown-menu li:last-child {
  margin-bottom: 0;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.95rem;
  font-size: 0.865rem;
  font-weight: 600;
  color: var(--dark-text);
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.dropdown-menu li a:hover {
  background-color: var(--light-blue);
  color: var(--primary-blue);
  transform: translateX(4px);
  padding-left: 1.15rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* Modern Header Language Toggle Switch Pill */
.lang-toggle-switch {
  display: inline-flex;
  align-items: center;
  background: #F1F5F9;
  padding: 3px;
  border-radius: var(--radius-full);
  border: 1px solid #CBD5E1;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
  user-select: none;
  gap: 2px;
  flex-shrink: 0;
}

.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0.68rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  line-height: 1.2;
}

.lang-toggle-btn:hover {
  color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.85);
}

.lang-toggle-btn.active {
  background: var(--primary-blue);
  color: #FFFFFF !important;
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(11, 79, 156, 0.28);
}

.call-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  background-color: var(--light-blue);
  color: var(--primary-blue);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.825rem;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
  line-height: 1.2;
}

.call-pill:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.call-pill:hover svg {
  fill: var(--white);
}

.call-pill svg {
  width: 15px;
  height: 15px;
  fill: var(--primary-blue);
  transition: fill 0.18s ease;
  flex-shrink: 0;
}

.header-actions .btn-primary {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: none;
}

.header-actions .btn-primary:hover {
  transform: none;
  background-color: var(--accent-red-hover);
}

.mobile-toggle {
  display: none;
  background: none;
  border: 2px solid var(--dark-blue);
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--dark-blue);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mobile-toggle:hover {
  background: var(--light-blue);
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

@media (max-width: 991px) {
  .mobile-toggle {
    display: inline-flex;
  }
}

/* 6. HERO SECTION */
.hero-section {
  position: relative;
  min-height: calc(100vh - 120px);
  background: linear-gradient(135deg, rgba(7, 59, 115, 0.88), rgba(11, 79, 156, 0.82)),
              url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  border-left: 4px solid var(--accent-red);
  color: var(--white);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(7, 59, 115, 0.35);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-call-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-call-link:hover {
  color: var(--accent-red);
}

/* Hero Enquiry Card Overlay */
.hero-card-wrap {
  position: relative;
}

.hero-form-card {
  background-color: var(--white);
  color: var(--dark-text);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border-top: 5px solid var(--accent-red);
}

.hero-form-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.25rem;
}

.hero-form-sub {
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
  background-color: #FAFAFA;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(11, 79, 156, 0.1);
}

/* 7. Quick Service Categories */
.quick-services-wrap {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  padding-bottom: 3rem;
}

.quick-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.quick-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.quick-card:nth-child(1):hover { background-color: #0B4F9C; border-color: #0B4F9C; }
.quick-card:nth-child(2):hover { background-color: #059669; border-color: #059669; }
.quick-card:nth-child(3):hover { background-color: #7C3AED; border-color: #7C3AED; }
.quick-card:nth-child(4):hover { background-color: #E31E24; border-color: #E31E24; }

.quick-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.quick-card:hover .quick-title,
.quick-card:hover .quick-desc,
.quick-card:hover .quick-link {
  color: var(--white) !important;
}

.quick-card:hover .quick-icon-box {
  background-color: rgba(255, 255, 255, 0.25) !important;
  color: var(--white) !important;
}

.quick-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--light-blue);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.quick-card:nth-child(4) .quick-icon-box {
  background-color: rgba(227, 30, 36, 0.1);
  color: var(--accent-red);
}

.quick-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.quick-desc {
  font-size: 0.875rem;
  color: var(--gray-text);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  transition: var(--transition);
}

.quick-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

/* 8. About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
}

.about-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-img-tall {
  grid-row: span 2;
  height: 100%;
}

.trust-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark-blue);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent-red);
}

.trust-badge-card strong {
  display: block;
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  color: var(--white);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(11, 79, 156, 0.1);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 9. Real Estate Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.service-card:nth-child(1):hover { background-color: #0B4F9C; border-color: #0B4F9C; }
.service-card:nth-child(2):hover { background-color: #E31E24; border-color: #E31E24; }
.service-card:nth-child(3):hover { background-color: #059669; border-color: #059669; }
.service-card:nth-child(4):hover { background-color: #EA580C; border-color: #EA580C; }
.service-card:nth-child(5):hover { background-color: #7C3AED; border-color: #7C3AED; }
.service-card:nth-child(6):hover { background-color: #0284C7; border-color: #0284C7; }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-title,
.service-card:hover .service-desc {
  color: var(--white) !important;
}

.service-card:hover .btn-outline-blue {
  border-color: var(--white) !important;
  color: var(--white) !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.service-img-wrap {
  height: 180px;
  overflow: hidden;
  position: relative;
}

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

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.service-desc {
  font-size: 0.875rem;
  color: var(--gray-text);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  transition: var(--transition);
}

/* 10. Featured Properties Section */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background-color: var(--white);
  color: var(--dark-text);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.property-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.prop-img-box {
  height: 220px;
  position: relative;
  overflow: hidden;
}

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

.property-card:hover .prop-img-box img {
  transform: scale(1.08);
}

.prop-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--accent-red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.prop-type-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(7, 59, 115, 0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.prop-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.prop-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-red);
  margin-bottom: 0.25rem;
}

.prop-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.prop-location {
  font-size: 0.85rem;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.prop-features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.25rem;
  font-size: 0.825rem;
  color: var(--dark-text);
  font-weight: 600;
}

.prop-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: auto;
}

/* 11. Property Search / Requirement Finder */
.search-engine-wrap {
  background-color: var(--dark-blue);
  background-image: radial-gradient(circle at 10% 20%, rgba(11, 79, 156, 0.4) 0%, transparent 60%);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.search-engine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.search-engine-grid .form-control {
  background-color: rgba(255, 255, 255, 0.95);
}

/* 12. Visual Categories Banner */
.visual-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.visual-category-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: var(--white);
}

.visual-category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: 1;
}

.visual-category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 59, 115, 0.1) 0%, rgba(7, 59, 115, 0.9) 85%);
  z-index: 2;
}

.visual-category-card:hover img {
  transform: scale(1.08);
}

.visual-card-content {
  position: relative;
  z-index: 3;
}

.visual-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.visual-card-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
}

/* 13. Housekeeping & Property Maintenance */
.maintenance-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.maint-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(11, 79, 156, 0.15);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.maint-card:nth-child(1):hover { background-color: #0284C7; border-color: #0284C7; }
.maint-card:nth-child(2):hover { background-color: #7C3AED; border-color: #7C3AED; }
.maint-card:nth-child(3):hover { background-color: #E31E24; border-color: #E31E24; }
.maint-card:nth-child(4):hover { background-color: #0B4F9C; border-color: #0B4F9C; }
.maint-card:nth-child(5):hover { background-color: #059669; border-color: #059669; }
.maint-card:nth-child(6):hover { background-color: #EA580C; border-color: #EA580C; }

.maint-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.maint-card:hover .maint-title,
.maint-card:hover .maint-desc {
  color: var(--white) !important;
}

.maint-card:hover .maint-icon {
  background-color: rgba(255, 255, 255, 0.25) !important;
  color: var(--white) !important;
}

.maint-card:hover .btn-outline-blue {
  border-color: var(--white) !important;
  color: var(--white) !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.maint-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: rgba(227, 30, 36, 0.1);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.maint-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.maint-desc {
  font-size: 0.875rem;
  color: var(--gray-text);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  transition: var(--transition);
}

/* 14. Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:nth-child(1):hover { background-color: #0B4F9C; border-color: #0B4F9C; }
.why-card:nth-child(2):hover { background-color: #E31E24; border-color: #E31E24; }
.why-card:nth-child(3):hover { background-color: #7C3AED; border-color: #7C3AED; }
.why-card:nth-child(4):hover { background-color: #059669; border-color: #059669; }
.why-card:nth-child(5):hover { background-color: #EA580C; border-color: #EA580C; }
.why-card:nth-child(6):hover { background-color: #0284C7; border-color: #0284C7; }

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.why-card:hover .why-title,
.why-card:hover .why-desc {
  color: var(--white) !important;
}

.why-card:hover .why-number {
  color: rgba(255, 255, 255, 0.55) !important;
}

.why-number {
  font-size: 2.25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: rgba(11, 79, 156, 0.2);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.why-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.why-desc {
  font-size: 0.875rem;
  color: var(--gray-text);
  transition: var(--transition);
}

/* 15. Our Process */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-step {
  background-color: var(--white);
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:nth-child(1):hover { background-color: #0B4F9C; border-color: #0B4F9C; }
.process-step:nth-child(2):hover { background-color: #E31E24; border-color: #E31E24; }
.process-step:nth-child(3):hover { background-color: #7C3AED; border-color: #7C3AED; }
.process-step:nth-child(4):hover { background-color: #059669; border-color: #059669; }
.process-step:nth-child(5):hover { background-color: #EA580C; border-color: #EA580C; }

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.process-step:hover .step-title,
.process-step:hover .step-desc {
  color: var(--white) !important;
}

.process-step:hover .step-num {
  background-color: rgba(255, 255, 255, 0.3) !important;
  color: var(--white) !important;
  box-shadow: none !important;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 10px rgba(11, 79, 156, 0.3);
  transition: var(--transition);
}

.process-step:nth-child(even) .step-num {
  background-color: var(--accent-red);
  box-shadow: 0 4px 10px rgba(227, 30, 36, 0.3);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.step-desc {
  font-size: 0.825rem;
  color: var(--gray-text);
  transition: var(--transition);
}

/* 16. Investment Section */
.investment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:nth-child(1):hover { background-color: #0B4F9C; border-color: #0B4F9C; }
.stat-card:nth-child(2):hover { background-color: #E31E24; border-color: #E31E24; }
.stat-card:nth-child(3):hover { background-color: #7C3AED; border-color: #7C3AED; }
.stat-card:nth-child(4):hover { background-color: #059669; border-color: #059669; }

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.stat-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.stat-card:hover .stat-sub {
  color: var(--white) !important;
}

/* 17. Benefits Split Layout */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.benefit-card {
  background-color: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-blue);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:nth-child(1):hover { background-color: #0B4F9C; border-color: #0B4F9C; }
.benefit-card:nth-child(2):hover { background-color: #E31E24; border-color: #E31E24; }
.benefit-card:nth-child(3):hover { background-color: #059669; border-color: #059669; }
.benefit-card:nth-child(4):hover { background-color: #7C3AED; border-color: #7C3AED; }

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.benefit-card:hover .benefit-title,
.benefit-card:hover .benefit-desc {
  color: var(--white) !important;
}

.benefit-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  transition: var(--transition);
}

.benefit-desc {
  font-size: 0.8rem;
  color: var(--gray-text);
  transition: var(--transition);
}

/* 18. Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:nth-child(1):hover { background-color: #0B4F9C; border-color: #0B4F9C; }
.testimonial-card:nth-child(2):hover { background-color: #7C3AED; border-color: #7C3AED; }
.testimonial-card:nth-child(3):hover { background-color: #059669; border-color: #059669; }

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.testimonial-card:hover .testimonial-text,
.testimonial-card:hover .client-name,
.testimonial-card:hover .client-meta {
  color: var(--white) !important;
}

.testimonial-card:hover .client-avatar {
  background-color: var(--white) !important;
  color: var(--dark-text) !important;
}

.star-rating {
  color: #FFB800;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.925rem;
  font-style: italic;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  transition: var(--transition);
}

.client-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.client-name {
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}

.client-meta {
  font-size: 0.775rem;
  color: var(--gray-text);
  transition: var(--transition);
}

/* 19. Local SEO Section */
.seo-section-box {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.location-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.chip {
  padding: 0.5rem 1.25rem;
  background-color: var(--light-blue);
  color: var(--primary-blue);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}

/* 20. FAQ Accordion */
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-text);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--light-blue);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background-color: var(--accent-red);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.925rem;
  color: var(--gray-text);
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

/* 21. High Lead Generation Banner */
.cta-banner-section {
  position: relative;
  background: linear-gradient(135deg, rgba(7, 59, 115, 0.92), rgba(11, 79, 156, 0.88)),
              url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner-content {
  max-width: 760px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* 22. Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
}

.contact-info-card {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-info-title {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text strong {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.2rem;
}

.contact-text span, .contact-text a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

/* 23. Big Footer */
.footer {
  background-color: var(--dark-text);
  color: #94A3B8;
  padding-top: 4rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #334155;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
  display: block;
}

.footer-brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.825rem;
}

/* 24. Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background-color: #25D366;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  animation: pulse-green 2s infinite;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  background-color: #1eb956;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* 25. AI Chatbot Widget */
.chatbot-trigger {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(11, 79, 156, 0.4);
  z-index: 9998;
  cursor: pointer;
  transition: var(--transition);
}

.chatbot-trigger span {
  font-size: 1.55rem;
  line-height: 1;
  display: inline-flex;
}

.chatbot-trigger:hover {
  transform: scale(1.1) translateY(-2px);
}

.chatbot-window {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 360px;
  height: 480px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.chatbot-window.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chatbot-header {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
}

.chatbot-body {
  flex-grow: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background-color: #F8FAFC;
}

.chat-msg {
  max-width: 85%;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.chat-msg.bot {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-msg.user {
  background-color: var(--primary-blue);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chatbot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
}

.suggestion-chip {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  background-color: var(--light-blue);
  color: var(--primary-blue);
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  font-weight: 600;
}

.suggestion-chip:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.chatbot-input-wrap {
  display: flex;
  padding: 0.75rem;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
}

.chatbot-input-wrap input {
  flex-grow: 1;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
}

.chatbot-input-wrap button {
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  width: 34px;
  height: 34px;
  margin-left: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modals & Popups */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(7, 59, 115, 0.75);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background-color: var(--white);
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  padding: 2.25rem;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-overlay.open .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-text);
  cursor: pointer;
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  top: 25px;
  right: 25px;
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-left: 5px solid #25D366;
  z-index: 10001;
  transform: translateX(140%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
  transform: translateX(0);
}

/* ==========================================================================
   Mobile Responsiveness & Adaptive Layout System
   ========================================================================== */

/* Table Responsiveness Wrapper */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Form input 16px iOS auto-zoom fix */
.form-control {
  font-size: 1rem !important;
  min-height: 46px;
}

/* Fluid Heading Typography */
.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
}

/* Tablets & Medium Screens (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .investment-grid, .benefits-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .quick-services-grid, .services-grid, .properties-grid, .visual-categories-grid,
  .maintenance-services-grid, .why-grid, .testimonials-grid, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* ==========================================================================
   MOBILE-FIRST RESPONSIVE DESIGN & ACCESSIBILITY SUITE
   ========================================================================== */

/* Universal Responsive Image & Table Safety */
img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

/* Fluid Heading Typography Clamps */
h1, .hero-title {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.25;
}

h2, .section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.3;
}

h3 {
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
}

/* Tablet & Mobile Drawer (max-width: 991px) */
@media (max-width: 991px) {
  /* Hide redundant top bar on mobile to keep header clean and compact */
  .top-bar {
    display: none !important;
  }

  /* ── Compact Mobile Header Layout (56px) ── */
  .main-header,
  .main-header.scrolled {
    height: 56px !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    background-color: rgba(255, 255, 255, 0.99) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
  }

  .header-inner,
  .main-header.scrolled .header-inner {
    height: 56px !important;
    padding: 0 0.75rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
  }

  /* Display Website Name and Logo cleanly */
  .brand-logo {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
    text-decoration: none !important;
  }

  .header-logo-img {
    height: 38px !important;
    width: 38px !important;
    flex-shrink: 0 !important;
    border-radius: 50% !important;
  }

  .brand-text-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
  }

  .brand-title {
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    color: var(--dark-blue) !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    letter-spacing: -0.2px !important;
  }

  .brand-subtitle {
    font-size: 0.58rem !important;
    color: var(--accent-red) !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    letter-spacing: 0.2px !important;
  }

  /* Header action controls */
  .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
    flex-shrink: 0 !important;
  }

  .header-actions .btn.btn-primary {
    display: none !important;
  }

  .call-pill {
    display: none !important;
  }

  /* Compact Language Selector */
  .lang-toggle-switch {
    padding: 2px !important;
    gap: 1px !important;
  }

  .lang-toggle-btn {
    padding: 0.2rem 0.42rem !important;
    font-size: 0.72rem !important;
    border-radius: 12px !important;
  }

  /* Accessible Touch Hamburger Toggle */
  .mobile-toggle {
    display: inline-flex !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.25rem !important;
    background-color: var(--light-blue) !important;
    color: var(--primary-blue) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-sm) !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
    z-index: 10000 !important;
  }

  /* Mobile Slide-Down Nav Drawer */
  .nav-menu {
    position: fixed !important;
    top: 56px !important;
    left: 0 !important;
    right: 0 !important;
    background-color: #FFFFFF !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 1rem 1.25rem 2rem !important;
    box-shadow: 0 20px 40px rgba(7, 59, 115, 0.25) !important;
    border-top: 3px solid var(--accent-red) !important;
    max-height: calc(100vh - 56px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    display: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    gap: 0.25rem;
    width: 100% !important;
    z-index: 9998 !important;
  }

  .nav-menu.open,
  .nav-menu.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  .nav-menu li {
    width: 100%;
  }

  .pwa-mobile-only {
    display: block !important;
  }

  .nav-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    border-bottom: 1px solid #F1F5F9;
    touch-action: manipulation;
  }

  .nav-link .arrow {
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.85rem;
  }

  .nav-dropdown-item.open > .nav-link .arrow,
  .nav-dropdown-item.open-mobile > .nav-link .arrow {
    transform: rotate(180deg);
    color: var(--accent-red);
  }

  /* Nested Submenu Dropdown in Mobile Drawer */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: #F8FAFC;
    border-left: 3px solid var(--primary-blue);
    width: 100%;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 0.5rem 0 0.5rem 0.75rem;
    display: none;
  }

  .nav-dropdown-item.open > .dropdown-menu,
  .nav-dropdown-item.open-mobile > .dropdown-menu {
    display: flex !important;
    flex-direction: column !important;
  }

  .dropdown-menu li a {
    padding: 0.6rem 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-blue);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }
}

/* Small Smart Phones (max-width: 390px) */
@media (max-width: 390px) {
  .brand-subtitle {
    display: none !important;
  }
  .brand-title {
    font-size: 0.84rem !important;
  }
  .header-logo-img {
    height: 34px !important;
    width: 34px !important;
  }
  .lang-toggle-btn {
    padding: 0.18rem 0.32rem !important;
    font-size: 0.68rem !important;
  }
  .header-inner {
    padding: 0 0.5rem !important;
  }
}

/* Small Mobiles & Smartphones (max-width: 768px) */
@media (max-width: 768px) {
  /* Prevent content overlap with fixed bottom sticky bar */
  body {
    padding-bottom: 64px !important;
  }

  .section-padding {
    padding: 3rem 0;
  }

  /* Prevent iOS zoom on input focus (minimum 16px font-size) */
  .form-control,
  .hero-form-card input,
  .hero-form-card select,
  .hero-form-card textarea,
  input, select, textarea {
    font-size: 16px !important;
    min-height: 46px;
  }

  .hero-section {
    min-height: auto;
    padding: 2.5rem 0 3.5rem;
  }

  .hero-form-card {
    padding: 1.5rem;
  }

  .quick-services-wrap {
    margin-top: 0;
  }

  .quick-services-grid, .services-grid, .properties-grid, .visual-categories-grid,
  .maintenance-services-grid, .why-grid, .testimonials-grid, .search-engine-grid,
  .stats-grid, .benefits-list, .footer-grid, .process-timeline, .smart-grid-5, .mv-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .prop-actions {
    grid-template-columns: 1fr;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .chatbot-window {
    width: calc(100vw - 20px);
    right: 10px;
    bottom: 74px;
    height: 420px;
  }

  /* Push floating widgets above mobile sticky bar */
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 74px !important;
    left: 12px;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }

  .chatbot-trigger {
    width: 48px;
    height: 48px;
    bottom: 74px !important;
    right: 12px;
  }

  .chatbot-trigger span {
    font-size: 1.3rem;
  }

  /* Footer bottom layout on mobile */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

/* Extra Small Phones (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 0.85rem;
  }

  /* Hide top-bar entirely on compact screens */
  .top-bar {
    display: none !important;
  }

  .btn {
    padding: 0.75rem 1.15rem;
    font-size: 0.875rem;
    width: 100%;
    justify-content: center;
  }

  .search-engine-wrap, .seo-section-box {
    padding: 1.25rem 0.85rem;
  }

  .contact-info-card {
    padding: 1.25rem;
  }

  /* Fix property detail modal grid to single column on small phones */
  #propertyModalBody > div {
    grid-template-columns: 1fr !important;
  }

  #propertyModalBody > div > div:last-child > div[style*="flex"] {
    flex-direction: column !important;
  }
}

/* Prefers Reduced Motion Accessibility Standard */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Page Transition Loader & Scroll Progress Bar
   ========================================================================== */
body {
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}
body.fade-in {
  opacity: 1;
}

/* Reading Scroll Progress Bar Indicator */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent-red);
  width: 0;
  z-index: 10000;
  transition: width 0.08s ease-out;
  pointer-events: none;
}

/* Reusable Viewport Reveal Transitions */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}

.reveal-active {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.06s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.18s; }
.stagger-4 { transition-delay: 0.24s; }
.stagger-5 { transition-delay: 0.30s; }
.stagger-6 { transition-delay: 0.36s; }

/* Micro-Interactions: Universal scale click-down */
.btn:active, .btn-primary:active, .btn-secondary:active, .call-pill:active, .lang-toggle-btn:active {
  transform: scale(0.96) !important;
}

/* Automatic stagger container children presets */
.stagger-container .pillar-card,
.stagger-container .property-card,
.stagger-container .testimonial-card,
.stagger-container .quick-card,
.stagger-container .material-teaser-card,
.stagger-container .timeline-step,
.stagger-container .stat-card,
.stagger-container .service-card,
.stagger-container .portfolio-card,
.stagger-container .material-card,
.stagger-container .gallery-item,
.stagger-container .contact-card,
.stagger-container .amc-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.stagger-container .pillar-card.reveal-active,
.stagger-container .property-card.reveal-active,
.stagger-container .testimonial-card.reveal-active,
.stagger-container .quick-card.reveal-active,
.stagger-container .material-teaser-card.reveal-active,
.stagger-container .timeline-step.reveal-active,
.stagger-container .stat-card.reveal-active,
.stagger-container .service-card.reveal-active,
.stagger-container .portfolio-card.reveal-active,
.stagger-container .material-card.reveal-active,
.stagger-container .gallery-item.reveal-active,
.stagger-container .contact-card.reveal-active,
.stagger-container .amc-card.reveal-active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ==========================================================================
   MOBILE STICKY BOTTOM CONTACT BAR
   ========================================================================== */
.mobile-sticky-bar {
  display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    height: 60px;
    background: var(--dark-blue);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.25);
    border-top: 2px solid var(--accent-red);
  }

  .sticky-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    gap: 2px;
    border-right: 1px solid rgba(255,255,255,0.15);
    transition: background 0.2s;
  }

  .sticky-bar-item:last-child {
    border-right: none;
  }

  .sticky-bar-item:active,
  .sticky-bar-item:focus {
    background: rgba(255,255,255,0.1);
  }

  .sticky-bar-item.whatsapp-item {
    background: #25D366;
  }

  .sticky-bar-item.quote-item {
    background: var(--accent-red);
  }

  .sticky-bar-icon {
    font-size: 1.2rem;
  }

  .sticky-bar-label {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  /* Push page content up above the sticky bar */
  body {
    padding-bottom: 60px;
  }

  /* Push floating chat & whatsapp buttons above the sticky bar */
  .whatsapp-float {
    bottom: 76px !important;
  }

  .chatbot-trigger {
    bottom: 76px !important;
  }

  .chatbot-window {
    bottom: 140px !important;
  }
}

/* ==========================================================================
   HOMEPAGE NEW SECTIONS (Stats, Pillars, Timeline, Materials Teaser)
   ========================================================================== */

/* 1. Stats Counter Panel */
.stats-counter-section {
  background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.stat-card {
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-num {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
  text-shadow: 0 4px 12px rgba(11, 79, 156, 0.4);
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* 2. Core Pillars (Why Choose Us) */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pillar-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  border-left: 4px solid var(--primary-blue);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(7, 59, 115, 0.12);
  border-left-color: var(--accent-red);
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.pillar-title {
  font-size: 1.2rem;
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.6;
}

/* 3. Construction Process Timeline */
.timeline-wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 4rem;
  padding: 0 1rem;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 4px;
  background: #CBD5E1;
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  max-width: 220px;
  background: var(--white);
  padding: 0.5rem;
}

.step-node {
  width: 60px;
  height: 60px;
  background: #EEF2F6;
  color: var(--dark-blue);
  border: 4px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.timeline-step:hover .step-node {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(11, 79, 156, 0.3);
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .timeline-wrap {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .timeline-wrap::before {
    display: none;
  }
}

/* 4. Materials Teaser Grid */
.materials-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.material-teaser-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.material-teaser-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.mat-teaser-img-box {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.mat-teaser-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.material-teaser-card:hover .mat-teaser-img-box img {
  transform: scale(1.08);
}

.mat-teaser-body {
  padding: 1.5rem;
  text-align: left;
}

.mat-teaser-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.mat-teaser-desc {
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   ABOUT US PAGE ADVANCED STYLES & COMPONENTS
   ========================================================================== */

.about-hero-tagline {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.about-slogan-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  margin-top: 1.25rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.about-slogan-dot {
  color: var(--accent-red);
  font-size: 1.2rem;
  line-height: 1;
}

/* Mission, Vision & Guiding Principles Cards */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.mv-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.mv-card.vision-card::before {
  background: var(--primary-blue);
}

.mv-card.mission-card::before {
  background: var(--accent-red);
}

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

.mv-card:hover::before {
  width: 8px;
}

.mv-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.mv-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--light-blue);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.mv-card.mission-card .mv-icon-box {
  background: rgba(227, 30, 36, 0.1);
  color: var(--accent-red);
}

.mv-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0;
}

.mv-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mv-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--dark-text);
  line-height: 1.5;
}

.mv-check-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(11, 79, 156, 0.12);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.value-pill-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.value-pill-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-blue);
  box-shadow: 0 10px 25px rgba(11, 79, 156, 0.12);
  background: var(--light-blue);
}

.value-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(11, 79, 156, 0.08);
  color: var(--primary-blue);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
}

.value-pill-card:hover .value-icon-circle {
  transform: scale(1.15) rotate(5deg);
  background: var(--primary-blue);
  color: var(--white);
}

.value-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-blue);
}

/* 6-Step Workflow Roadmap */
.workflow-6step-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  position: relative;
}

.workflow-step-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.workflow-step-box:hover {
  transform: translateY(-8px);
  border-color: var(--primary-blue);
  box-shadow: 0 14px 30px rgba(7, 59, 115, 0.15);
}

.workflow-num-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(11, 79, 156, 0.25);
  transition: transform 0.3s ease;
}

.workflow-step-box:nth-child(even) .workflow-num-bubble {
  background: var(--accent-red);
  box-shadow: 0 4px 12px rgba(227, 30, 36, 0.25);
}

.workflow-step-box:hover .workflow-num-bubble {
  transform: scale(1.15);
}

.workflow-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.workflow-step-desc {
  font-size: 0.825rem;
  color: var(--gray-text);
  line-height: 1.55;
}

/* Business Partners Matrix */
.partners-matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.partner-card-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.partner-card-item:hover {
  border-color: var(--primary-blue);
  transform: translateX(4px);
  background: var(--light-blue);
  box-shadow: 0 6px 16px rgba(11, 79, 156, 0.1);
}

.partner-icon {
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(11, 79, 156, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-name {
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--dark-text);
}

/* Careers Section */
.careers-dual-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
  align-items: start;
}

.career-roles-chip-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.career-role-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-blue);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.career-role-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.career-role-pill:nth-child(6n + 1):hover { background: #ECFDF5; color: #059669; border-color: #10B981; }
.career-role-pill:nth-child(6n + 2):hover { background: #F0F9FF; color: #0284C7; border-color: #0284C7; }
.career-role-pill:nth-child(6n + 3):hover { background: #FFFBEB; color: #D97706; border-color: #F59E0B; }
.career-role-pill:nth-child(6n + 4):hover { background: #FAF5FF; color: #7C3AED; border-color: #8B5CF6; }
.career-role-pill:nth-child(6n + 5):hover { background: #FFF1F2; color: #E11D48; border-color: #E11D48; }
.career-role-pill:nth-child(6n + 6):hover { background: #F0FDFA; color: #0D9488; border-color: #0D9488; }

.careers-why-card {
  background: var(--light-blue);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.careers-why-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.careers-why-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--dark-text);
}

.career-check-icon {
  color: #059669;
  font-weight: 800;
}

/* Corporate Offices Grid */
.offices-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.office-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.office-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.office-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.office-name-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.75rem;
}

.office-address-text {
  font-size: 0.925rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   ADVANCED COLORFUL CARDS & SMART BALANCED GRID SYSTEM
   ========================================================================== */

/* Smart 5-Card Balanced Grid (3 on top row, 2 centered on bottom row) */
.smart-grid-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.smart-grid-5 > *:nth-child(1),
.smart-grid-5 > *:nth-child(2),
.smart-grid-5 > *:nth-child(3) {
  grid-column: span 2;
}

.smart-grid-5 > *:nth-child(4) {
  grid-column: 2 / span 2;
}

.smart-grid-5 > *:nth-child(5) {
  grid-column: 4 / span 2;
}

@media (max-width: 991px) {
  .smart-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .smart-grid-5 > *:nth-child(1),
  .smart-grid-5 > *:nth-child(2),
  .smart-grid-5 > *:nth-child(3),
  .smart-grid-5 > *:nth-child(4),
  .smart-grid-5 > *:nth-child(5) {
    grid-column: span 1;
  }
  .smart-grid-5 > *:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .smart-grid-5 {
    grid-template-columns: 1fr;
  }
  .smart-grid-5 > *:nth-child(5) {
    grid-column: span 1;
    max-width: 100%;
  }
}

/* Base Colorful Card */
.color-card,
.service-card,
.why-card,
.partner-box,
.office-info-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.color-card:hover,
.service-card:hover,
.why-card:hover,
.partner-box:hover,
.office-info-card:hover {
  transform: translateY(-9px);
}

.color-card:hover h3,
.color-card:hover h4,
.color-card:hover strong,
.service-card:hover h3,
.service-card:hover h4,
.service-card:hover strong {
  color: #FFFFFF !important;
}

.color-card:hover p,
.color-card:hover span:not(.badge-tag):not(.btn),
.color-card:hover li,
.service-card:hover p,
.service-card:hover span:not(.badge-tag):not(.btn),
.service-card:hover li {
  color: rgba(255, 255, 255, 0.94) !important;
}

.card-icon-bubble {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 1.15rem;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.color-card:hover .card-icon-bubble,
.service-card:hover .card-icon-bubble {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.24) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   12 BOLD & BRIGHT THEMES (Vivid in Idle & Glowing Rich Gradients on Hover)
   ========================================================================== */

/* Color Theme 1: Bright Emerald Green */
.theme-emerald,
.color-card:nth-child(12n + 1),
.service-card:nth-child(12n + 1) {
  background: linear-gradient(180deg, #F0FDF4 0%, #E8FBF0 100%);
  border: 2px solid #86EFAC;
  border-top: 5px solid #059669;
}
.theme-emerald h3,
.theme-emerald h4,
.color-card:nth-child(12n + 1) h3,
.service-card:nth-child(12n + 1) h3 {
  color: #064E3B;
}
.theme-emerald p,
.color-card:nth-child(12n + 1) p,
.service-card:nth-child(12n + 1) p {
  color: #166534;
}
.theme-emerald .card-icon-bubble,
.color-card:nth-child(12n + 1) .card-icon-bubble,
.service-card:nth-child(12n + 1) .card-icon-bubble {
  background: #059669;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}
.theme-emerald .btn,
.theme-emerald .btn-outline-blue,
.color-card:nth-child(12n + 1) .btn,
.color-card:nth-child(12n + 1) .btn-outline-blue,
.service-card:nth-child(12n + 1) .btn,
.service-card:nth-child(12n + 1) .btn-outline-blue {
  background: #059669;
  border: 1.5px solid #059669;
  color: #FFFFFF;
  font-weight: 700;
}
.theme-emerald:hover,
.color-card:nth-child(12n + 1):hover,
.service-card:nth-child(12n + 1):hover {
  background: linear-gradient(135deg, #059669 0%, #10B981 100%) !important;
  border-color: #047857 !important;
  box-shadow: 0 22px 45px rgba(5, 150, 105, 0.45) !important;
}
.theme-emerald:hover .btn,
.theme-emerald:hover .btn-outline-blue,
.color-card:nth-child(12n + 1):hover .btn,
.color-card:nth-child(12n + 1):hover .btn-outline-blue,
.service-card:nth-child(12n + 1):hover .btn,
.service-card:nth-child(12n + 1):hover .btn-outline-blue {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #059669 !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18) !important;
}

/* Color Theme 2: Bright Sky Blue */
.theme-blue,
.color-card:nth-child(12n + 2),
.service-card:nth-child(12n + 2) {
  background: linear-gradient(180deg, #F0F9FF 0%, #E0F2FE 100%);
  border: 2px solid #7DD3FC;
  border-top: 5px solid #0284C7;
}
.theme-blue h3,
.theme-blue h4,
.color-card:nth-child(12n + 2) h3,
.service-card:nth-child(12n + 2) h3 {
  color: #0C4A6E;
}
.theme-blue p,
.color-card:nth-child(12n + 2) p,
.service-card:nth-child(12n + 2) p {
  color: #0369A1;
}
.theme-blue .card-icon-bubble,
.color-card:nth-child(12n + 2) .card-icon-bubble,
.service-card:nth-child(12n + 2) .card-icon-bubble {
  background: #0284C7;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}
.theme-blue .btn,
.theme-blue .btn-outline-blue,
.color-card:nth-child(12n + 2) .btn,
.color-card:nth-child(12n + 2) .btn-outline-blue,
.service-card:nth-child(12n + 2) .btn,
.service-card:nth-child(12n + 2) .btn-outline-blue {
  background: #0284C7;
  border: 1.5px solid #0284C7;
  color: #FFFFFF;
  font-weight: 700;
}
.theme-blue:hover,
.color-card:nth-child(12n + 2):hover,
.service-card:nth-child(12n + 2):hover {
  background: linear-gradient(135deg, #0284C7 0%, #38BDF8 100%) !important;
  border-color: #0369A1 !important;
  box-shadow: 0 22px 45px rgba(2, 132, 199, 0.45) !important;
}
.theme-blue:hover .btn,
.theme-blue:hover .btn-outline-blue,
.color-card:nth-child(12n + 2):hover .btn,
.color-card:nth-child(12n + 2):hover .btn-outline-blue,
.service-card:nth-child(12n + 2):hover .btn,
.service-card:nth-child(12n + 2):hover .btn-outline-blue {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #0284C7 !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18) !important;
}

/* Color Theme 3: Bright Amber Gold */
.theme-amber,
.color-card:nth-child(12n + 3),
.service-card:nth-child(12n + 3) {
  background: linear-gradient(180deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 2px solid #FDE68A;
  border-top: 5px solid #D97706;
}
.theme-amber h3,
.theme-amber h4,
.color-card:nth-child(12n + 3) h3,
.service-card:nth-child(12n + 3) h3 {
  color: #78350F;
}
.theme-amber p,
.color-card:nth-child(12n + 3) p,
.service-card:nth-child(12n + 3) p {
  color: #92400E;
}
.theme-amber .card-icon-bubble,
.color-card:nth-child(12n + 3) .card-icon-bubble,
.service-card:nth-child(12n + 3) .card-icon-bubble {
  background: #D97706;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}
.theme-amber .btn,
.theme-amber .btn-outline-blue,
.color-card:nth-child(12n + 3) .btn,
.color-card:nth-child(12n + 3) .btn-outline-blue,
.service-card:nth-child(12n + 3) .btn,
.service-card:nth-child(12n + 3) .btn-outline-blue {
  background: #D97706;
  border: 1.5px solid #D97706;
  color: #FFFFFF;
  font-weight: 700;
}
.theme-amber:hover,
.color-card:nth-child(12n + 3):hover,
.service-card:nth-child(12n + 3):hover {
  background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%) !important;
  border-color: #B45309 !important;
  box-shadow: 0 22px 45px rgba(217, 119, 6, 0.45) !important;
}
.theme-amber:hover .btn,
.theme-amber:hover .btn-outline-blue,
.color-card:nth-child(12n + 3):hover .btn,
.color-card:nth-child(12n + 3):hover .btn-outline-blue,
.service-card:nth-child(12n + 3):hover .btn,
.service-card:nth-child(12n + 3):hover .btn-outline-blue {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #D97706 !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18) !important;
}

/* Color Theme 4: Bright Purple Violet */
.theme-purple,
.color-card:nth-child(12n + 4),
.service-card:nth-child(12n + 4) {
  background: linear-gradient(180deg, #FAF5FF 0%, #F3E8FF 100%);
  border: 2px solid #D8B4FE;
  border-top: 5px solid #7C3AED;
}
.theme-purple h3,
.theme-purple h4,
.color-card:nth-child(12n + 4) h3,
.service-card:nth-child(12n + 4) h3 {
  color: #581C87;
}
.theme-purple p,
.color-card:nth-child(12n + 4) p,
.service-card:nth-child(12n + 4) p {
  color: #6B21A8;
}
.theme-purple .card-icon-bubble,
.color-card:nth-child(12n + 4) .card-icon-bubble,
.service-card:nth-child(12n + 4) .card-icon-bubble {
  background: #7C3AED;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}
.theme-purple .btn,
.theme-purple .btn-outline-blue,
.color-card:nth-child(12n + 4) .btn,
.color-card:nth-child(12n + 4) .btn-outline-blue,
.service-card:nth-child(12n + 4) .btn,
.service-card:nth-child(12n + 4) .btn-outline-blue {
  background: #7C3AED;
  border: 1.5px solid #7C3AED;
  color: #FFFFFF;
  font-weight: 700;
}
.theme-purple:hover,
.color-card:nth-child(12n + 4):hover,
.service-card:nth-child(12n + 4):hover {
  background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%) !important;
  border-color: #6D28D9 !important;
  box-shadow: 0 22px 45px rgba(124, 58, 237, 0.45) !important;
}
.theme-purple:hover .btn,
.theme-purple:hover .btn-outline-blue,
.color-card:nth-child(12n + 4):hover .btn,
.color-card:nth-child(12n + 4):hover .btn-outline-blue,
.service-card:nth-child(12n + 4):hover .btn,
.service-card:nth-child(12n + 4):hover .btn-outline-blue {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #7C3AED !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18) !important;
}

/* Color Theme 5: Bright Crimson Rose */
.theme-rose,
.color-card:nth-child(12n + 5),
.service-card:nth-child(12n + 5) {
  background: linear-gradient(180deg, #FFF1F2 0%, #FFE4E6 100%);
  border: 2px solid #FECDD3;
  border-top: 5px solid #E11D48;
}
.theme-rose h3,
.theme-rose h4,
.color-card:nth-child(12n + 5) h3,
.service-card:nth-child(12n + 5) h3 {
  color: #881337;
}
.theme-rose p,
.color-card:nth-child(12n + 5) p,
.service-card:nth-child(12n + 5) p {
  color: #9F1239;
}
.theme-rose .card-icon-bubble,
.color-card:nth-child(12n + 5) .card-icon-bubble,
.service-card:nth-child(12n + 5) .card-icon-bubble {
  background: #E11D48;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}
.theme-rose .btn,
.theme-rose .btn-outline-blue,
.color-card:nth-child(12n + 5) .btn,
.color-card:nth-child(12n + 5) .btn-outline-blue,
.service-card:nth-child(12n + 5) .btn,
.service-card:nth-child(12n + 5) .btn-outline-blue {
  background: #E11D48;
  border: 1.5px solid #E11D48;
  color: #FFFFFF;
  font-weight: 700;
}
.theme-rose:hover,
.color-card:nth-child(12n + 5):hover,
.service-card:nth-child(12n + 5):hover {
  background: linear-gradient(135deg, #E11D48 0%, #FB7185 100%) !important;
  border-color: #BE123C !important;
  box-shadow: 0 22px 45px rgba(225, 29, 72, 0.45) !important;
}
.theme-rose:hover .btn,
.theme-rose:hover .btn-outline-blue,
.color-card:nth-child(12n + 5):hover .btn,
.color-card:nth-child(12n + 5):hover .btn-outline-blue,
.service-card:nth-child(12n + 5):hover .btn,
.service-card:nth-child(12n + 5):hover .btn-outline-blue {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #E11D48 !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18) !important;
}

/* Color Theme 6: Bright Teal */
.theme-teal,
.color-card:nth-child(12n + 6),
.service-card:nth-child(12n + 6) {
  background: linear-gradient(180deg, #F0FDFA 0%, #CCFBF1 100%);
  border: 2px solid #5EEAD4;
  border-top: 5px solid #0D9488;
}
.theme-teal h3,
.theme-teal h4,
.color-card:nth-child(12n + 6) h3,
.service-card:nth-child(12n + 6) h3 {
  color: #134E4A;
}
.theme-teal p,
.color-card:nth-child(12n + 6) p,
.service-card:nth-child(12n + 6) p {
  color: #115E59;
}
.theme-teal .card-icon-bubble,
.color-card:nth-child(12n + 6) .card-icon-bubble,
.service-card:nth-child(12n + 6) .card-icon-bubble {
  background: #0D9488;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}
.theme-teal .btn,
.theme-teal .btn-outline-blue,
.color-card:nth-child(12n + 6) .btn,
.color-card:nth-child(12n + 6) .btn-outline-blue,
.service-card:nth-child(12n + 6) .btn,
.service-card:nth-child(12n + 6) .btn-outline-blue {
  background: #0D9488;
  border: 1.5px solid #0D9488;
  color: #FFFFFF;
  font-weight: 700;
}
.theme-teal:hover,
.color-card:nth-child(12n + 6):hover,
.service-card:nth-child(12n + 6):hover {
  background: linear-gradient(135deg, #0D9488 0%, #2DD4BF 100%) !important;
  border-color: #0F766E !important;
  box-shadow: 0 22px 45px rgba(13, 148, 136, 0.45) !important;
}
.theme-teal:hover .btn,
.theme-teal:hover .btn-outline-blue,
.color-card:nth-child(12n + 6):hover .btn,
.color-card:nth-child(12n + 6):hover .btn-outline-blue,
.service-card:nth-child(12n + 6):hover .btn,
.service-card:nth-child(12n + 6):hover .btn-outline-blue {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #0D9488 !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18) !important;
}

/* Color Theme 7: Bright Vivid Orange */
.theme-orange,
.color-card:nth-child(12n + 7),
.service-card:nth-child(12n + 7) {
  background: linear-gradient(180deg, #FFF7ED 0%, #FFEDD5 100%);
  border: 2px solid #FDBA74;
  border-top: 5px solid #EA580C;
}
.theme-orange h3,
.theme-orange h4,
.color-card:nth-child(12n + 7) h3,
.service-card:nth-child(12n + 7) h3 {
  color: #7C2D12;
}
.theme-orange p,
.color-card:nth-child(12n + 7) p,
.service-card:nth-child(12n + 7) p {
  color: #9A3412;
}
.theme-orange .card-icon-bubble,
.color-card:nth-child(12n + 7) .card-icon-bubble,
.service-card:nth-child(12n + 7) .card-icon-bubble {
  background: #EA580C;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}
.theme-orange .btn,
.theme-orange .btn-outline-blue,
.color-card:nth-child(12n + 7) .btn,
.color-card:nth-child(12n + 7) .btn-outline-blue,
.service-card:nth-child(12n + 7) .btn,
.service-card:nth-child(12n + 7) .btn-outline-blue {
  background: #EA580C;
  border: 1.5px solid #EA580C;
  color: #FFFFFF;
  font-weight: 700;
}
.theme-orange:hover,
.color-card:nth-child(12n + 7):hover,
.service-card:nth-child(12n + 7):hover {
  background: linear-gradient(135deg, #EA580C 0%, #FB923C 100%) !important;
  border-color: #C2410C !important;
  box-shadow: 0 22px 45px rgba(234, 88, 12, 0.45) !important;
}
.theme-orange:hover .btn,
.theme-orange:hover .btn-outline-blue,
.color-card:nth-child(12n + 7):hover .btn,
.color-card:nth-child(12n + 7):hover .btn-outline-blue,
.service-card:nth-child(12n + 7):hover .btn,
.service-card:nth-child(12n + 7):hover .btn-outline-blue {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #EA580C !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18) !important;
}

/* Color Theme 8: Bright Royal Indigo */
.theme-indigo,
.color-card:nth-child(12n + 8),
.service-card:nth-child(12n + 8) {
  background: linear-gradient(180deg, #EEF2FF 0%, #E0E7FF 100%);
  border: 2px solid #A5B4FC;
  border-top: 5px solid #4338CA;
}
.theme-indigo h3,
.theme-indigo h4,
.color-card:nth-child(12n + 8) h3,
.service-card:nth-child(12n + 8) h3 {
  color: #312E81;
}
.theme-indigo p,
.color-card:nth-child(12n + 8) p,
.service-card:nth-child(12n + 8) p {
  color: #3730A3;
}
.theme-indigo .card-icon-bubble,
.color-card:nth-child(12n + 8) .card-icon-bubble,
.service-card:nth-child(12n + 8) .card-icon-bubble {
  background: #4338CA;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(67, 56, 202, 0.3);
}
.theme-indigo .btn,
.theme-indigo .btn-outline-blue,
.color-card:nth-child(12n + 8) .btn,
.color-card:nth-child(12n + 8) .btn-outline-blue,
.service-card:nth-child(12n + 8) .btn,
.service-card:nth-child(12n + 8) .btn-outline-blue {
  background: #4338CA;
  border: 1.5px solid #4338CA;
  color: #FFFFFF;
  font-weight: 700;
}
.theme-indigo:hover,
.color-card:nth-child(12n + 8):hover,
.service-card:nth-child(12n + 8):hover {
  background: linear-gradient(135deg, #4338CA 0%, #6366F1 100%) !important;
  border-color: #3730A3 !important;
  box-shadow: 0 22px 45px rgba(67, 56, 202, 0.45) !important;
}
.theme-indigo:hover .btn,
.theme-indigo:hover .btn-outline-blue,
.color-card:nth-child(12n + 8):hover .btn,
.color-card:nth-child(12n + 8):hover .btn-outline-blue,
.service-card:nth-child(12n + 8):hover .btn,
.service-card:nth-child(12n + 8):hover .btn-outline-blue {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #4338CA !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18) !important;
}

/* Color Theme 9: Bright Cyan */
.theme-cyan,
.color-card:nth-child(12n + 9),
.service-card:nth-child(12n + 9) {
  background: linear-gradient(180deg, #ECFEFF 0%, #CFFAFE 100%);
  border: 2px solid #67E8F9;
  border-top: 5px solid #0891B2;
}
.theme-cyan h3,
.theme-cyan h4,
.color-card:nth-child(12n + 9) h3,
.service-card:nth-child(12n + 9) h3 {
  color: #164E63;
}
.theme-cyan p,
.color-card:nth-child(12n + 9) p,
.service-card:nth-child(12n + 9) p {
  color: #0E7490;
}
.theme-cyan .card-icon-bubble,
.color-card:nth-child(12n + 9) .card-icon-bubble,
.service-card:nth-child(12n + 9) .card-icon-bubble {
  background: #0891B2;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}
.theme-cyan .btn,
.theme-cyan .btn-outline-blue,
.color-card:nth-child(12n + 9) .btn,
.color-card:nth-child(12n + 9) .btn-outline-blue,
.service-card:nth-child(12n + 9) .btn,
.service-card:nth-child(12n + 9) .btn-outline-blue {
  background: #0891B2;
  border: 1.5px solid #0891B2;
  color: #FFFFFF;
  font-weight: 700;
}
.theme-cyan:hover,
.color-card:nth-child(12n + 9):hover,
.service-card:nth-child(12n + 9):hover {
  background: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%) !important;
  border-color: #0E7490 !important;
  box-shadow: 0 22px 45px rgba(8, 145, 178, 0.45) !important;
}
.theme-cyan:hover .btn,
.theme-cyan:hover .btn-outline-blue,
.color-card:nth-child(12n + 9):hover .btn,
.color-card:nth-child(12n + 9):hover .btn-outline-blue,
.service-card:nth-child(12n + 9):hover .btn,
.service-card:nth-child(12n + 9):hover .btn-outline-blue {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #0891B2 !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18) !important;
}

/* Color Theme 10: Bright Fuchsia Magenta */
.theme-fuchsia,
.color-card:nth-child(12n + 10),
.service-card:nth-child(12n + 10) {
  background: linear-gradient(180deg, #FDF4FF 0%, #FAE8FF 100%);
  border: 2px solid #F0ABFC;
  border-top: 5px solid #C026D3;
}
.theme-fuchsia h3,
.theme-fuchsia h4,
.color-card:nth-child(12n + 10) h3,
.service-card:nth-child(12n + 10) h3 {
  color: #701A75;
}
.theme-fuchsia p,
.color-card:nth-child(12n + 10) p,
.service-card:nth-child(12n + 10) p {
  color: #86198F;
}
.theme-fuchsia .card-icon-bubble,
.color-card:nth-child(12n + 10) .card-icon-bubble,
.service-card:nth-child(12n + 10) .card-icon-bubble {
  background: #C026D3;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(192, 38, 211, 0.3);
}
.theme-fuchsia .btn,
.theme-fuchsia .btn-outline-blue,
.color-card:nth-child(12n + 10) .btn,
.color-card:nth-child(12n + 10) .btn-outline-blue,
.service-card:nth-child(12n + 10) .btn,
.service-card:nth-child(12n + 10) .btn-outline-blue {
  background: #C026D3;
  border: 1.5px solid #C026D3;
  color: #FFFFFF;
  font-weight: 700;
}
.theme-fuchsia:hover,
.color-card:nth-child(12n + 10):hover,
.service-card:nth-child(12n + 10):hover {
  background: linear-gradient(135deg, #C026D3 0%, #E879F9 100%) !important;
  border-color: #A21CAF !important;
  box-shadow: 0 22px 45px rgba(192, 38, 211, 0.45) !important;
}
.theme-fuchsia:hover .btn,
.theme-fuchsia:hover .btn-outline-blue,
.color-card:nth-child(12n + 10):hover .btn,
.color-card:nth-child(12n + 10):hover .btn-outline-blue,
.service-card:nth-child(12n + 10):hover .btn,
.service-card:nth-child(12n + 10):hover .btn-outline-blue {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #C026D3 !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18) !important;
}

/* Color Theme 11: Bright Lime Forest */
.theme-lime,
.color-card:nth-child(12n + 11),
.service-card:nth-child(12n + 11) {
  background: linear-gradient(180deg, #F7FEE7 0%, #ECFCCB 100%);
  border: 2px solid #BEF264;
  border-top: 5px solid #4D7C0F;
}
.theme-lime h3,
.theme-lime h4,
.color-card:nth-child(12n + 11) h3,
.service-card:nth-child(12n + 11) h3 {
  color: #365314;
}
.theme-lime p,
.color-card:nth-child(12n + 11) p,
.service-card:nth-child(12n + 11) p {
  color: #4D7C0F;
}
.theme-lime .card-icon-bubble,
.color-card:nth-child(12n + 11) .card-icon-bubble,
.service-card:nth-child(12n + 11) .card-icon-bubble {
  background: #4D7C0F;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(77, 124, 15, 0.3);
}
.theme-lime .btn,
.theme-lime .btn-outline-blue,
.color-card:nth-child(12n + 11) .btn,
.color-card:nth-child(12n + 11) .btn-outline-blue,
.service-card:nth-child(12n + 11) .btn,
.service-card:nth-child(12n + 11) .btn-outline-blue {
  background: #4D7C0F;
  border: 1.5px solid #4D7C0F;
  color: #FFFFFF;
  font-weight: 700;
}
.theme-lime:hover,
.color-card:nth-child(12n + 11):hover,
.service-card:nth-child(12n + 11):hover {
  background: linear-gradient(135deg, #4D7C0F 0%, #84CC16 100%) !important;
  border-color: #3F6212 !important;
  box-shadow: 0 22px 45px rgba(77, 124, 15, 0.45) !important;
}
.theme-lime:hover .btn,
.theme-lime:hover .btn-outline-blue,
.color-card:nth-child(12n + 11):hover .btn,
.color-card:nth-child(12n + 11):hover .btn-outline-blue,
.service-card:nth-child(12n + 11):hover .btn,
.service-card:nth-child(12n + 11):hover .btn-outline-blue {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #4D7C0F !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18) !important;
}

/* Color Theme 12: Bright Royal Navy */
.theme-navy,
.color-card:nth-child(12n + 12),
.service-card:nth-child(12n + 12) {
  background: linear-gradient(180deg, #EFF6FF 0%, #DBEAFE 100%);
  border: 2px solid #93C5FD;
  border-top: 5px solid #073B73;
}
.theme-navy h3,
.theme-navy h4,
.color-card:nth-child(12n + 12) h3,
.service-card:nth-child(12n + 12) h3 {
  color: #172554;
}
.theme-navy p,
.color-card:nth-child(12n + 12) p,
.service-card:nth-child(12n + 12) p {
  color: #1E3A8A;
}
.theme-navy .card-icon-bubble,
.color-card:nth-child(12n + 12) .card-icon-bubble,
.service-card:nth-child(12n + 12) .card-icon-bubble {
  background: #073B73;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(7, 59, 115, 0.3);
}
.theme-navy .btn,
.theme-navy .btn-outline-blue,
.color-card:nth-child(12n + 12) .btn,
.color-card:nth-child(12n + 12) .btn-outline-blue,
.service-card:nth-child(12n + 12) .btn,
.service-card:nth-child(12n + 12) .btn-outline-blue {
  background: #073B73;
  border: 1.5px solid #073B73;
  color: #FFFFFF;
  font-weight: 700;
}
.theme-navy:hover,
.color-card:nth-child(12n + 12):hover,
.service-card:nth-child(12n + 12):hover {
  background: linear-gradient(135deg, #073B73 0%, #0B4F9C 100%) !important;
  border-color: #032042 !important;
  box-shadow: 0 22px 45px rgba(7, 59, 115, 0.5) !important;
}
.theme-navy:hover .btn,
.theme-navy:hover .btn-outline-blue,
.color-card:nth-child(12n + 12):hover .btn,
.color-card:nth-child(12n + 12):hover .btn-outline-blue,
.service-card:nth-child(12n + 12):hover .btn,
.service-card:nth-child(12n + 12):hover .btn-outline-blue {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #073B73 !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18) !important;
}


/* Why Choose Us Grid & Vibrant Numbers */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

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

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

.why-number {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -1px;
  transition: transform 0.3s ease;
}

.why-card:hover .why-number {
  transform: scale(1.15);
}

.why-card:nth-child(6n + 1) .why-number { color: #10B981; }
.why-card:nth-child(6n + 2) .why-number { color: #0284C7; }
.why-card:nth-child(6n + 3) .why-number { color: #F59E0B; }
.why-card:nth-child(6n + 4) .why-number { color: #8B5CF6; }
.why-card:nth-child(6n + 5) .why-number { color: #E11D48; }
.why-card:nth-child(6n + 6) .why-number { color: #0D9488; }

.why-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.55;
  margin: 0;
}

/* Workflow Step Node Vibrant Colors */
.timeline-step:nth-child(6n + 1) .step-node { color: #10B981; border-color: rgba(16, 185, 129, 0.2); }
.timeline-step:nth-child(6n + 2) .step-node { color: #0284C7; border-color: rgba(2, 132, 199, 0.2); }
.timeline-step:nth-child(6n + 3) .step-node { color: #F59E0B; border-color: rgba(245, 158, 11, 0.2); }
.timeline-step:nth-child(6n + 4) .step-node { color: #8B5CF6; border-color: rgba(139, 92, 246, 0.2); }
.timeline-step:nth-child(6n + 5) .step-node { color: #E11D48; border-color: rgba(225, 29, 72, 0.2); }
.timeline-step:nth-child(6n + 6) .step-node { color: #0D9488; border-color: rgba(13, 148, 136, 0.2); }

.timeline-step:nth-child(6n + 1):hover .step-node { background: #10B981; color: #FFF; }
.timeline-step:nth-child(6n + 2):hover .step-node { background: #0284C7; color: #FFF; }
.timeline-step:nth-child(6n + 3):hover .step-node { background: #F59E0B; color: #FFF; }
.timeline-step:nth-child(6n + 4):hover .step-node { background: #8B5CF6; color: #FFF; }
.timeline-step:nth-child(6n + 5):hover .step-node { background: #E11D48; color: #FFF; }
.timeline-step:nth-child(6n + 6):hover .step-node { background: #0D9488; color: #FFF; }

/* Workflow 6-Step Boxes */
.workflow-6step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

@media (max-width: 550px) {
  .workflow-6step-grid {
    grid-template-columns: 1fr;
  }
}

.workflow-step-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.workflow-step-box:hover {
  transform: translateY(-6px);
}

.workflow-num-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.workflow-step-box:hover .workflow-num-bubble {
  transform: scale(1.15);
}

.workflow-step-box:nth-child(6n + 1) { border-top: 3px solid #10B981; }
.workflow-step-box:nth-child(6n + 1) .workflow-num-bubble { background: rgba(16, 185, 129, 0.12); color: #059669; }
.workflow-step-box:nth-child(6n + 1):hover { background: linear-gradient(145deg, #FFFFFF 0%, #ECFDF5 100%); border-color: #10B981; box-shadow: 0 14px 28px rgba(16, 185, 129, 0.16); }

.workflow-step-box:nth-child(6n + 2) { border-top: 3px solid #0284C7; }
.workflow-step-box:nth-child(6n + 2) .workflow-num-bubble { background: rgba(2, 132, 199, 0.12); color: #0284C7; }
.workflow-step-box:nth-child(6n + 2):hover { background: linear-gradient(145deg, #FFFFFF 0%, #F0F9FF 100%); border-color: #0284C7; box-shadow: 0 14px 28px rgba(2, 132, 199, 0.16); }

.workflow-step-box:nth-child(6n + 3) { border-top: 3px solid #F59E0B; }
.workflow-step-box:nth-child(6n + 3) .workflow-num-bubble { background: rgba(245, 158, 11, 0.12); color: #D97706; }
.workflow-step-box:nth-child(6n + 3):hover { background: linear-gradient(145deg, #FFFFFF 0%, #FFFBEB 100%); border-color: #F59E0B; box-shadow: 0 14px 28px rgba(245, 158, 11, 0.16); }

.workflow-step-box:nth-child(6n + 4) { border-top: 3px solid #8B5CF6; }
.workflow-step-box:nth-child(6n + 4) .workflow-num-bubble { background: rgba(139, 92, 246, 0.12); color: #7C3AED; }
.workflow-step-box:nth-child(6n + 4):hover { background: linear-gradient(145deg, #FFFFFF 0%, #FAF5FF 100%); border-color: #8B5CF6; box-shadow: 0 14px 28px rgba(139, 92, 246, 0.16); }

.workflow-step-box:nth-child(6n + 5) { border-top: 3px solid #E11D48; }
.workflow-step-box:nth-child(6n + 5) .workflow-num-bubble { background: rgba(225, 29, 72, 0.12); color: #E11D48; }
.workflow-step-box:nth-child(6n + 5):hover { background: linear-gradient(145deg, #FFFFFF 0%, #FFF1F2 100%); border-color: #E11D48; box-shadow: 0 14px 28px rgba(225, 29, 72, 0.16); }

.workflow-step-box:nth-child(6n + 6) { border-top: 3px solid #0D9488; }
.workflow-step-box:nth-child(6n + 6) .workflow-num-bubble { background: rgba(13, 148, 136, 0.12); color: #0D9488; }
.workflow-step-box:nth-child(6n + 6):hover { background: linear-gradient(145deg, #FFFFFF 0%, #F0FDFA 100%); border-color: #0D9488; box-shadow: 0 14px 28px rgba(13, 148, 136, 0.16); }

.workflow-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.workflow-step-desc {
  font-size: 0.885rem;
  color: var(--gray-text);
  line-height: 1.5;
  margin: 0;
}

/* 10 Business Partners Matrix Grid */
.partners-matrix-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 1050px) {
  .partners-matrix-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .partners-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .partners-matrix-grid {
    grid-template-columns: 1fr;
  }
}

.partner-card-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.partner-card-item:hover {
  transform: translateY(-6px);
}

.partner-icon {
  font-size: 2.2rem;
  transition: transform 0.25s ease;
}

.partner-card-item:hover .partner-icon {
  transform: scale(1.2);
}

.partner-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-blue);
}

.partner-card-item:nth-child(10n + 1):hover { background: #ECFDF5; border-color: #10B981; box-shadow: 0 12px 24px rgba(16, 185, 129, 0.18); }
.partner-card-item:nth-child(10n + 2):hover { background: #F0F9FF; border-color: #0284C7; box-shadow: 0 12px 24px rgba(2, 132, 199, 0.18); }
.partner-card-item:nth-child(10n + 3):hover { background: #FFFBEB; border-color: #F59E0B; box-shadow: 0 12px 24px rgba(245, 158, 11, 0.18); }
.partner-card-item:nth-child(10n + 4):hover { background: #FAF5FF; border-color: #8B5CF6; box-shadow: 0 12px 24px rgba(139, 92, 246, 0.18); }
.partner-card-item:nth-child(10n + 5):hover { background: #FFF1F2; border-color: #E11D48; box-shadow: 0 12px 24px rgba(225, 29, 72, 0.18); }
.partner-card-item:nth-child(10n + 6):hover { background: #F0FDFA; border-color: #0D9488; box-shadow: 0 12px 24px rgba(13, 148, 136, 0.18); }
.partner-card-item:nth-child(10n + 7):hover { background: #FFF7ED; border-color: #EA580C; box-shadow: 0 12px 24px rgba(234, 88, 12, 0.18); }
.partner-card-item:nth-child(10n + 8):hover { background: #EEF2FF; border-color: #4F46E5; box-shadow: 0 12px 24px rgba(79, 70, 229, 0.18); }
.partner-card-item:nth-child(10n + 9):hover { background: #ECFEFF; border-color: #0891B2; box-shadow: 0 12px 24px rgba(8, 145, 178, 0.18); }
.partner-card-item:nth-child(10n + 10):hover { background: #FDF4FF; border-color: #C026D3; box-shadow: 0 12px 24px rgba(192, 38, 211, 0.18); }

/* Core Values Pills Dynamic Hover Colors */
.value-pill-card {
  transition: all 0.25s ease;
}
.value-pill-card:hover {
  transform: translateY(-4px);
}
.value-pill-card:nth-child(7n + 1):hover { background: #ECFDF5; border-color: #10B981; }
.value-pill-card:nth-child(7n + 2):hover { background: #F0F9FF; border-color: #0284C7; }
.value-pill-card:nth-child(7n + 3):hover { background: #FFFBEB; border-color: #F59E0B; }
.value-pill-card:nth-child(7n + 4):hover { background: #FAF5FF; border-color: #8B5CF6; }
.value-pill-card:nth-child(7n + 5):hover { background: #FFF1F2; border-color: #E11D48; }
.value-pill-card:nth-child(7n + 6):hover { background: #F0FDFA; border-color: #0D9488; }
.value-pill-card:nth-child(7n + 7):hover { background: #EEF2FF; border-color: #4F46E5; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   MEET THE TEAM — DEDICATED TEAM & LEADERSHIP STYLES
   ========================================================================== */
.team-filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.team-filter-btn {
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-color);
  background: var(--white);
  color: var(--dark-text);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.team-filter-btn:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: var(--light-blue);
  transform: translateY(-2px);
}

.team-filter-btn.active {
  background: var(--dark-blue);
  color: var(--white);
  border-color: var(--dark-blue);
  box-shadow: 0 4px 14px rgba(7, 59, 115, 0.25);
}

.team-filter-btn .count-badge {
  background: rgba(0, 0, 0, 0.08);
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.team-filter-btn.active .count-badge {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.team-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.team-grid-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 79, 156, 0.3);
}

.team-card-featured {
  border: 2px solid #E0E7FF;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.team-card-featured:hover {
  border-color: var(--primary-blue);
}

.team-card-image-wrap {
  position: relative;
  width: 100%;
  padding-top: 115%; /* 4:4.6 Aspect Ratio */
  overflow: hidden;
  background: #E2E8F0;
}

.team-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-card-img {
  transform: scale(1.05);
}

.team-badge-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.badge-executive {
  background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
  color: #FFFFFF;
}

.badge-management {
  background: linear-gradient(135deg, #065F46 0%, #10B981 100%);
  color: #FFFFFF;
}

.badge-engineering {
  background: linear-gradient(135deg, #991B1B 0%, #EF4444 100%);
  color: #FFFFFF;
}

.badge-clientcare {
  background: linear-gradient(135deg, #7C2D12 0%, #F97316 100%);
  color: #FFFFFF;
}

.team-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.25rem;
}

.team-member-role {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-red);
  margin-bottom: 0.85rem;
  display: inline-block;
}

.team-member-bio {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.team-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.team-company-pill {
  font-size: 0.75rem;
  color: var(--primary-blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.team-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--primary-blue);
  transition: var(--transition);
}

.team-contact-btn:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.1);
}

.team-culture-box {
  background: linear-gradient(135deg, #073B73 0%, #0B4F9C 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .team-grid-featured {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .team-culture-box {
    padding: 2.25rem 1.5rem;
  }
  .team-filter-bar {
    gap: 0.5rem;
  }
  .team-filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

