@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --primary: #0098af;
  --primary-dark: #007a8c;
  --primary-light: #007a8c;
  --secondary: #007a8c;
  --accent: #0098af;
  --accent-hover: #e55a24;
  --dark: #071820;
  --dark-2: #0d2430;
  --dark-3: #163545;
  --dark-4: #1e4a5c;
  --gray: #6B7280;
  --light-gray: #e6f7f9;
  --white: #ffffff;
  --text-primary: #0d2430;
  --text-secondary: #4B5563;
  --text-muted: #9CA3AF;
  --border: #e5e7eb;
  --border-teal: #d4eef2;
  --success: #0098af;
  --warning: #F59E0B;
  --gradient-primary: linear-gradient(135deg, #0098af 0%, #007a8c 100%);
  --gradient-dark: linear-gradient(135deg, #071820 0%, #0d3a4a 100%);
  --gradient-accent: linear-gradient(135deg, #0098af 0%, #F59E0B 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 152, 175, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 152, 175, 0.1);
  --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.14);
  --shadow-glow: 0 0 40px rgba(0, 152, 175, 0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 32px;
  --radius-full: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Urbanist', 'Inter', sans-serif
}

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

html {
  scroll-behavior: smooth;
  font-size: 13.5px;
  -webkit-text-size-adjust: 100%;
  font-display: swap
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%
}

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

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

ul,
ol {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

input,
textarea,
select {
  font-family: inherit
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary)
}

.display-1 {
  font-size: 3.6rem
}

.display-2 {
  font-size: 2.9rem
}

.display-3 {
  font-size: 2.25rem
}

h1 {
  font-size: 2.4rem
}

h2 {
  font-size: 1.9rem
}

h3 {
  font-size: 1.5rem
}

@media (max-width:1024px) {
  .display-1 {
    font-size: 2.8rem
  }

  .display-2 {
    font-size: 2.2rem
  }

  .display-3 {
    font-size: 1.75rem
  }

  h1 {
    font-size: 1.9rem
  }

  h2 {
    font-size: 1.55rem
  }
}

@media (max-width:768px) {
  .display-1 {
    font-size: 2.1rem
  }

  .display-2 {
    font-size: 1.75rem
  }

  .display-3 {
    font-size: 1.5rem
  }

  h1 {
    font-size: 1.65rem
  }

  h2 {
    font-size: 1.4rem
  }

  h3 {
    font-size: 1.2rem
  }
}

h4 {
  font-size: 1.1rem
}

h5 {
  font-size: 1rem
}

h6 {
  font-size: 0.9rem
}

p {
  line-height: 1.75;
  color: var(--text-secondary)
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.text-gradient-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

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

.container-sm {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px
}

.container-lg {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 88px 0
}

.section-sm {
  padding: 52px 0
}

.section-lg {
  padding: 120px 0
}

.grid {
  display: grid
}

.flex {
  display: flex
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease
}

.btn:hover::before {
  transform: translateX(0)
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 153, 168, 0.35)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 153, 168, 0.45);
  color: #ffffff
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px)
}

.btn-accent {
  background: var(--gradient-accent);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35)
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.45);
  color: #ffffff
}

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-md)
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--primary-dark)
}

.btn-ghost {
  background: rgba(0, 153, 168, 0.08);
  color: var(--primary);
  border: 2px solid rgba(0, 153, 168, 0.3)
}

.btn-ghost:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px)
}

.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px)
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  transform: translateY(-2px)
}

.btn-lg {
  padding: 15px 34px;
  font-size: 0.95rem
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.78rem
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase
}

.badge-primary {
  background: rgba(0, 153, 168, 0.1);
  color: var(--primary);
  border: 1px solid rgba(0, 153, 168, 0.2)
}

.badge-accent {
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent);
  border: 1px solid rgba(255, 107, 53, 0.2)
}

.badge-white {
  background: #f9ffff2b;
    color: #ffffff;
    border: 1px solid rgb(255 255 255 / 25%);
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2)
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition)
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) translateZ(0);
  border-color: rgba(0, 153, 168, 0.2);
  backface-visibility: hidden
}

.card-glass {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 153, 168, 0.15);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg)
}

.navbar {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 153, 168, 0.1);
  box-shadow: 0 2px 20px rgba(0, 153, 168, 0.07);
  transform: translateZ(0);
  backface-visibility: hidden
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 153, 168, 0.1);
  border-bottom: 1px solid rgba(0, 153, 168, 0.12);
  top: 0
}

#topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  background: var(--primary);
  z-index: 1001;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease
}

#topbar.hidden {
  transform: translateY(-100%)
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px
}

.topbar-widget {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff
}

.topbar-widget i {
  font-size: 0.9rem;
  opacity: 0.8
}

.topbar-widget a {
  color: inherit;
  transition: var(--transition)
}

