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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Sora', 'Inter', system-ui, -apple-system, sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.text-center { text-align: center; }
.text-white { color: #ffffff; }
.text-cyan-200 { color: #a5f3fc; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-600 { color: #475569; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.leading-relaxed { line-height: 1.625; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-10 { margin-top: 2.5rem; }
.ml-2 { margin-left: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; }
.items-start { align-items: flex-start; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.rounded-2xl { border-radius: 1rem; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.hidden { display: none; }
.relative-z10 { position: relative; z-index: 10; }
.bg-white { background-color: #ffffff; }
.bg-slate-50 { background-color: #f8fafc; }

.grid { display: grid; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  transition: all 200ms;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  gap: 0.5rem;
}

.btn-primary {
  background-color: #0284c7;
  color: #ffffff;
}
.btn-primary:hover { background-color: #0369a1; }

.btn-sky {
  background-color: #0ea5e9;
  color: #ffffff;
}
.btn-sky:hover { background-color: #0284c7; }

.btn-white {
  background-color: #ffffff;
  color: #0284c7;
}
.btn-white:hover { background-color: #f0f9ff; }

.btn-white-sky {
  background-color: #ffffff;
  color: #0ea5e9;
  font-weight: 700;
}
.btn-white-sky:hover { background-color: #f0f9ff; }

.btn-outline-white {
  background-color: rgba(103,232,249,0.2);
  border: 2px solid #ffffff;
  color: #ffffff;
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background-color: rgba(255,255,255,0.2); }

.btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.icon-arrow, .icon-arrow-sm {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #0ea5e9;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 3rem;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 150ms;
}
.nav-link:hover { color: #ffffff; background: rgba(255,255,255,0.1); }
.nav-link.active { color: #ffffff; background: rgba(255,255,255,0.15); font-weight: 600; }
.nav-link-button {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 150ms;
  cursor: pointer;
}
.nav-link-button:hover { color: #ffffff; background: rgba(255,255,255,0.1); }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.2rem 0.3rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  font-family: 'Inter', sans-serif;
}
.lang-btn:hover {
  color: #ffffff;
}
.lang-btn-active {
  color: #ffffff;
  background: rgba(255,255,255,0.2);
}
.lang-divider {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 0.5rem;
}

.menu-icon { width: 1.5rem; height: 1.5rem; }

.mobile-menu {
  display: none;
  background-color: #0284c7;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 1rem;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }

.mobile-nav-link {
  display: block;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 150ms;
}
.mobile-nav-link:hover { color: #ffffff; background: rgba(255,255,255,0.1); }
.mobile-nav-link.active { color: #ffffff; background: rgba(255,255,255,0.15); }
.mobile-nav-link-button {
  display: block;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 150ms;
  text-align: left;
  width: 100%;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .mobile-menu-toggle { display: none; }
}

/* ==================== HERO SECTION (Home) ==================== */
.hero-section {
  position: relative;
  max-height: 697px;
  min-height: 697px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,100,140,0.85), rgba(20,130,170,0.70), rgba(60,180,220,0.30));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 4rem 0;
}

.hero-text-block {
  max-width: 700px;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.hero-counter-item { text-align: center; }

.hero-counter-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
}

.hero-counter-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin-top: 0.25rem;
}

@media (max-width: 767px) {
  .hero-counters { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (min-width: 768px) {
  .hero-title { font-size: 3.5rem; }
  .hero-counter-value { font-size: 2.5rem; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 4.5rem; }
}

/* ==================== HERO BANNER (Sub-pages) ==================== */
.hero-banner {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-banner-tall {
  height: 200px;
}

.hero-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,107,168,0.88), rgba(10,92,146,0.78));
  z-index: 2;
}

.hero-banner-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-banner-title {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
}

.hero-banner-title-lg {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .hero-banner-title-lg {
    font-size: 3rem;
  }
}

.hero-banner-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  max-width: 42rem;
}
.hero-banner-subtitle-lg {
  font-size: 1.1rem;
  max-width: 50rem;
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 5rem 0;
}

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.section-title.text-white { color: #ffffff; }

.section-subtitle {
  font-size: 1rem;
  color: #64748b;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle.text-slate-300 { color: #cbd5e1; }

/* ==================== LOGO MARQUEE ==================== */
.logos-section {
  padding: 4rem 0;
  background: #ffffff;
  overflow: hidden;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.marquee-fade-left {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 5rem;
  background: linear-gradient(to right, #ffffff, transparent);
  z-index: 10;
  pointer-events: none;
}

.marquee-fade-right {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 5rem;
  background: linear-gradient(to left, #ffffff, transparent);
  z-index: 10;
  pointer-events: none;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  align-items: center;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee-logo-card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  width: 150px;
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  padding: 0.75rem;
  transition: all 200ms;
}
.marquee-logo-card:hover {
  border-color: #7dd3fc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.marquee-logo-img {
  max-height: 3rem;
  max-width: 120px;
  object-fit: contain;
}

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

/* ==================== ABOUT SECTION (Home) ==================== */
.about-section {
  position: relative;
  padding: 5rem 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-media { }

.about-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  cursor: pointer;
  object-fit: cover;
  background: #0f172a;
}

.about-text { }

.rolling-images,
.rolling-images-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 1rem;
}

.rolling-image-item,
.rolling-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1s ease;
  opacity: 0;
}

.rolling-image-item.active,
.rolling-image.active {
  opacity: 1;
}

.rolling-image-item img,
.rolling-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

/* ==================== OVERVIEW VIDEO (About page) ==================== */
.overview-video {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  cursor: pointer;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.section-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31,41,55,0.65);
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 300ms;
  border: 1px solid rgba(255,255,255,0.3);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.15);
}

.service-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms;
}
.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body,
.service-card-content {
  padding: 1.25rem;
}

.service-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.service-card-desc {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.6;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #0284c7;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 0.75rem;
  transition: color 150ms;
}
.service-card-link:hover { color: #0369a1; }

.service-details-list {
  margin-top: 0.75rem;
  list-style: none;
  padding: 0;
}
.service-details-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #334155;
  padding: 0.25rem 0;
}
.bullet {
  width: 6px;
  height: 6px;
  background: #0ea5e9;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==================== MARINE SECTION ==================== */
.marine-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.marine-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,89,133,0.50);
  z-index: 2;
}

.marine-header {
  text-align: center;
  margin-bottom: 3rem;
}

.marine-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.marine-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 42rem;
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .marine-pills-grid { grid-template-columns: repeat(5, 1fr); }
}

.marine-pill {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  transition: all 200ms;
}
.marine-pill:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.marine-pill-icon {
  width: 2rem;
  height: 2rem;
  color: #a5f3fc;
  margin: 0 auto 0.75rem;
}

.marine-pill-text {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
}

.marine-footer-text {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== STATS SECTION ==================== */
.stats-section {
  padding: 5rem 0;
  background: #f8fafc;
}

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

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.stats-row-inline {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
}
.stats-row-inline .stat-item {
  text-align: left;
}
.stats-row-inline .stat-number {
  font-size: 1.75rem;
}

.stat-item { text-align: center; }

.stat-value,
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0ea5e9;
}

.stat-value-static {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0ea5e9;
}

.stat-label {
  color: #475569;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* ==================== PROJECTS SECTION ==================== */
.projects-section {
  position: relative;
  padding: 5rem 0;
  background: #ffffff;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
}

.project-card {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 300ms;
  background: #ffffff;
}
.project-card:hover {
  box-shadow: 0 20px 30px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.project-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms;
}
.project-card:hover .project-card-image img {
  transform: scale(1.05);
}

.project-category-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #0ea5e9;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.project-card-body,
.project-card-content {
  padding: 1.25rem;
}

.project-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.project-card-location {
  color: #0284c7;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.project-card-desc {
  color: #475569;
  font-size: 0.85rem;
}

/* ==================== LEADERSHIP SECTION ==================== */
.leadership-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
}

.leader-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 300ms;
  border: 1px solid #f1f5f9;
}
.leader-card:hover {
  box-shadow: 0 20px 30px rgba(0,0,0,0.12);
}

.leader-video-container {
  position: relative;
  height: 16rem;
  background: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.leader-video {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

.leader-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 200ms;
}
.leader-video-container:hover .leader-video-overlay {
  background: rgba(0,0,0,0.2);
}

.play-icon {
  width: 3rem;
  height: 3rem;
  color: #ffffff;
  opacity: 0.8;
}

.hover-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  background: rgba(0,0,0,0.4);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
}

.leader-info {
  padding: 1.5rem;
}

.leader-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.leader-role {
  color: #0284c7;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.leader-bio {
  color: #475569;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.leader-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.leader-detail-item { }

.leader-detail-label,
.detail-label {
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.125rem;
}

.leader-detail-value,
.detail-value {
  font-size: 0.85rem;
  color: #334155;
}

.leader-detail-university {
  font-size: 0.8rem;
  color: #64748b;
  font-style: italic;
}

/* ==================== COMMITMENT SECTION ==================== */
.commitment-section {
  padding: 5rem 0;
  background: #ffffff;
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .commitment-grid { grid-template-columns: repeat(3, 1fr); }
}

.commitment-card {
  text-align: center;
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid #f1f5f9;
  transition: all 300ms;
}
.commitment-card:hover {
  box-shadow: 0 12px 20px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.commitment-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: #f0f9ff;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: all 300ms;
}
.commitment-card:hover .commitment-icon-wrapper {
  background: #e0f2fe;
  transform: scale(1.1);
}

.commitment-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #0ea5e9;
}

.commitment-card-title,
.commitment-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.commitment-card-desc,
.commitment-desc {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.625;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.25rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-subtitle-line2 {
  margin-bottom: 2rem;
}

/* ==================== MISSION / VISION (About) ==================== */
.mission-vision-card {
  background: #f0f9ff;
  border-radius: 1rem;
  padding: 2rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

/* ==================== CLIENT LOGOS (About) ==================== */
.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .client-logos-grid { grid-template-columns: repeat(6, 1fr); }
}

.client-logos-grid-lg {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .client-logos-grid-lg { grid-template-columns: repeat(4, 1fr); }
}
.client-logo-name {
  font-size: 0.75rem;
  color: #64748b;
  text-align: center;
  margin-top: 0.5rem;
}

.client-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  padding: 0.75rem;
  transition: all 200ms;
}
.client-logo-card:hover {
  border-color: #7dd3fc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.client-logo-card img {
  max-height: 3rem;
  max-width: 100%;
  object-fit: contain;
}

/* ==================== FOOTER ==================== */
footer.site-footer {
  background: #0f172a;
  color: #ffffff;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-col { }

.footer-logo {
  height: 2.5rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-desc {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.625;
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li + li { margin-top: 0.5rem; }
.footer-links a,
.footer-links button {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color 150ms;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: start;
}
.footer-links a:hover,
.footer-links button:hover { color: #ffffff; }

.footer-link-button {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color 150ms;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: start;
}
.footer-link-button:hover { color: #ffffff; }

.footer-contact { }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.875rem;
}
.footer-contact-item + .footer-contact-item { margin-top: 0.75rem; }
.footer-contact-item a {
  color: #94a3b8;
  transition: color 150ms;
}
.footer-contact-item a:hover { color: #ffffff; }
.footer-contact-item p { margin: 0; }

.footer-admin-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: #94a3b8;
  border: 1px solid rgba(148,163,184,.25);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-admin-link:hover {
  color: #e2e8f0;
  border-color: rgba(148,163,184,.5);
  background: rgba(255,255,255,.05);
}

.footer-contact-icon {
  width: 1rem;
  height: 1rem;
  color: #38bdf8;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.sector-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 200ms;
}
.sector-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.sector-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.sector-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
}
@media (max-width: 767px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

.footer-cta-strip {
  background: #0ea5e9;
  text-align: center;
  padding: 3rem 0;
  width: 100%;
}
.footer-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-cta-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  max-width: 42rem;
  margin: 0 auto 1.25rem;
  line-height: 1.8;
}
html.is-rtl .footer-cta-strip {
  direction: rtl;
}
html.is-rtl .footer-cta-title,
html.is-rtl .footer-cta-desc,
html.is-rtl .footer-cta-btn {
  font-family: 'Noto Kufi Arabic', 'Segoe UI', Tahoma, sans-serif;
}
.footer-cta-btn {
  display: inline-block;
  background: #fff;
  color: #0ea5e9;
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms, transform 150ms;
}
.footer-cta-btn:hover {
  background: #f0f9ff;
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-copyright {
  color: #94a3b8;
  font-size: 0.875rem;
}

.footer-tagline {
  color: #64748b;
  font-size: 0.75rem;
}

/* ==================== MODALS ==================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-sm { max-width: 28rem; padding: 2rem; }
.modal-lg {
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.modal-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.modal-close-btn {
  color: #94a3b8;
  padding: 0.25rem;
  border-radius: 0.375rem;
  transition: color 150ms;
}
.modal-close-btn:hover { color: #475569; }
.modal-close-btn-light { color: rgba(255,255,255,0.7); }
.modal-close-btn-light:hover { color: #ffffff; }

/* Contact popup */
.contact-list { display: flex; flex-direction: column; gap: 0.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: background 150ms;
  cursor: pointer;
}
.contact-item:hover { background: #f0f9ff; }
.contact-item-static { cursor: default; }
.contact-item-static:hover { background: #f8fafc; }

.contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #0ea5e9;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-label {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: #475569;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Quote modal */
.quote-modal-header {
  background: #0E6BA8;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-shrink: 0;
}

.quote-modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  font-style: italic;
}

.quote-modal-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.quote-form-scroll {
  overflow-y: auto;
  padding: 1.5rem;
  flex: 1;
}

.quote-section { margin-bottom: 1.5rem; }
.quote-section-border { border-top: 1px solid #e2e8f0; padding-top: 1.5rem; }

.quote-section-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0E6BA8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.quote-success-content {
  padding: 3rem;
  text-align: center;
}

.success-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: #dcfce7;
  border-radius: 9999px;
  color: #16a34a;
  margin-bottom: 1.5rem;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.success-text {
  color: #475569;
  margin-bottom: 1.5rem;
}

/* Form elements */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.required { color: #ef4444; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  outline: none;
  transition: all 150ms;
  background: #ffffff;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  box-shadow: 0 0 0 2px rgba(56,189,248,0.4);
  border-color: #0ea5e9;
}
.form-textarea { resize: none; min-height: 5rem; }

.pill-group,
.pill-group-multi {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 2px solid #e2e8f0;
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  transition: all 150ms;
  cursor: pointer;
  background: #ffffff;
}
.pill-btn:hover { border-color: #7dd3fc; }
.pill-btn.selected {
  border-color: #0ea5e9;
  background: #f0f9ff;
  color: #0369a1;
}

/* ==================== CHATBOT ==================== */
.chatbot-bubble {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: auto;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: #0A3D6B;
  color: #ffffff;
  box-shadow: 0 10px 15px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
  cursor: pointer;
  border: none;
}
.chatbot-bubble:hover {
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
  transform: scale(1.05);
}

.chatbot-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: #f59e0b;
  border-radius: 9999px;
  animation: pulse 2s infinite;
}

.chatbot-panel {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: auto;
  z-index: 50;
  width: 360px;
  height: 500px;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.chatbot-panel.hidden {
  display: none !important;
}

.chatbot-header {
  background: linear-gradient(to right, #0A3D6B, #0D5A9E);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.chatbot-header-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.chatbot-header-info { flex: 1; }

.chatbot-header-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
}

.chatbot-header-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
}

.chatbot-close {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms;
  color: #ffffff;
  border: none;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  position: relative;
  z-index: 100;
}
.chatbot-close:hover { background: rgba(255,255,255,0.2); }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 1rem;
  background: #f9fafb;
}

.chatbot-msg {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.chatbot-msg-user { flex-direction: row-reverse; }
.chatbot-msg-assistant { flex-direction: row; }

.chatbot-msg-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.chatbot-msg-avatar-bot { background: #0A3D6B; color: #ffffff; }
.chatbot-msg-avatar-user { background: #d1d5db; color: #4b5563; }

.chatbot-msg-bubble {
  max-width: 75%;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  line-height: 1.6;
  word-break: break-word;
}
.chatbot-msg-bubble-assistant {
  background: #ffffff;
  color: #1f2937;
  border-radius: 1rem 1rem 1rem 0.25rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid #f3f4f6;
}
.chatbot-msg-bubble-user {
  background: #0A3D6B;
  color: #ffffff;
  border-radius: 1rem 1rem 0.25rem 1rem;
}

.chatbot-loading {
  display: flex;
  gap: 0.375rem;
  padding: 0.25rem 0;
}
.chatbot-dot {
  width: 8px;
  height: 8px;
  background: #9ca3af;
  border-radius: 9999px;
  animation: bounce 1s infinite;
}
.chatbot-dot:nth-child(2) { animation-delay: 150ms; }
.chatbot-dot:nth-child(3) { animation-delay: 300ms; }

.chatbot-input-area {
  padding: 0.75rem;
  background: #ffffff;
  border-top: 1px solid #f3f4f6;
  flex-shrink: 0;
}

.chatbot-input-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chatbot-input {
  flex: 1;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  background: #f3f4f6;
  border-radius: 0.75rem;
  border: none;
  outline: none;
  transition: box-shadow 150ms;
}
.chatbot-input::placeholder { color: #9ca3af; }
.chatbot-input:focus { box-shadow: 0 0 0 2px rgba(10,61,107,0.3); }
.chatbot-input:disabled { opacity: 0.5; }

.chatbot-send {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #0A3D6B;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: background 150ms;
}
.chatbot-send:hover { background: #0D5A9E; }
.chatbot-send:disabled { opacity: 0.4; cursor: not-allowed; }

.chatbot-powered {
  font-size: 0.625rem;
  color: #9ca3af;
  text-align: center;
  margin-top: 0.375rem;
}

/* ==================== ANIMATIONS ==================== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================== LEAD FUNNEL ==================== */
.funnel-panel {
  position: fixed;
  left: 2rem;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  z-index: 45;
  animation: funnelSlideIn 400ms ease;
}
@keyframes funnelSlideIn {
  from { opacity: 0; transform: translateY(-50%) translateX(30px); }
  to { opacity: 1; transform: translateY(-50%) translateX(0); }
}
.funnel-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.funnel-step-badge {
  background: #0ea5e9;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.funnel-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.funnel-close:hover {
  color: #0f172a;
}
.funnel-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  text-align: left;
}
.funnel-field {
  margin-bottom: 1rem;
}
.funnel-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.5rem;
}
.funnel-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.funnel-options-row {
  flex-wrap: nowrap;
}
.funnel-option {
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
  color: #334155;
  cursor: pointer;
  transition: all 150ms;
  font-weight: 500;
  text-align: left;
}
.funnel-option:hover {
  border-color: #0ea5e9;
  background: #f0f9ff;
}
.funnel-option.selected {
  background: #0ea5e9;
  color: #fff;
  border-color: #0ea5e9;
}
.funnel-helper {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.5rem;
  line-height: 1.4;
  text-align: left;
}
.funnel-input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  color: #0f172a;
  background: #fff;
  outline: none;
  transition: border-color 150ms;
}
.funnel-input:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
.funnel-submit {
  margin-top: 0.5rem;
}
.btn-full {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.funnel-panel-success {
  text-align: center;
}
.funnel-success-content {
  padding: 1rem 0;
}
.funnel-success-icon {
  margin-bottom: 1rem;
}
.funnel-success-text {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

/* ==================== BLOG CARDS ==================== */
.blog-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: transform 200ms, box-shadow 200ms;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.blog-card-image {
  height: 200px;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-content {
  padding: 1.25rem;
}
.blog-card-date {
  font-size: 0.75rem;
  color: #0ea5e9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.blog-card-excerpt {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 767px) {
  .chatbot-panel {
    width: calc(100vw - 2rem);
    right: 1rem;
    bottom: 1rem;
    height: 70vh;
  }
  .hero-banner-title { font-size: 1.5rem; }
  .hero-banner-title-lg { font-size: 1.75rem; }
  .cta-title { font-size: 1.5rem; }
  .section-title { font-size: 1.5rem; }
  .marine-title { font-size: 1.5rem; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stats-row-inline { flex-wrap: wrap; gap: 1rem; }
  .nav-links .nav-link { font-size: 0.75rem; }
  .funnel-panel {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    top: auto;
    width: auto;
    transform: none;
    max-height: 80vh;
    overflow-y: auto;
    animation: funnelSlideUp 300ms ease;
  }
  @keyframes funnelSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ==================== Hero Funnel Panel (Arabic RTL) ==================== */
.funnel-hero-panel {
  right: 2rem;
  left: auto;
  width: 360px;
  padding: 1rem 1.25rem;
  top: 4.5rem;
  transform: none;
  max-height: calc(100vh - 5rem);
  overflow-y: auto;
}
.funnel-hero-panel .funnel-options {
  flex-direction: column;
  gap: 0.25rem;
}
.funnel-hero-panel .funnel-option {
  width: 100%;
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
}
.funnel-hero-panel .funnel-title {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}
.funnel-hero-panel .funnel-question-block {
  margin-bottom: 0.5rem;
}
.funnel-hero-panel .funnel-helper {
  font-size: 0.7rem;
  margin-top: 0.3rem;
}
.funnel-hero-panel .funnel-comm-box {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}
.funnel-hero-panel .funnel-comm-input {
  font-size: 0.78rem;
  padding: 0.4rem;
  rows: 2;
}
.funnel-hero-panel .funnel-comm-send {
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
}
.funnel-hero-panel .funnel-panel-header {
  justify-content: flex-end;
}
.funnel-hero-panel[dir="rtl"] {
  direction: rtl;
  text-align: right;
}
.funnel-hero-panel[dir="rtl"] .funnel-panel-header {
  justify-content: flex-start;
}
.funnel-question-block {
  margin-bottom: 1.25rem;
}
.funnel-title-ar {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-family: 'Noto Kufi Arabic', 'Segoe UI', Tahoma, sans-serif;
}
.funnel-qnum {
  color: #0ea5e9;
  font-weight: 800;
  margin-left: 0.25rem;
}
.funnel-options-ar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.funnel-option-ar {
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  color: #334155;
  cursor: pointer;
  transition: all 150ms;
  font-weight: 500;
  text-align: right;
  font-family: 'Noto Kufi Arabic', 'Segoe UI', Tahoma, sans-serif;
}
.funnel-option-ar:hover {
  border-color: #0ea5e9;
  background: #f0f9ff;
}
.funnel-option-ar.selected {
  background: #0ea5e9;
  color: #fff;
  border-color: #0ea5e9;
}
.funnel-helper-ar {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 0.5rem;
  line-height: 1.5;
  text-align: right;
  font-family: 'Noto Kufi Arabic', 'Segoe UI', Tahoma, sans-serif;
}
[dir="rtl"] .funnel-title,
[dir="rtl"] .funnel-option,
[dir="rtl"] .funnel-helper {
  text-align: right;
  font-family: 'Noto Kufi Arabic', 'Segoe UI', Tahoma, sans-serif;
}
.funnel-comm-box {
  margin-top: 1rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
}
.funnel-comm-input {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  color: #0f172a;
  background: #fff;
  outline: none;
  resize: vertical;
  direction: rtl;
  text-align: right;
  font-family: 'Noto Kufi Arabic', 'Segoe UI', Tahoma, sans-serif;
  transition: border-color 150ms;
}
.funnel-comm-input:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
.funnel-comm-send {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.6rem;
  background: #0ea5e9;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Noto Kufi Arabic', 'Segoe UI', Tahoma, sans-serif;
  transition: background 150ms;
}
.funnel-comm-send:hover {
  background: #0E6BA8;
}
@media (max-width: 767px) {
  .funnel-hero-panel {
    right: 1rem;
    left: 1rem;
    width: auto;
  }
}

/* ==================== ARABIC / RTL ==================== */
html.is-rtl {
  direction: ltr;
  overflow-x: hidden;
  overflow-y: scroll;
}
html.is-rtl body {
  direction: rtl;
  text-align: right;
  font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
  overflow-y: auto;
  overflow-x: hidden;
}
html.is-rtl .nav-link-button {
  background: none;
  border: none;
  padding: 0;
  font-weight: inherit;
}
html.is-rtl .hero-text-block {
  text-align: right;
  align-items: flex-end;
}
html.is-rtl .hero-title {
  text-align: right;
}
html.is-rtl .hero-subtitle {
  text-align: right;
}
html.is-rtl .hero-buttons {
  justify-content: flex-end;
  flex-direction: row-reverse;
}
html.is-rtl .hero-counters {
  justify-content: flex-end;
  flex-direction: row-reverse;
}
html.is-rtl .hero-counter-item {
  text-align: right;
}
html.is-rtl .footer-grid {
  direction: rtl;
}
html.is-rtl .grid {
  direction: rtl;
}
html.is-rtl .section-header {
  text-align: center;
}
html.is-rtl .icon-arrow,
html.is-rtl .icon-arrow-sm {
  transform: scaleX(-1);
}
html.is-rtl .ml-2 { margin-left: 0; margin-right: 0.5rem; }
html.is-rtl .service-card-link svg { transform: scaleX(-1); }
html.is-rtl .stats-row-inline { justify-content: flex-end; }
html.is-rtl .stats-row-inline .stat-item { text-align: right; }
html.is-rtl .grid.grid-2 { direction: rtl; }
html.is-rtl .hero-banner-content { text-align: center; }
html.is-rtl .hero-banner-title,
html.is-rtl .hero-banner-title-lg { text-align: center; }
html.is-rtl .hero-banner-subtitle,
html.is-rtl .hero-banner-subtitle-lg { text-align: center; }
html.is-rtl .section-title { text-align: center; }
html.is-rtl .section-subtitle { text-align: center; }
html.is-rtl .section-title.text-center { text-align: center; }
html.is-rtl .client-logos-grid { direction: rtl; }
html.is-rtl .client-logo-name { text-align: center; }
html.is-rtl .sectors-grid { direction: rtl; }
html.is-rtl .sector-name { text-align: center; }
html.is-rtl .leader-info { text-align: right; }
html.is-rtl .leader-details { text-align: right; }
html.is-rtl .commitment-card { text-align: right; }
html.is-rtl .cta-title,
html.is-rtl .cta-subtitle { text-align: center; }
html.is-rtl .cta-section .text-center { text-align: center; }
html.is-rtl .cta-section .btn { margin-right: 0; }
html.is-rtl .mission-vision-card { text-align: right; }
html.is-rtl .card-title { text-align: right; }
html.is-rtl .footer-col { text-align: right; }
html.is-rtl .footer-links { text-align: right; }
html.is-rtl .footer-desc { text-align: right; }
html.is-rtl .footer-bottom { text-align: right; }
html.is-rtl .footer-copyright { text-align: right; }
html.is-rtl .footer-tagline { text-align: right; }
html.is-rtl .footer-admin-link svg { margin-left: 6px; margin-right: 0; }
html.is-rtl .footer-contact-item { flex-direction: row-reverse; text-align: right; }
html.is-rtl .footer-contact-item svg { margin-left: 0.5rem; margin-right: 0; }
html.is-rtl .contact-item { flex-direction: row-reverse; text-align: right; }
html.is-rtl .contact-icon { margin-left: 1rem; margin-right: 0; }
html.is-rtl .chatbot-bubble { left: 1.5rem; right: auto !important; }
html.is-rtl .chatbot-panel { left: 1.5rem; right: auto !important; }
html.is-rtl .chatbot-msg-user { flex-direction: row-reverse; }
html.is-rtl .chatbot-msg-assistant { flex-direction: row-reverse; }
html.is-rtl .funnel-panel { left: 2rem; right: auto; }
@media (max-width: 767px) { html.is-rtl .funnel-panel { left: 1rem; right: 1rem; } }
html.is-rtl .funnel-title { text-align: right; }
html.is-rtl .funnel-label { text-align: right; }
html.is-rtl .funnel-helper { text-align: right; }
html.is-rtl .funnel-options { direction: rtl; }