.topbar-widget a:hover {
  color: #ffffff;
  opacity: 1
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 15px
}

.social-icons a {
  color: #ffffff;
  font-size: 0.95rem;
  transition: var(--transition)
}

.social-icons a:hover {
  color: #ffffff;
  transform: translateY(-1px)
}

@media (max-width:768px) {
  #topbar {
    display: block
  }

  .topbar-container {
    justify-content: center;
    gap: 12px;
    padding: 5px 16px;
  }

  .topbar-left .topbar-widget:first-child {
    display: none;
  }

  .topbar-widget {
    font-size: 0.75rem;
  }

  .navbar {
    top: var(--topbar-h, 36px)
  }
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-primary);
  flex-shrink: 0
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.logo-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block
}

.logo-text {
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.01em
}

.logo-text span {
  color: var(--primary)
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  border-radius: 10px
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2
}

.logo-text-wrap strong {
  color: #0d2430;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-family: 'Plus Jakarta Sans', sans-serif
}

.logo-text-wrap span {
  color: #0099A8;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-item {
  position: relative
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: none
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(0, 153, 168, 0.08)
}

.nav-link i.fa-chevron-down {
  font-size: 0.7rem;
  transition: transform 0.3s
}

.nav-link.mega-open i.fa-chevron-down {
  transform: rotate(180deg)
}

.mega-panel-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  z-index: 998
}

.mega-panel-overlay.open {
  display: block
}

.mega-panel {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 2px solid rgba(0, 153, 168, 0.12);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.13);
  z-index: 999;
  opacity: 0;
  transform: translateY(-12px);
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  overflow: hidden
}

.mega-panel.open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible
}

.mega-panel-inner {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 420px;
  max-height: calc(100vh - 80px)
}

.mega-sidebar {
  width: 230px;
  flex-shrink: 0;
  background: #f8fafc;
  border-right: 1px solid rgba(0, 153, 168, 0.1);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow-y: auto
}

.mega-sidebar-label {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  padding: 10px 18px 4px
}

.mega-sidebar-divider {
  height: 1px;
  background: rgba(0, 153, 168, 0.1);
  margin: 6px 14px
}

.mega-sidebar-tab {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.16s;
  border-left: 3px solid transparent;
  user-select: none
}

.mega-sidebar-tab i:first-child {
  width: 16px;
  text-align: center;
  font-size: 0.82rem;
  color: #9ca3af;
  flex-shrink: 0;
  transition: color 0.16s
}

.tab-arrow {
  margin-left: auto;
  font-size: 0.58rem;
  color: #d1d5db;
  transition: all 0.16s
}

.mega-sidebar-tab:hover {
  background: rgba(0, 153, 168, 0.07);
  color: var(--primary);
  border-left-color: rgba(0, 153, 168, 0.3)
}

.mega-sidebar-tab:hover i {
  color: var(--primary)
}

.mega-sidebar-tab:hover .tab-arrow {
  color: var(--primary);
  transform: translateX(2px)
}

.mega-sidebar-tab.active {
  background: #fff;
  color: var(--primary);
  border-left-color: var(--primary);
  font-weight: 700
}

.mega-sidebar-tab.active i {
  color: var(--primary)
}

.mega-sidebar-tab.active .tab-arrow {
  color: var(--primary)
}

.mega-sidebar-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4b5563;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.16s
}

.mega-sidebar-link i {
  width: 16px;
  text-align: center;
  font-size: 0.82rem;
  color: #9ca3af;
  flex-shrink: 0;
  transition: color .16s
}

.mega-sidebar-link:hover {
  background: rgba(0, 153, 168, .07);
  color: var(--primary);
  border-left-color: rgba(0, 153, 168, .3)
}

.mega-sidebar-link:hover i {
  color: var(--primary)
}

.mega-content {
  flex: 1;
  padding: 24px 32px;
  overflow-y: auto;
  display: none
}

.mega-content.active {
  display: block
}

.mega-content-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 153, 168, 0.1)
}

.mega-content-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 3px
}

.mega-content-desc {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.5
}

.mega-section-label {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin: 14px 0 6px;
  padding-bottom: 5px;
  border-bottom: 1px solid #f3f4f6
}

.mega-section-label:first-child {
  margin-top: 0
}

.mega-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px
}

.mega-links-grid.cols2 {
  grid-template-columns: repeat(2, 1fr)
}

.mega-links-grid.cols4 {
  grid-template-columns: repeat(4, 1fr)
}

.mega-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.16s;
  border: 1px solid transparent
}

.mega-link:hover {
  background: rgba(0, 153, 168, 0.06);
  border-color: rgba(0, 153, 168, 0.15)
}

.mega-link-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0
}

.mega-link-text {
  flex: 1;
  min-width: 0
}

.mega-link-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0d2430;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.mega-link-sub {
  font-size: 0.7rem;
  color: #6b7280;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.mega-link:hover .mega-link-name {
  color: var(--primary)
}

.mega-cta-strip {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 153, 168, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.mega-cta-strip p {
  font-size: 0.78rem;
  color: #6b7280;
  margin: 0
}

.mega-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0
}

.mega-cta-btn:hover {
  background: #007A87;
  color: #ffffff;
  transform: translateY(-1px)
}

.simple-dropdown {
  position: absolute;
  top: calc(100%+8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
  z-index: 999
}

.simple-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.simple-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none
}

.simple-dropdown a:hover {
  background: rgba(0, 153, 168, 0.08);
  color: var(--primary)
}

.simple-dropdown a i {
  width: 20px;
  color: var(--primary)
}

.mobile-sub-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 16px;
  border-left: 2px solid rgba(0, 153, 168, 0.2);
  margin-left: 28px;
  margin-bottom: 4px
}

.mobile-nav a.mobile-sub {
  font-size: 0.88rem;
  padding: 10px 14px;
  color: #6B7280;
  font-weight: 500
}

.mobile-nav a.mobile-sub:hover,
.mobile-nav a.mobile-sub.active {
  background: rgba(0, 153, 168, 0.06);
  color: var(--primary)
}

.mobile-sub-group .mobile-sub-group {
  margin-left: 16px;
  border-left-color: rgba(0, 153, 168, 0.12)
}

.mobile-nav a.mobile-sub2 {
  font-size: 0.82rem;
  padding: 8px 14px;
  color: #9CA3AF;
  font-weight: 400
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0
}

.nasscom-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 1px solid rgba(0, 153, 168, 0.15);
  padding-left: 14px;
  opacity: 1;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
  text-decoration: none
}

.nasscom-badge:hover {
  opacity: 0.85;
  transform: translateY(-1px)
}

.nasscom-badge img {
  display: block
}

.nasscom-badge-label {
  font-size: 0.62rem;
  font-weight: 600;
  color: #6B7280;
  letter-spacing: 0.03em;
  line-height: 1
}

.nasscom-badge-box {
  background: linear-gradient(135deg, #f0fafb, #e6f7f9);
  border: 1px solid rgba(0, 153, 168, 0.25);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #0099A8;
  letter-spacing: 0.04em;
  font-family: 'Plus Jakarta Sans', sans-serif
}

@media (max-width:1100px) {
  .nasscom-badge {
    display: none
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition)
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px
}

.section-header .badge {
  margin-bottom: 16px
}

.section-title {
  margin-bottom: 20px;
  color: var(--text-primary)
}

.section-title.light {
  color: #0d2430
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.75
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  margin: 20px auto
}

.stat-item {
  text-align: center
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-display)
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.feature-item div {
  flex: 1;
}

.feature-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.feature-item span {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  display: block;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition)
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 153, 168, 0.2);
  transform: translateY(-4px) translateZ(0)
}

.stars {
  color: #F59E0B;
  font-size: 0.9rem;
  display: flex;
  gap: 2px;
  margin-bottom: 16px
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0d2430;
  flex-shrink: 0
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 2px
}

.author-info span {
  font-size: 0.82rem;
  color: var(--text-muted)
}

.tech-logo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  filter: grayscale(30%);
  opacity: 0.75
}

.tech-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 153, 168, 0.2);
  transform: translateY(-2px) translateZ(0)
}

.form-group {
  margin-bottom: 24px
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 8px
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: #fff;
  transition: var(--transition);
  outline: none
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 153, 168, 0.1)
}

.form-control::placeholder {
  color: var(--text-muted)
}

textarea.form-control {
  resize: vertical;
  min-height: 140px
}

select.form-control {
  cursor: pointer
}

.footer {
  background: var(--primary-dark);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 152, 175, .2);
  color: #f3fdff;
  padding: 80px 0 0
}

.footer-brand {
  margin-bottom: 24px
}

.footer-description {
  color: #eafbff;
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 320px
}

.footer-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase
}

.footer-about {
  color: #FFF;
}

.footer-contact-item i {
  color: #eafbff !important;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-links a {
  color: #eafbff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition)
}

.footer-contact-item a:hover {
  color: #e46300 !important;
}

.footer-links a:hover {
  color: #e46300;
  transform: translateX(4px) translateZ(0)
}

.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  opacity: 0;
  transition: var(--transition)
}

.footer-links a:hover::before {
  opacity: 1
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: var(--transition)
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px) translateZ(0)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px
}

.footer-bottom p {
  color: #eafbff;
  font-size: 0.85rem
}



.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem
}

.footer-bottom a:hover {
  color: #fff;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0, 153, 168, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) translateZ(0);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
  cursor: pointer
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateZ(0)
}

.scroll-top:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: 0 8px 30px rgba(0, 153, 168, 0.45)
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) translateZ(0)
  }

  50% {
    transform: translateY(-16px) translateZ(0)
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1
  }

  100% {
    transform: scale(2);
    opacity: 0
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0
  }

  100% {
    background-position: 200% 0
  }
}

@keyframes blink {
  50% {
    opacity: 0
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 153, 168, 0.25)
  }

  50% {
    box-shadow: 0 0 50px rgba(0, 153, 168, 0.5), 0 0 80px rgba(0, 188, 212, 0.25)
  }
}

@keyframes loading {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px) translateZ(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
  backface-visibility: hidden
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0) translateZ(0)
}

.reveal-left {
  opacity: 0;
  transform: translateX(-20px) translateZ(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
  backface-visibility: hidden
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0) translateZ(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(20px) translateZ(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
  backface-visibility: hidden
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0) translateZ(0)
}

.reveal-delay-1 {
  transition-delay: 0.08s
}

.reveal-delay-2 {
  transition-delay: 0.16s
}

.reveal-delay-3 {
  transition-delay: 0.24s
}

.reveal-delay-4 {
  transition-delay: 0.32s
}

.reveal-delay-5 {
  transition-delay: 0.40s
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  z-index: 1100;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
  border-left: 1px solid var(--border)
}

.mobile-menu.open {
  right: 0
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition)
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border)
}

.mobile-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f4f6;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition)
}

.mobile-close:hover {
  background: rgba(0, 153, 168, 0.1);
  color: var(--primary)
}

.mobile-nav {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.mobile-nav a {
  color: var(--text-secondary);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition)
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: rgba(0, 153, 168, 0.08);
  color: var(--primary)
}

.mobile-nav a i {
  width: 20px;
  color: var(--primary)
}

/* ── Mobile Sub-Menu Enhancements ── */
.mobile-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
}

.mobile-sub-toggle {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 153, 168, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s ease;
}

.mobile-sub-toggle.active {
  transform: rotate(180deg);
  background: var(--primary);
  color: #fff;
}

.mobile-sub-group {
  padding-left: 12px;
  border-left: 1px solid rgba(0, 153, 168, 0.15);
  margin-left: 20px;
  margin-bottom: 8px;
  display: none;
  /* Collapsed by default */
  flex-direction: column;
  gap: 2px;
}

.mobile-sub-group.active {
  display: flex;
}

.mobile-nav a.mobile-sub {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  padding: 10px 16px;
}

.mobile-nav a.mobile-sub2 {
  font-size: 0.85rem !important;
  padding: 8px 12px !important;
  color: var(--text-secondary) !important;
}

.mobile-nav a.mobile-sub2:hover {
  background: rgba(0, 153, 168, 0.05);
}

.mobile-nav-cta {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border)
}

.page-hero {
  padding: 160px 0 90px;
  background: linear-gradient(145deg, #f0fafb 0%, #e6f7f9 40%, #d0f0f4 100%);
  position: relative;
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 153, 168, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.page-hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center
}

.page-hero h1 {
  color: var(--text-primary);
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.8
}

@media (max-width:768px) {
  .page-hero h1 {
    font-size: 1.85rem
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px
}

.breadcrumb a {
  color: var(--text-muted)
}

.breadcrumb a:hover {
  color: var(--primary)
}

.breadcrumb .sep {
  color: var(--border)
}

.breadcrumb .current {
  color: var(--primary)
}

.cta-banner {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%
}

.cta-banner>* {
  position: relative;
  z-index: 1
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  border-radius: var(--radius-lg);
  transition: var(--transition)
}

.process-step:hover {
  background: rgba(0, 153, 168, 0.05)
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 153, 168, 0.3)
}

.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-xl)
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gradient-accent);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 40px;
  transform: rotate(35deg);
  letter-spacing: 0.05em
}

.price-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  font-family: var(--font-display)
}

.price-value sup {
  font-size: 1.4rem;
  vertical-align: top;
  margin-top: 8px;
  font-weight: 600
}

.price-value span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted)
}

.text-center {
  text-align: center
}

.text-left {
  text-align: left
}

.text-right {
  text-align: right
}

.text-white {
  color: #ffffff
}

.text-primary-color {
  color: var(--primary)
}

.text-muted {
  color: var(--text-muted)
}

.font-bold {
  font-weight: 700
}

.font-semibold {
  font-weight: 600
}

.mb-4 {
  margin-bottom: 16px
}

.mb-6 {
  margin-bottom: 24px
}

.mb-8 {
  margin-bottom: 32px
}

.mb-12 {
  margin-bottom: 48px
}

.mt-4 {
  margin-top: 16px
}

.mt-8 {
  margin-top: 32px
}

.gap-4 {
  gap: 16px
}

.gap-6 {
  gap: 24px
}

.hidden {
  display: none
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

.marquee-container {
  overflow: hidden;
  position: relative
}

.marquee-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to right, #fff, transparent)
}

.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to left, #fff, transparent)
}

.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 30s linear infinite
}

.marquee-track:hover {
  animation-play-state: paused
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
  transition: var(--transition)
}

.accordion-item.open {
  border-color: rgba(0, 153, 168, 0.25);
  box-shadow: var(--shadow-sm)
}

.accordion-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #fff;
  transition: var(--transition)
}

.accordion-header:hover {
  background: #f8fffe
}

.accordion-header h4 {
  font-size: 1rem;
  color: var(--text-primary)
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 153, 168, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
  font-size: 0.85rem
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #ffffff
}

.accordion-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease
}

.accordion-body.open {
  max-height: 400px;
  padding: 0 24px 24px
}

.accordion-body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75
}

.toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: #fff;
  color: var(--text-primary);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--success);
  box-shadow: var(--shadow-xl);
  z-index: 9998;
  opacity: 0;
  transform: translateX(120px);
  transition: var(--transition);
  font-size: 0.9rem;
  max-width: 320px
}

.toast.show {
  opacity: 1;
  transform: translateX(0)
}

.toast.error {
  border-left-color: #EF4444
}

.page-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden
}

.loader-logo {
  text-align: center;
  animation: scaleIn 0.5s ease
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(0, 153, 168, 0.15);
  border-radius: 3px;
  margin: 20px auto 0;
  overflow: hidden
}

.loader-progress {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
  animation: loading 1.5s ease forwards
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  z-index: 998;
  box-shadow: var(--shadow-xl);
  transform: translateY(120px);
  opacity: 0;
  transition: var(--transition-slow)
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1
}

@media (max-width:1024px) {
  .section {
    padding: 70px 0
  }

  .cta-banner {
    padding: 54px 36px
  }
}

@media (max-width:768px) {
  .section {
    padding: 52px 0
  }

  .section-header {
    margin-bottom: 44px
  }

  .nav-menu {
    display: none
  }

  .nav-cta {
    display: none
  }

  .lang-toggle {
    display: flex !important;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    border: 1px solid rgba(0, 153, 168, .25)
  }

  .hamburger {
    display: flex
  }

  .cta-banner {
    padding: 36px 24px
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .scroll-top {
    bottom: 20px;
    right: 20px
  }
}

@media (max-width:480px) {
  .container {
    padding: 0 16px
  }

  .section {
    padding: 44px 0
  }
}

.nasscom-logo-img {
  height: 28px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s
}

.nasscom-badge:hover .nasscom-logo-img {
  filter: none
}

/* ── Language toggle ── */
/* lang-toggle kept for backwards-compat; active switcher uses .lang-plugin-menu */
.lang-toggle { display: none; }

/* ── Language plugin switcher (Polylang / WPML / nav menu) ── */
.lang-plugin-menu {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(0, 153, 168, .07);
  border: 1px solid rgba(0, 153, 168, .18);
  border-radius: 99px;
  padding: 3px 4px;
  margin-left: 4px;
  flex-shrink: 0;
  list-style: none;
}

.lang-plugin-menu ul { display: contents; list-style: none; margin: 0; padding: 0; }
.lang-plugin-menu li { list-style: none; }

.lang-plugin-menu a,
.lang-plugin-menu span {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: .71rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s;
  color: #6b7280;
  letter-spacing: .04em;
  line-height: 1;
  text-decoration: none;
}

.lang-plugin-menu a:hover {
  color: #0099A8;
  background: rgba(0, 153, 168, .08);
}

/* Current / active language */
.lang-plugin-menu .current-lang a,
.lang-plugin-menu .lang-active,
.lang-plugin-menu li.current-menu-item a {
  background: #0099A8;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(0, 153, 168, .3);
}

/* ── Navbar crowding fix at medium screens ── */
@media (max-width:1200px) {
  .nav-menu {
    gap: 0
  }

  .nav-link {
    padding: 8px 10px;
    font-size: 0.85rem
  }

  .nav-cta {
    gap: 8px
  }

  .nasscom-badge {
    display: none
  }
}

@media (max-width:1024px) {
  .nav-link {
    padding: 7px 8px;
    font-size: 0.82rem
  }

  .btn-sm {
    padding: 7px 14px;
    font-size: 0.78rem
  }
}

/* ── Service Cards Simplified ── */
.service-card {
  padding: 40px;
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(0, 153, 175, 0.1);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 153, 175, 0.3);
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  z-index: -1;
  filter: grayscale(100%);
  transition: var(--transition);
  border-radius: var(--radius-lg);
}

.service-card:hover .service-card-bg {
  opacity: 0.07;
  filter: grayscale(0%);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 16px rgba(0, 153, 175, 0.2);
}

.service-badge {
  padding: 5px 12px;
  background: rgba(0, 153, 175, 0.1);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 153, 175, 0.15);
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
  font-size: 1.4rem;
  font-family: var(--font-display);
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-features {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.service-features li i {
  color: var(--primary);
  font-size: 0.8rem;
}

.service-link {
  margin-top: auto;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}

.service-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* ── Why Section Premium ── */

.why-quick-stats {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 153, 175, 0.12);
  box-shadow: var(--shadow-md);
  margin-top: 30px;
}

.wqs-item {
  flex: 1;
  text-align: center;
}

.wqs-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-display);
  line-height: 1.1;
  margin-bottom: 4px;
}

.wqs-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wqs-sep {
  width: 1px;
  height: 35px;
  background: rgba(0, 153, 175, 0.15);
  margin: 0 15px;
}


.why-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
}

.why-float-card i {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ── Implementation Methodology Sleek ── */
.process-grid-new {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 40px;
}

.process-grid-new::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(0, 153, 175, 0.2) 20%, rgba(0, 153, 175, 0.2) 80%, transparent);
  z-index: 0;
}

.process-step-new {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 2px solid var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 8px rgba(0, 153, 175, 0.05);
  transition: var(--transition);
}

.process-step-new:hover .process-num {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(0, 153, 175, 0.1);
}

.process-content i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
  opacity: 0.8;
}

.process-step-new h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.process-step-new p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Latest Insights (Blog) Improved ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 153, 175, 0.1);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 153, 175, 0.25);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f0fafb 0%, #d0f0f4 100%);
  flex-shrink: 0;
}

.blog-card-img a {
  display: block;
  height: 100%;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-img-placeholder {
  height: 220px;
  background: linear-gradient(135deg, #f0fafb 0%, #d0f0f4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-card-img-placeholder i {
  font-size: 4rem;
  color: #0098af;
  opacity: 0.2;
}

.blog-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0d2430;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-title a:hover {
  color: #0098af;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.65;
  flex: 1;
}

.blog-img {
  height: 220px;
  background: var(--light-gray);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-img i {
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.15;
}

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.blog-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 15px;
  text-decoration: none;
}

/* ── CTA Banner Redesign ── */
.cta-banner,
.git-bottom-banner {
  background: var(--gradient-primary);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 30%),
    var(--gradient-primary);
  padding: 60px 40px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}

.cta-banner h2,
.git-bottom-banner h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.2;
}

.cta-banner p,
.git-bottom-banner p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
}

.git-bottom-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

@media (max-width: 768px) {

  .cta-banner,
  .git-bottom-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  .git-bottom-actions {
    flex-direction: column;
    width: 100%;
  }
}

/* ── Industry Cards Unified ── */
.industry-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 153, 175, 0.3);
}

.industry-img {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary) !important;
  color: #ffffff;
  font-size: 3.5rem;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.industry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.industry-content {
  padding: 24px;
}

.industry-link {
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.9rem;
  text-decoration: none;
}

/* ── Mega Menu Unified ── */
.mega-link-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
  background: rgba(0, 153, 175, 0.1) !important;
  color: var(--primary) !important;
}

.mega-link:hover .mega-link-icon {
  background: var(--primary) !important;
  color: #fff !important;
}

/* Force all color icons in dropdowns and sections to primary */
.simple-dropdown a i,
.feature-item .icon i,
.contact-feature i,
.mobile-nav a i {
  color: var(--primary) !important;
}



/* Dashboard & Stats */
.dash-stat-trend.up {
  color: var(--success) !important;
}

.live-dot {
  background: var(--success) !important;
}


/* ── Avatars and Product Icons ── */
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff !important;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 153, 175, 0.2);
}

.product-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 153, 175, 0.08) !important;
  color: var(--primary) !important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.product-item:hover .product-icon {
  background: var(--primary) !important;
  color: #fff !important;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 153, 175, 0.2);
}

.product-item h5 {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--text-primary);
  text-align: center;
}

/* ── Why Section Refinements ── */
.why-left h2 {
  margin-bottom: 24px !important;
  line-height: 1.1;
}

.why-desc {
  margin-bottom: 36px !important;
  line-height: 1.8;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.why-actions {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .why-actions {
    flex-direction: column;
    width: 100%;
  }
}

.feature-icon-circle {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  flex: 0 0 34px !important;
  border-radius: 50% !important;
  background: rgba(0, 153, 175, 0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--primary) !important;
  font-size: 0.85rem !important;
  margin-top: 4px;
  overflow: hidden;
}

/* ── CTA BUTTON VISIBILITY FIXES ─────────────────────────────────────────────
   When btn-primary is placed on a teal gradient background (.s-cta, .s-cta-section,
   gradient CTA banners), flip it to a white button for contrast.
   Uses !important to override per-page inline <style> blocks that load after this file.
────────────────────────────────────────────────────────────────────────────── */
.s-cta .btn-primary,
.s-cta .btn.btn-primary,
[class*="pg-cta"] .btn-primary,
[class*="-cta"] .btn-primary,
[class*="cta-btns"] .btn-primary {
  background: #ffffff !important;
  color: var(--primary) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18) !important;
}

.s-cta .btn-primary:hover,
.s-cta .btn.btn-primary:hover,
[class*="pg-cta"] .btn-primary:hover,
[class*="-cta"] .btn-primary:hover,
[class*="cta-btns"] .btn-primary:hover {
  background: #f0fafb !important;
  color: var(--primary-dark) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22) !important;
  transform: translateY(-2px);
}

.s-cta .btn-ghost,
.s-cta .btn.btn-ghost,
[class*="pg-cta"] .btn-ghost,
[class*="-cta"] .btn-ghost,
[class*="cta-btns"] .btn-ghost {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
}

.s-cta .btn-ghost:hover,
.s-cta .btn.btn-ghost:hover,
[class*="pg-cta"] .btn-ghost:hover,
[class*="-cta"] .btn-ghost:hover,
[class*="cta-btns"] .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  color: #ffffff !important;
}

/* Hero section: strengthen secondary/ghost button border on light teal background */
.s-hero .btn-secondary,
.s-hero .btn.btn-secondary {
  border-width: 2px;
  font-weight: 700;
}

.s-actions .btn-primary,
.s-actions .btn.btn-primary {
  box-shadow: 0 6px 24px rgba(0, 122, 140, 0.55);
}

/* ── FDC MODAL LEFT PANEL — force white text on teal gradient ─────────────── */
.fdc-left .fdc-badge,
.fdc-badge {
  color: #ffffff !important;
}

.fdc-left .fdc-headline,
.fdc-headline {
  color: #ffffff !important;
}

.fdc-left .fdc-tagline,
.fdc-tagline {
  color: rgba(255, 255, 255, 0.88) !important;
}

.fdc-left .fdc-perk-icon,
.fdc-perk-icon {
  color: #ffffff !important;
}

.fdc-left .fdc-perks li>div strong,
.fdc-perks li>div strong {
  color: #ffffff !important;
}

.fdc-left .fdc-perks li>div span,
.fdc-perks li>div span {
  color: rgba(255, 255, 255, 0.75) !important;
}

.fdc-left .fdc-avatars span,
.fdc-avatars span {
  color: #ffffff !important;
}

.fdc-left .fdc-social-proof p,
.fdc-social-proof p {
  color: rgba(255, 255, 255, 0.85) !important;
}

.fdc-left .fdc-social-proof p strong,
.fdc-social-proof p strong {
  color: #ffffff !important;
}

/* ── CTA GHOST BUTTON — make second button clearly visible ────────────────── */
[class*="-cta"] .btn-ghost,
[class*="cta-btns"] .btn-ghost,
.s-cta .btn-ghost {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.65) !important;
}

[class*="-cta"] .btn-ghost:hover,
[class*="cta-btns"] .btn-ghost:hover,
.s-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* ── About Page ──────────────────────────────────────────────────── */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px
}

.about-stat {
  text-align: center;
  padding: 28px 16px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: white;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.about-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 20px 20px 0 0;
}

.about-stat:hover {
  box-shadow: 0 16px 40px rgba(0,152,175,0.12);
  transform: translateY(-4px);
  border-color: rgba(0,152,175,0.2);
}

.about-stat-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg,#e6f7f9,#c9f0f5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.about-stat-icon i {
  font-size: 1rem;
  color: #0098af;
}

.about-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Urbanist', sans-serif;
  margin-bottom: 5px;
  line-height: 1;
}

.about-stat span {
  font-size: 0.82rem;
  color: #9CA3AF;
  font-weight: 500;
}

/* ── Two-column grid helper ──────────────────────────────────────── */
.schw-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

/* ── Certification cards ─────────────────────────────────────────── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.cert-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s
}

.cert-card:hover {
  background: rgba(0, 153, 175, 0.1);
  border-color: rgba(0, 153, 175, 0.3);
  transform: translateY(-4px)
}

.cert-card i {
  font-size: 2rem;
  color: var(--primary);
  display: block;
  margin-bottom: 16px
}

.cert-card h5 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
}

.cert-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0
}

/* ── Timeline (compact card version) ────────────────────────────── */
.tl-item {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.tl-item.active .tl-year {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800
}

.tl-year {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  padding-top: 2px;
  min-width: 36px
}

.tl-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.6;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06)
}

.tl-item:last-child .tl-text {
  border-bottom: none;
  padding-bottom: 0
}

/* ── Award cards ─────────────────────────────────────────────────── */
.award-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s
}

.award-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px)
}

.award-card h5 { color: #111827; margin-bottom: 6px }

/* ── Missing spacing utility ─────────────────────────────────────── */
.mb-5 { margin-bottom: 20px }

/* ── Team card photo area + overlay ─────────────────────────────── */
.team-card-photo {
  height: 210px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg,#f0fafb,#d0f0f4);
  flex-shrink: 0;
}

.team-initials-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 900;
  color: #0098af;
  font-family: 'Urbanist', sans-serif;
  letter-spacing: -1px;
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(0,95,107,0.85),rgba(0,152,175,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-card-overlay { opacity: 1; }

.team-overlay-btn {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
}

.team-overlay-btn:hover { background: rgba(255,255,255,0.35); color: #fff; }

/* ── Values horizontal card ──────────────────────────────────────── */
.value-card-new:hover {
  box-shadow: 0 8px 28px rgba(0,152,175,0.1);
  border-color: rgba(0,152,175,0.15) !important;
  transform: translateY(-3px);
}


/* ══════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════════ */

/* ── Why Contact features strip ─────────────────────────────────── */
.contact-features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.contact-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-feature:hover { box-shadow: 0 8px 28px rgba(0,152,175,0.1); transform: translateY(-3px); }
.contact-feature i { font-size: 1.5rem; color: #0098af; }
.contact-feature strong { font-size: 0.95rem; font-weight: 700; color: #0d2430; font-family: 'Urbanist', sans-serif; }
.contact-feature span { font-size: 0.84rem; color: #6b7280; line-height: 1.55; }

/* ── Contact grid (info + form) ──────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* ── Contact info card (dark) ────────────────────────────────────── */
.contact-info-card {
  background: linear-gradient(160deg, #0d2430 0%, #0a3a4a 50%, #071e2a 100%);
  border-radius: 24px;
  padding: 44px 36px;
  color: #fff;
  position: sticky;
  top: 100px;
}
.contact-info-card h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.contact-info-card > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* ── Contact detail row ──────────────────────────────────────────── */
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-detail-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(0,152,175,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0098af;
  font-size: 0.9rem;
}
.contact-detail-info { display: flex; flex-direction: column; gap: 2px; }
.contact-detail-info strong { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact-detail-info a { color: #7ee8f4; font-size: 0.88rem; text-decoration: none; transition: color 0.2s; word-break: break-all; }
.contact-detail-info a:hover { color: #fff; }
.contact-detail-info span { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.55; }

/* ── Contact form card ───────────────────────────────────────────── */
.contact-form-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.contact-form-card h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #0d2430;
  margin-bottom: 8px;
}
.contact-form-card > p { color: #6b7280; font-size: 0.95rem; margin-bottom: 32px; }

/* ── Form row / group / control ──────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-row .form-group { margin-bottom: 0; }

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #0d2430;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  background: #fff;
  font-family: 'Inter', sans-serif;
}
.form-control:focus { border-color: #0098af; box-shadow: 0 0 0 3px rgba(0,152,175,0.1); }
.form-control::placeholder { color: #9ca3af; }

/* ── FAQ accordion ───────────────────────────────────────────────── */
.faq-accordion { display: flex; flex-direction: column; gap: 12px; }

.faq-accordion .accordion-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-accordion .accordion-item.open { box-shadow: 0 4px 20px rgba(0,152,175,0.1); border-color: #d4eef2; }

.faq-accordion .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  gap: 16px;
  transition: background 0.2s;
}
.faq-accordion .accordion-header:hover { background: #f8fafc; }
.faq-accordion .accordion-header h4 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0d2430;
  margin: 0;
  line-height: 1.4;
}
.faq-accordion .accordion-icon {
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,152,175,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0098af;
  font-size: 0.75rem;
  transition: background 0.2s, transform 0.3s;
}
.faq-accordion .accordion-item.open .accordion-icon { background: #0098af; color: #fff; transform: rotate(45deg); }

.faq-accordion .accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 24px;
}
.faq-accordion .accordion-item.open .accordion-body { max-height: 300px; padding: 0 24px 24px; }
.faq-accordion .accordion-body p { color: #4b5563; font-size: 0.93rem; line-height: 1.75; margin: 0; }

/* ── Global offices grid ─────────────────────────────────────────── */
.offices-4-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
}

.office-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.office-card:hover { box-shadow: 0 12px 36px rgba(0,152,175,0.1); transform: translateY(-4px); }

.office-icon { font-size: 2.2rem; margin-bottom: 12px; line-height: 1; }

.office-region {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0098af;
  margin-bottom: 6px;
}
.office-card h4 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0d2430;
  margin-bottom: 10px;
}
.office-card p {
  color: #6b7280;
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.office-contacts { display: flex; flex-direction: column; gap: 8px; }
.office-contacts a {
  color: #0098af;
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.2s;
}
.office-contacts a:hover { color: #005f6b; }

aside {
  color:#fff;
}