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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;  
  overflow-y: scroll; 
}

body {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */

  box-sizing: border-box;
  overflow-x: hidden;
  background-color: white;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

button{
  border: none;
}











/* ========================  
    Header Section  
   ======================== */


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

.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-ftab-float,
.goog-tooltip,
.goog-tooltip:hover,
#goog-gt-tt,
.skiptranslate,
.goog-te-combo {
  display: none !important;
  visibility: hidden !important;
}

body { top: 0 !important; }
font[style*="vertical-align"] { vertical-align: inherit !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

#google_translate_element {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.header-container {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 12px 16px;
  overflow: visible;
  transition: padding 0.3s ease;
}

.header-container.scrolled {
  padding: 8px 16px;
}

.header-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header-container.scrolled .header-wrapper {
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

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

.logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.logo img {
  height: 35px;
  width: auto;
  display: block;
  vertical-align: middle;
}

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

.nav-menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu ul li {
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  margin-left: 32px;
  text-decoration: none;
  color: #1a1a2e;
  font-weight: 500;
  font-size: 14.5px;
  height: 38px;
  position: relative;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #17b6ff, #0085ff);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: #0085ff;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-icon-group {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 28px;
  padding-left: 28px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.07);
  color: #334155;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.nav-icon-link:hover {
  background: rgba(0, 133, 255, 0.08);
  border-color: rgba(0, 133, 255, 0.2);
  color: #0085ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 133, 255, 0.15);
}

.nav-icon-link i {
  font-size: 14px;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  padding: 8px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.menu-toggle:hover {
  background: rgba(0, 133, 255, 0.07);
  border-color: rgba(0, 133, 255, 0.2);
}

.bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background: #1a1a2e;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.menu-toggle.is-open .bar1 { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open .bar2 { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-open .bar3 { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  width: calc(100% - 24px);
  max-width: 480px;
  margin: 8px auto 0;
  padding: 14px 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.mobile-menu.show-menu {
  display: flex;
  animation: menuSlide 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes menuSlide {
  from { opacity: 0; transform: translateY(-10px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 11px 12px;
  text-decoration: none;
  color: #1a1a2e;
  font-weight: 500;
  font-size: 15px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover {
  background: rgba(0, 133, 255, 0.07);
  color: #0085ff;
}

.mobile-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.mobile-social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.25s ease;
}

.mobile-social-link:hover {
  background: rgba(0, 133, 255, 0.08);
  border-color: rgba(0, 133, 255, 0.2);
  color: #0085ff;
  transform: translateY(-2px);
}

.lang-switcher {
  position: relative;
  margin-left: 6px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 36px;
  padding: 6px 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.03);
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.lang-btn:hover {
  background: rgba(0, 133, 255, 0.07);
  border-color: rgba(0, 133, 255, 0.2);
  color: #0085ff;
}

.lang-btn i.bi-globe2 {
  font-size: 14px;
}

.lang-btn .lang-chevron {
  font-size: 10px;
  opacity: 0.6;
  transition: transform 0.25s ease;
}

.lang-btn[aria-expanded="true"] .lang-chevron {
  transform: rotate(180deg);
}

.lang-current {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 164px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.lang-dropdown-center {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 164px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px) scale(0.97);
  transform-origin: top center;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.lang-dropdown-center.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0) scale(1);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  background: none;
  color: #334155;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-option:hover {
  background: rgba(0, 133, 255, 0.07);
  color: #0085ff;
}

.lang-option.active,
.lang-option[aria-selected="true"] {
  background: rgba(0, 133, 255, 0.1);
  color: #0085ff;
  font-weight: 600;
}

.lang-flag {
  font-size: 15px;
  line-height: 1;
}

.lang-float-wrap {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9990;
}

.lang-float-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #17b6ff, #0085ff);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.4px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 133, 255, 0.35);
  transition: all 0.3s ease;
}

.lang-float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 133, 255, 0.45);
}

.lang-float-label {
  font-size: 12px;
  letter-spacing: 0.5px;
}

.lang-float-dropdown {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  min-width: 172px;
  padding: 10px 6px 6px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9991;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px) scale(0.97);
  transform-origin: bottom right;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.lang-float-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.lang-float-heading {
  padding: 0 12px 8px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: #94a3b8;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.lang-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #0d1b2a;
  color: #fff;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.lang-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.lang-btn.translating,
.lang-float-btn.translating {
  opacity: 0.6;
  pointer-events: none;
  cursor: wait;
}

.lang-btn.translating i.bi-globe2,
.lang-float-btn.translating i.bi-globe2 {
  animation: spinGlobe 0.8s linear infinite;
}

@keyframes spinGlobe {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

[dir="rtl"] .lang-dropdown,
[dir="rtl"] .lang-float-dropdown {
  right: auto;
  left: 0;
  transform-origin: top left;
}

[dir="rtl"] .lang-float-dropdown {
  transform-origin: bottom left;
}

[dir="rtl"] .lang-float-wrap {
  right: auto;
  left: 24px;
}

[dir="rtl"] .lang-switcher {
  margin-left: 0;
  margin-right: 6px;
}

[dir="rtl"] .nav-icon-group {
  margin-left: 0;
  margin-right: 28px;
  padding-left: 0;
  padding-right: 28px;
  border-left: none;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

[dir="rtl"] .lang-option {
  text-align: right;
  flex-direction: row-reverse;
}

[dir="rtl"] .nav-link {
  margin-left: 0;
  margin-right: 32px;
}

@media (max-width: 767px) {

  .header-container {
    padding: 10px 12px;
  }

  .header-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 8px 16px;
    border-radius: 20px;
  }

  .logo {
    grid-column: 1;
    justify-self: start;
  }

  .lang-switcher-mobile-center {
    grid-column: 2;
    justify-self: center;
  }

  .menu-toggle {
    grid-column: 3;
    justify-self: end;
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .lang-float-wrap {
    bottom: 80px;
    right: 16px;
  }

}

@media (min-width: 768px) {

  .mobile-menu {
    display: none !important;
  }

  .lang-switcher-mobile-center {
    display: none;
  }

}












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



.heroTitle {
  font-family: 'Syne', sans-serif;
}

.heroSection,
.heroSubtitle,
.heroCtaRow,
.heroTrustRow,
.heroRatingPill,
.heroFloatCard {
  font-family: 'DM Sans', sans-serif;
}



.heroSection {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f7f7f7);
  padding: 150px 20px 120px;
  text-align: center;
  color: #222;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 1;
  overflow: hidden;
}

.heroSection.animateIn {
  opacity: 1;
  transform: translateY(0);
}



.heroBg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.heroBgOrb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
}

.heroBgOrb1 {
  width: 700px;
  height: 700px;
  top: -250px;
  left: -250px;
  background: radial-gradient(circle, rgba(42, 153, 222, 0.25), transparent 70%);
  animation: moveBg 25s linear infinite;
}

.heroBgOrb2 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(60, 180, 255, 0.25), transparent 70%);
  animation: moveBg 30s linear infinite;
}

@keyframes moveBg {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(100px, 80px); }
  100% { transform: translate(0, 0); }
}

.heroGridLines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 126, 196, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMove 30s linear infinite;
  -webkit-animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
  0%   { background-position: 0 0, 0 0; }
  50%  { background-position: 200px 200px, 200px 200px; }
  100% { background-position: 0 0, 0 0; }
}



.heroContainer {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}



.heroTopRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.heroAvatarStack {
  display: flex;
  align-items: center;
  margin: 0;
  height: 44px;
}

.heroAvatarStack img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: avatarPulse 3s infinite;
}

.heroAvatarStack img:first-child {
  margin-left: 0;
}

.heroAvatarStack img:hover {
  transform: scale(1.25) translateY(-6px);
  z-index: 10;
  box-shadow: 0 18px 45px rgba(42, 153, 222, 0.25);
}

@keyframes avatarPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

.heroRatingPill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(0, 133, 255, 0.12);
  border-radius: 50px;
  padding: 6px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  font-size: 14px;
  font-weight: 500;
  color: #334155;
}

.heroRatingStars {
  color: #f59e0b;
  font-size: 11px;
  letter-spacing: 1.5px;
}

.heroRatingText strong {
  color: #0085ff;
  font-weight: 700;
}



.heroTitle {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: #0a0f1e;
  margin: 30px 0;
}

.heroTitleHighlight {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}

.heroTypingText {
  background: linear-gradient(
    90deg,
    #0099ff,
    #0077ff,
    #0052ff,
    #008cff
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
  to { background-position: 200% center; }
}

.heroTitleCursor {
  display: inline-block;
  margin-left: 2px;
  color: #0077ff;
  font-weight: 300;
  animation: blink 0.8s steps(2, start) infinite;
}

@keyframes blink {
  to { visibility: hidden; }
}



.heroSubtitle {
  font-size: 1.09rem;
  color: #555;
  max-width: 650px;
  margin: 18px auto 35px;
  line-height: 1.5;
  letter-spacing: 0.3px;
}



.heroCtaRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.heroBtnPrimary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #17b6ff, #0085ff);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(42, 153, 222, 0.35);
  transition: all 0.3s ease;
  letter-spacing: 0.2px;
}

.heroBtnPrimary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 50px rgba(42, 153, 222, 0.45);
}

.heroBtnPrimary svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.heroBtnPrimary:hover svg {
  transform: translateX(4px);
}

.heroBtnOutline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  color: #0a0f1e;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}

.heroBtnOutline:hover {
  background: rgba(0, 133, 255, 0.05);
  border-color: rgba(0, 133, 255, 0.4);
  color: #0085ff;
  transform: translateY(-2px);
}



.heroTrustRow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 50px;
  padding: 9px 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
}

.heroTrustItem {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
}

.heroTrustItem i {
  font-size: 13px;
  color: #0085ff;
  flex-shrink: 0;
}

.heroTrustItem i.bi-lightning-charge-fill {
  color: #f59e0b;
}

.heroTrustSep {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1;
  font-weight: 300;
  flex-shrink: 0;
}



.heroFloatCard {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.heroFloatLeft {
  left: 3%;
  bottom: 22%;
  animation: bobLeft 5s ease-in-out infinite;
}

.heroFloatRight {
  right: 3%;
  top: 38%;
  animation: bobRight 5s ease-in-out infinite 2.5s;
}

@keyframes bobLeft {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-12px) rotate(0deg); }
}

@keyframes bobRight {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50%       { transform: translateY(-12px) rotate(0deg); }
}

.heroFloatIcon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f4ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 133, 255, 0.15);
}

.heroFloatBody {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.heroFloatNum {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0a0f1e;
  line-height: 1;
  letter-spacing: -0.5px;
  font-family: 'Syne', sans-serif;
}

.heroFloatLabel {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
}

.heroFloatSub {
  font-size: 10.5px;
  font-weight: 400;
  color: #94a3b8;
  white-space: nowrap;
}

.heroFloatBadge {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 20px;
  background: rgba(0, 133, 255, 0.1);
  color: #0052cc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  align-self: flex-start;
  white-space: nowrap;
  flex-shrink: 0;
}

.heroFloatBadgeGreen {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
  .heroFloatCard {
    display: none;
  }
}

@media (max-width: 768px) {

  .heroSection {
    padding: 140px 15px 80px;
  }

  .heroTopRow {
    flex-direction: column;
    gap: 12px;
  }

  .heroAvatarStack img {
    width: 44px;
    height: 44px;
  }

  .heroTitle {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -1px;
  }

  .heroSubtitle {
    font-size: 0.95rem;
    padding: 0 10px;
    margin-top: 14px;
  }

  .heroCtaRow {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .heroBtnPrimary,
  .heroBtnOutline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .heroTrustRow {
    gap: 10px;
    padding: 8px 18px;
  }

  .heroTrustItem {
    font-size: 12px;
  }

}

@media (prefers-reduced-motion: reduce) {

  .heroBgOrb,
  .heroGridLines,
  .heroAvatarStack img,
  .heroFloatCard {
    animation: none;
  }

}





















/* ===================  
    Scroll Wrapper  
   =================== */


.scrollWrapper {
  position: relative;
  width: 100%;
  z-index: 2;
}

.scrollInner {
  position: relative;
  width: 100%;
  height: 76px;
  overflow: hidden;
  background: linear-gradient(100deg, #03082e, #060d2e, #03082e);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
}


.scrollFadeLeft,
.scrollFadeRight {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.scrollFadeLeft {
  left: 0;
  background: linear-gradient(
    to right,
    #03082e 0%,
    transparent 100%
  );
}

.scrollFadeRight {
  right: 0;
  background: linear-gradient(
    to left,
    #03082e 0%,
    transparent 100%
  );
}



.scrollTrack {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollTicker 22s linear infinite;
  will-change: transform;
  position: relative;
  z-index: 2;
}

.scrollTrack:hover {
  animation-play-state: paused;
}

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



.scrollText {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

.scrollItem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.2px;
  padding: 0 28px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.scrollItem:hover {
  color: #ffffff;
}

.scrollDivider {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}



.scrollIcon {
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.scrollItem:hover .scrollIcon {
  transform: scale(1.2) rotate(-5deg);
}

.scrollIconRed    { color: #ff6b6b; }
.scrollIconOrange { color: #ffa94d; }
.scrollIconGreen  { color: #51cf66; }
.scrollIconBlue   { color: #4dabf7; }
.scrollIconPurple { color: #cc5de8; }



@media (max-width: 768px) {

  .scrollInner {
    height: 64px;
  }

  .scrollTrack {
    animation-duration: 16s;
  }

  .scrollItem {
    font-size: clamp(0.88rem, 3.5vw, 1rem);
    padding: 0 20px;
    gap: 8px;
  }

  .scrollIcon {
    font-size: 0.95rem;
  }

  .scrollFadeLeft,
  .scrollFadeRight {
    width: 60px;
  }

}

@media (prefers-reduced-motion: reduce) {

  .scrollTrack {
    animation: none;
  }

}



















/* ========================  
    Our Service Section  
   ======================== */

.svcSection {
  padding: 130px 20px 160px;
  background: linear-gradient(175deg, #f4f8ff 0%, #ffffff 55%, #f8f4ff 100%);
  position: relative;
  overflow: hidden;
}

.svcBgDecor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.svcBgOrb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.svcBgOrb1 {
  width: 700px;
  height: 700px;
  top: -250px;
  left: -200px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.08), transparent 70%);
}

.svcBgOrb2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(123, 47, 247, 0.07), transparent 70%);
}

.svcBgOrb3 {
  width: 400px;
  height: 400px;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 198, 255, 0.05), transparent 70%);
}

.svcInner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.svcHeader {
  text-align: center;
  margin-bottom: 80px;
}

.svcEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #0085ff;
  background: rgba(0, 133, 255, 0.07);
  border: 1px solid rgba(0, 133, 255, 0.16);
  padding: 7px 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
}

.svcEyebrowDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0085ff;
  animation: eyebrowPulse 2s infinite;
  flex-shrink: 0;
}

@keyframes eyebrowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.6); }
}

.svcTitle {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: #0a0f1e;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.svcTitleAccent {
  background: linear-gradient(120deg, #00c6ff, #7b2ff7, #ff4eff);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
  color: transparent;
}

.svcTitleLine {
  display: block;
}

.svcIntro {
  font-size: 1rem;
  color: #64748b;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.65;
}

.svcGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.svcCard {
  position: relative;
  padding: 38px 32px 34px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svcCard::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(145deg, transparent, rgba(0, 123, 255, 0.04));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.svcCard:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.1),
    0 6px 20px rgba(0, 0, 0, 0.06);
}

.svcCard:hover::after {
  opacity: 1;
}

.svcCardSoft {
  background: linear-gradient(145deg, #f0fdf4, #f8fffc);
  border-color: rgba(47, 158, 68, 0.1);
}

.svcCardAccentLine {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 0 0 6px 6px;
}

.svcAccentRed   { background: linear-gradient(90deg, #ff6b6b, #ffa94d); }
.svcAccentBlue  { background: linear-gradient(90deg, #4dabf7, #748ffc); }
.svcAccentGreen { background: linear-gradient(90deg, #51cf66, #38d9a9); }

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

.svcIconBox {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.svcCard:hover .svcIconBox {
  transform: scale(1.1) rotate(-4deg);
}

.svcIconBoxRed   { background: rgba(255, 107, 107, 0.1); color: #e03131; box-shadow: 0 4px 14px rgba(255, 107, 107, 0.2); }
.svcIconBoxBlue  { background: rgba(77, 171, 247, 0.1);  color: #1971c2; box-shadow: 0 4px 14px rgba(77, 171, 247, 0.2);  }
.svcIconBoxGreen { background: rgba(81, 207, 102, 0.1);  color: #2f9e44; box-shadow: 0 4px 14px rgba(81, 207, 102, 0.2);  }
.svcIconBoxWhite { background: rgba(255, 255, 255, 0.2);  color: #ffffff; box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15); }

.svcNum {
  font-size: 48px;
  font-weight: 800;
  color: #0a0f1e;
  opacity: 0.06;
  line-height: 1;
  letter-spacing: -3px;
  user-select: none;
}

.svcNumWhite {
  color: #ffffff;
  opacity: 0.15;
}

.svcCardTitle {
  font-size: 18px;
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.svcCardTitleWhite { color: #ffffff; }

.svcCardText {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5675;
  position: relative;
  z-index: 1;
  flex: 1;
}

.svcCardTextWhite { color: rgba(255, 255, 255, 0.82); }

.svcTagGroup {
  display: flex;
  flex-direction: row;
  gap: 6px;
  position: relative;
  z-index: 1;
  margin-top: 4px;
}

.svcTag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  font-style: italic;
  padding: 4px 11px;
  border-radius: 50px;
  letter-spacing: 0.1px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.svcTag i {
  font-size: 12px;
  font-style: normal;
  flex-shrink: 0;
}

.svcTag:hover {
  transform: translateX(4px);
}

.svcTagRed {
  color: #c92a2a;
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.2);
}

.svcTagRed:hover {
  box-shadow: 0 2px 12px rgba(255, 107, 107, 0.15);
}

.svcTagBlue {
  color: #1971c2;
  background: rgba(77, 171, 247, 0.08);
  border: 1px solid rgba(77, 171, 247, 0.22);
}

.svcTagBlue:hover {
  box-shadow: 0 2px 12px rgba(77, 171, 247, 0.15);
}

.svcTagGreen {
  color: #2f9e44;
  background: rgba(81, 207, 102, 0.08);
  border: 1px solid rgba(81, 207, 102, 0.22);
}

.svcTagGreen:hover {
  box-shadow: 0 2px 12px rgba(81, 207, 102, 0.15);
}

.svcTagWhite {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.svcTagWhite:hover {
  box-shadow: 0 2px 12px rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.2);
}

.svcCardFeatured {
  background: linear-gradient(145deg, #0052cc, #0099ff 60%, #00b4ff);
  border: none;
  box-shadow:
    0 28px 70px rgba(0, 133, 255, 0.38),
    0 6px 20px rgba(0, 82, 255, 0.22);
}

.svcCardFeatured:hover {
  box-shadow:
    0 36px 90px rgba(0, 133, 255, 0.48),
    0 10px 28px rgba(0, 82, 255, 0.3);
}

.svcCardFeatured::after {
  background: linear-gradient(145deg, transparent, rgba(255, 255, 255, 0.07));
}

.svcFeaturedGlow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.svcFeaturedShine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  pointer-events: none;
}

@media (max-width: 1100px) {

  .svcGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
  }

}

@media (max-width: 768px) {

  .svcSection {
    padding: 90px 20px 100px;
  }

  .svcHeader {
    margin-bottom: 48px;
  }

  .svcTitle {
    font-size: clamp(1.9rem, 6vw, 2.3rem);
    letter-spacing: -1px;
  }

  .svcGrid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 420px;
    margin: 0 auto;
  }

  .svcCard {
    padding: 24px 20px 22px;
  }

  .svcTagGroup {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .svcTag {
    font-size: 11px;
  }

}























/* ========================  
    Credibility Section  
   ======================== */


.creditSection {
  background: #f0f4f8;
  padding: 150px 20px 110px;
  position: relative;
  overflow: hidden;
}

.creditSection::before {
  content: '';
  position: absolute;
  top: -220px;
  right: -180px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 133, 255, 0.07), transparent 70%);
  pointer-events: none;
}

.creditSection::after {
  content: '';
  position: absolute;
  bottom: -180px;
  left: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05), transparent 70%);
  pointer-events: none;
}

.creditInner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.creditGrid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 34px;
  align-items: stretch;
  margin-bottom: 20px;
}



.creditImgCard {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.06);
  height: 100%;
  min-height: 400px;
}

.creditImgWrap {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.creditImgCard:hover .creditImgWrap img {
  transform: scale(1.05);
}

.creditImgOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 24px 26px;
  background: linear-gradient(
    to top,
    rgba(8, 15, 35, 0.92) 0%,
    rgba(8, 15, 35, 0.5) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.creditImgBadge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 8px;
}

.creditImgBadgeDot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  animation: pulseStatus 2s infinite;
  flex-shrink: 0;
}

.creditBigNum {
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -2px;
}

.creditBigLabel {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}



.creditRight {
  display: flex;
  flex-direction: column;
  gap: 20px;
}



.creditStatRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.creditStatCard {
  background: #0f172a;
  border-radius: 20px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.creditStatCard::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(0, 133, 255, 0.06);
  pointer-events: none;
}

.creditStatCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.creditStatCardAlt {
  background: linear-gradient(145deg, #0062cc, #0085ff);
}

.creditStatCardAlt::before {
  background: rgba(255, 255, 255, 0.07);
}

.creditStatTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.creditStatIcon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.creditStatIcon i {
  font-size: 17px;
  color: #fbbf24;
}

.creditStatCardAlt .creditStatIcon i {
  color: #ffffff;
}

.creditStatPill {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.07);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.creditStatPillDark {
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.14);
}

.creditStatNum {
  font-size: clamp(2.6rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -2px;
  margin: 0;
}

.creditStatSuffix {
  font-size: 1.8rem;
  color: #fbbf24;
  letter-spacing: 0;
}

.creditStatName {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.creditStatCardAlt .creditStatName {
  color: rgba(255, 255, 255, 0.7);
}

.creditStarRow {
  display: flex;
  gap: 3px;
  font-size: 14px;
  color: #fbbf24;
  margin-top: -4px;
}

.creditStarHalf {
  opacity: 0.35;
}

.creditYearDots {
  display: flex;
  gap: 6px;
  margin-top: -4px;
}

.creditYearDots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}



.creditWorkCard {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: stretch;
  gap: 22px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  border: 1px solid rgba(0, 149, 255, 0.161);
}

.creditWorkCard:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}

.creditWorkLeft {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.creditWorkTag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  color: #0085ff;
  background: rgba(0, 133, 255, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  width: fit-content;
}

.creditWorkTag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0085ff;
  animation: pulseGreen 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulseGreen {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.5); }
}

.creditWorkTitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.creditWorkDesc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.creditWorkMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.creditWorkMetaItem {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #475569;
}

.creditWorkMetaItem i {
  color: #10b981;
  font-size: 13px;
}

.creditWorkRight {
  flex-shrink: 0;
  width: 210px;
  height: 190px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background: #f8fafc;
}

.creditWorkRight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.creditWorkCard:hover .creditWorkRight img {
  transform: scale(1.04);
}



.creditStatus {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 28px;
  margin-bottom: 20px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}

.creditStatusItem {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  flex: 1;
  justify-content: center;
}

.creditStatusItem i {
  font-size: 15px;
  color: #0085ff;
}

.creditStatusDot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulseStatus 2s infinite;
}

@keyframes pulseStatus {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); }
  50%       { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0.06); }
}

.creditStatusDivider {
  width: 1px;
  height: 26px;
  background: #e2e8f0;
  flex-shrink: 0;
  margin: 0 16px;
}



.creditTrusted {
  text-align: center;
  margin-top: 150px;
  
}

.creditTrustedLabel {
  font-size: 20px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 32px;
}

.creditLogoTrack {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.creditLogoList {
  display: flex;
  align-items: center;
  gap: 52px;
  width: max-content;
  animation: logoScroll 24s linear infinite;
}

.creditLogoList img {
  height: 36px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(100%);
  flex-shrink: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.creditLogoList img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.12);
}

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

@media (prefers-reduced-motion: reduce) {
  .creditLogoList {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }
}



@media (max-width: 1024px) {

  .creditGrid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 768px) {

  .creditSection {
    padding: 70px 20px;
  }

  .creditGrid {
    grid-template-columns: 1fr;
  }

  .creditImgCard {
    min-height: 300px;
  }

  .creditWorkCard {
    flex-direction: column;
  }

  .creditWorkRight {
    width: 100%;
    height: 200px;
  }

  .creditStatus {
    flex-direction: column;
    gap: 14px;
    padding: 20px;
  }

  .creditStatusDivider {
    width: 70%;
    height: 1px;
    margin: 0;
  }

}

@media (max-width: 520px) {

  .creditStatRow {
    grid-template-columns: 1fr;
  }

  .creditWorkRight {
    height: 180px;
  }

}



















/* ===========  
    About Us
   ===========*/

.aboutUs {
  padding: 120px 20px 140px;
  background: linear-gradient(175deg, #f4f8ff 0%, #ffffff 55%, #f0f4ff 100%);
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  position: relative;
  overflow: hidden;
}

.aboutBg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.aboutOrb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}

.aboutOrb1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(0, 133, 255, 0.08), transparent 70%);
}

.aboutOrb2 {
  width: 500px;
  height: 500px;
  bottom: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(123, 47, 247, 0.07), transparent 70%);
}

.aboutContainer {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.aboutContentCol {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.aboutEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #0085ff;
  background: rgba(0, 133, 255, 0.07);
  border: 1px solid rgba(0, 133, 255, 0.16);
  padding: 7px 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
}

.aboutEyebrowDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0085ff;
  flex-shrink: 0;
  animation: aboutDotPulse 2s infinite;
}

@keyframes aboutDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.6); }
}

.aboutHeading {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #0a0f1e;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin: 0;
}

.aboutHeadingAccent {
  font-style: normal;
  background: linear-gradient(120deg, #0085ff, #00c6ff, #7b2ff7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.aboutText {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.aboutText p {
  font-size: 15px;
  line-height: 1.75;
  color: #4b5675;
  margin: 0;
}

.aboutText strong {
  color: #0a0f1e;
  font-weight: 700;
}

.aboutStats {
  display: flex;
  align-items: center;
  gap: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 18px 24px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.04);
}

.aboutStat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  align-items: center;
}

.aboutStatNum {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0a0f1e;
  line-height: 1;
  letter-spacing: -0.5px;
}

.aboutStatLabel {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
}

.aboutStatDivider {
  width: 1px;
  height: 36px;
  background: #e2e8f0;
  flex-shrink: 0;
}

.aboutButton {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  padding: 13px 28px;
  background: linear-gradient(135deg, #17b6ff, #0085ff);
  color: #ffffff;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14.5px;
  font-family: inherit;
  box-shadow: 0 8px 24px rgba(0, 133, 255, 0.35);
  transition: all 0.3s ease;
}

.aboutButton svg {
  transition: transform 0.3s ease;
}

.aboutButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 133, 255, 0.45);
}

.aboutButton:hover svg {
  transform: translateX(4px);
}

.aboutImageCol {
  position: relative;
}

.aboutImageFrame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.14),
    0 6px 20px rgba(0, 0, 0, 0.08);
}

.aboutImage {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.aboutImageFrame:hover .aboutImage {
  transform: scale(1.03);
}

.aboutImageOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(10, 15, 30, 0.3) 100%
  );
  pointer-events: none;
}

.ratingBadge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.ratingStars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1;
}

.ratingInfo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ratingScore {
  font-size: 18px;
  font-weight: 800;
  color: #0a0f1e;
  line-height: 1;
}

.ratingLabel {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
}

.aboutFloatBadge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.aboutFloatIcon {
  font-size: 22px;
  line-height: 1;
}

.aboutFloatText {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.aboutFloatNum {
  font-size: 17px;
  font-weight: 800;
  color: #0a0f1e;
  line-height: 1;
}

.aboutFloatSub {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 1024px) {

  .aboutContainer {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .aboutImage {
    height: 380px;
  }

  .ratingBadge {
    left: 16px;
    bottom: 16px;
  }

  .aboutFloatBadge {
    right: 16px;
    top: 16px;
  }

}

@media (max-width: 768px) {

  .aboutUs {
    padding: 80px 20px 100px;
  }

  .aboutHeading {
    font-size: clamp(1.8rem, 5.5vw, 2.2rem);
    letter-spacing: -1px;
  }

  .aboutText p {
    font-size: 14.5px;
  }

  .aboutStats {
    padding: 16px 18px;
  }

  .aboutStatNum {
    font-size: 1.4rem;
  }

  .aboutButton {
    align-self: center;
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }

  .aboutImage {
    height: 300px;
  }

  .aboutFloatBadge {
  top: 50px;
  right: -18px;
  }

  .aboutFloatIcon, .ratingStars {
  font-size: 14px;
  }
  .aboutFloatNum, .ratingScore {
  font-size: 13px;
  }
  .aboutFloatSub, .ratingLabel {
  font-size: 9px;
  }
}

@media (max-width: 480px) {

  .aboutStatLabel {
    font-size: 11px;
  }

}














/* ===================  
   Portfolio Section  
   =================== */

.portContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 140px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.portfolioHeading {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #0a0f1e;
  margin-bottom: 16px;
}

.portfolioSubheading {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #64748b;
  max-width: 580px;
  margin: 0 auto 52px;
}

.portFilters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.portFilters button {
  padding: 9px 20px;
  background: #ffffff;
  color: #334155;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13.5px;
  font-family: inherit;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.portFilters button:hover {
  background: rgba(0, 133, 255, 0.07);
  border-color: rgba(0, 133, 255, 0.25);
  color: #0085ff;
  transform: translateY(-1px);
}

.portFilters button.active {
  background: linear-gradient(135deg, #0052cc, #0085ff);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(0, 133, 255, 0.35);
  transform: translateY(-1px);
}

.portFilters button:focus {
  outline: 2px solid #0085ff;
  outline-offset: 2px;
}

.portGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.portCard {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 28px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  padding: 20px;
}

.portCard:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.1),
    0 6px 20px rgba(0, 133, 255, 0.08);
}

.portImageWrapper {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #f8faff;
}

.portImageWrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  cursor: zoom-in;
  border-radius: 14px;
}

.portImageWrapper:hover img {
  transform: scale(1.2);
}

.portLabel {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #ffffff;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(34, 160, 74, 0.88);
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
}

.portLabel.after {
  background: rgba(220, 10, 32, 0.88);
}

.portArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  background: rgba(0, 133, 255, 0.82);
  color: #ffffff;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: background 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 133, 255, 0.4);
  backdrop-filter: blur(6px);
}

.portArrow:hover {
  background: #0052cc;
  transform: translateY(-50%) scale(1.1);
}

.portArrowLeft  { left: 10px; }
.portArrowRight { right: 10px; }

.portContent {
  padding: 18px 4px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.portContent h3 {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.3;
}

.portContent button {
  background: transparent;
  color: #0085ff;
  border: 1.5px solid rgba(0, 133, 255, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13.5px;
  font-family: inherit;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 2px 10px rgba(0, 133, 255, 0.08);
}

.portContent button:hover,
.portContent button:focus {
  background: linear-gradient(135deg, #0052cc, #0085ff);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0, 133, 255, 0.35);
  transform: translateY(-3px);
  outline: none;
}

.portContent button i {
  font-size: 15px;
  transition: transform 0.3s ease;
}

.portContent button:hover i {
  animation: portBounce 0.4s ease;
}

@keyframes portBounce {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(4px); }
}

.portModalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 28, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s;
  z-index: 9999;
  padding: 20px;
}

.portModalOverlay.active {
  visibility: visible;
  opacity: 1;
}

.portModalContent {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 900px;
  max-height: 88vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  animation: portModalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 24px;
  z-index: 10000;
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}

.portModalContent::-webkit-scrollbar { width: 4px; }
.portModalContent::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }

@keyframes portModalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.portModalClose {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  color: #64748b;
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease;
  box-shadow: none;
  padding: 0;
}

.portModalClose:hover {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.2);
  color: #dc2626;
  transform: rotate(90deg);
}

.portModalImageWrapper {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: visible;
  border-radius: 16px;
  background: #f8faff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.portModalImageWrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 16px;
}

.portModalImageWrapper img.loaded {
  opacity: 1;
}

.portModalLabel {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #ffffff;
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(34, 160, 74, 0.88);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
}

.portModalLabel.after {
  background: rgba(220, 10, 32, 0.88);
}

.portModalArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  line-height: 42px;
  text-align: center;
  background: rgba(0, 133, 255, 0.82);
  color: #ffffff;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: block;
  user-select: none;
  z-index: 5;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 133, 255, 0.4);
  backdrop-filter: blur(6px);
}

.portModalArrow:hover {
  background: #0052cc;
  transform: translateY(-50%) scale(1.1);
}

.portModalArrowLeft  { left: -20px; }
.portModalArrowRight { right: -20px; }

.portModalDesc {
  padding: 20px 24px;
  font-size: 14.5px;
  text-align: center;
  line-height: 1.7;
  color: #4b5675;
  margin-top: 16px;
  font-weight: 400;
  background: #f8faff;
  border: 1px solid rgba(0, 133, 255, 0.08);
  border-radius: 14px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  user-select: text;
}

.portModalFooter {
  padding: 16px 0 4px;
  text-align: center;
}

.portModalFooter a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #0052cc, #0085ff);
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 133, 255, 0.35);
  transition: all 0.3s ease;
}

.portModalFooter a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 133, 255, 0.45);
}

@media (max-width: 600px) {

  .portContainer {
    padding: 80px 20px 100px;
  }

  .portGrid {
    grid-template-columns: 1fr;
  }

  .portModalContent {
    padding: 16px;
  }

  .portModalImageWrapper {
    height: 260px;
  }

  .portfolioHeading {
    font-size: clamp(1.7rem, 5.5vw, 2rem);
  }

  .portfolioSubheading {
    font-size: 0.95rem;
  }

  .portContent h3 {
    font-size: 15.5px;
  }

  .portContent button {
    font-size: 13px;
    padding: 9px 16px;
  }

  .portFilters button {
    padding: 8px 16px;
    font-size: 13px;
  }

}















/* ===================  
   Why Choose Us  
   =================== */

  .whyChooseUsSection {
  background: linear-gradient(135deg, #003d99 0%, #0052cc 40%, #0085ff 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.whyBg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.whyOrb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.whyOrb1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
}

.whyOrb2 {
  width: 500px;
  height: 500px;
  bottom: -180px;
  right: -130px;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.2), transparent 70%);
}

.whyGridLines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.whyChooseUsSection .container {
  position: relative;
  z-index: 2;
}

.whyEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 7px 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.whyEyebrowDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
  animation: whyDotPulse 2s infinite;
}

@keyframes whyDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.6); }
}

.whyTitle {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.whySubtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 44px;
  font-weight: 400;
}

.featureItem {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease, transform 0.3s ease;
}

.featureItem:last-child {
  margin-bottom: 0;
}

.featureItem:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(6px);
}

.featureIconBox {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.featureItem:hover .featureIconBox {
  transform: scale(1.1) rotate(-4deg);
}

.featureIconYellow { background: rgba(245, 158, 11, 0.2);  color: #fbbf24; box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2); }
.featureIconPink   { background: rgba(236, 72, 153, 0.2);  color: #f472b6; box-shadow: 0 4px 14px rgba(236, 72, 153, 0.2); }
.featureIconCyan   { background: rgba(0, 198, 255, 0.2);   color: #67e8f9; box-shadow: 0 4px 14px rgba(0, 198, 255, 0.2); }

.featureContent h5 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.featureContent p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin: 0;
}

.ctaBlobBg {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.ctaGlassCard {
  background: #ffffff;
  border-radius: 24px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.15);
  color: #0a0f1e;
  padding: 40px 36px;
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ctaGlassCard:hover {
  transform: translateY(-8px);
}

.ctaCardBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #0085ff;
  background: rgba(0, 133, 255, 0.08);
  border: 1px solid rgba(0, 133, 255, 0.18);
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ctaBadgeDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0085ff;
  flex-shrink: 0;
  animation: whyDotPulse 2s infinite;
}

.ctaGlassCard h3 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: #0a0f1e;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.ctaGlassCard p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 24px;
}

.whyList {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whyList li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
}

.whyCheckIcon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(0, 133, 255, 0.08);
  border: 1px solid rgba(0, 133, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0085ff;
  font-size: 14px;
  flex-shrink: 0;
}

.whyCtaBtn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  background: linear-gradient(135deg, #0052cc, #0085ff);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 133, 255, 0.35);
  transition: all 0.3s ease;
}

.whyCtaBtn svg {
  transition: transform 0.3s ease;
}

.whyCtaBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 133, 255, 0.45);
  color: #ffffff;
}

.whyCtaBtn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {

  .whyChooseUsSection {
    padding: 80px 0;
  }

  .chooseRow {
    width: 90%;
    margin: 0 auto;
  }

  .whyTitle {
    font-size: clamp(1.8rem, 5.5vw, 2.2rem);
  }

  .whySubtitle {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  .featureItem {
    padding: 16px 18px;
    gap: 14px;
  }

  .featureContent h5 {
    font-size: 15px;
  }

  .featureContent p {
    font-size: 13.5px;
  }

  .ctaGlassCard {
    padding: 28px 24px;
  }

  .ctaGlassCard h3 {
    font-size: clamp(1.3rem, 4.5vw, 1.6rem);
  }

  .whyCtaBtn {
    width: 100%;
    justify-content: center;
  }

}















  /* =======================  
   Reviews Section  
   ======================= */

 
.revSection {
  background: linear-gradient(175deg, #ffffff 0%, #f4f8ff 55%, #ffffff 100%);
  padding: 120px 20px 140px;
  position: relative;
  overflow: hidden;
  color: #1e293b;
}
 
.revBg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
 
.revOrb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}
 
.revOrb1 {
  width: 700px;
  height: 700px;
  top: -250px;
  left: -200px;
  background: radial-gradient(circle, rgba(0, 133, 255, 0.07), transparent 70%);
}
 
.revOrb2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06), transparent 70%);
}
 
.revOrb3 {
  width: 400px;
  height: 400px;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(76, 175, 80, 0.04), transparent 70%);
}
 
.revInner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
 
.revHeader {
  text-align: center;
  margin-bottom: 64px;
}
 
.revEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 7px 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
 
.revEyebrowDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  flex-shrink: 0;
  animation: revDotPulse 2s infinite;
}
 
@keyframes revDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.6); }
}
 
.testimonialsHeading {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #0a0f1e;
  margin-bottom: 16px;
}
 
.testimonialsIntro {
  font-size: 1rem;
  color: #64748b;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}
 
.testimonialsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  align-items: stretch;
  margin-bottom: 48px;
}
 
.testimonialLarge,
.testimonialMedium,
.testimonialSmall {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 10px 32px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
 
.testimonialLarge:hover,
.testimonialMedium:hover,
.testimonialSmall:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 6px 16px rgba(0, 133, 255, 0.07);
}
 
.testimonialLarge  { grid-column: span 2; }
.testimonialMedium { grid-column: span 2; }
.testimonialSmall  { grid-column: span 2; }
 
.darkMode {
  background: linear-gradient(145deg, #0a0f1e, #0f172a);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.2),
    0 10px 32px rgba(0, 0, 0, 0.25);
}
 
.darkMode:hover {
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 6px 20px rgba(0, 133, 255, 0.15);
}
 
.revCardGlow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12), transparent 70%);
  pointer-events: none;
}
 
.revDarkGlow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 133, 255, 0.15), transparent 70%);
  pointer-events: none;
}
 
.revStatBadge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 14px;
  padding: 10px 16px;
  width: fit-content;
}
 
.revStatBadgeBlue {
  background: rgba(0, 133, 255, 0.07);
  border-color: rgba(0, 133, 255, 0.18);
}
 
.revStatNum {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
  letter-spacing: -1px;
}
 
.revStatBadgeBlue .revStatNum {
  color: #0085ff;
}
 
.revStatLabel {
  font-size: 13px;
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.2;
}
 
.revStatSub {
  font-size: 11px;
  font-weight: 400;
  color: #64748b;
  display: block;
}
 
.revStatBadge .revStatLabel,
.revStatBadge .revStatSub {
  display: flex;
  flex-direction: column;
}
 
.revQuoteIcon {
  font-size: 64px;
  line-height: 0.5;
  color: #0085ff;
  opacity: 0.1;
  font-family: Georgia, serif;
  font-weight: 900;
  user-select: none;
  margin-bottom: -8px;
}
 
.revQuoteIconSm {
  font-size: 56px;
}
 
.revQuoteIconDark {
  color: #ffffff;
  opacity: 0.12;
}
 
.testimonialText {
  font-size: 15px;
  line-height: 1.72;
  color: #4b5675;
  flex: 1;
  margin: 0;
  font-style: italic;
}
 
.whiteText {
  color: rgba(255, 255, 255, 0.82);
}
 
.testimonialMeta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  margin-top: auto;
}
 
.darkMode .testimonialMeta {
  border-top-color: rgba(255, 255, 255, 0.08);
}
 
.testimonialAvatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
 
.metaInfo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
 
.metaName {
  font-size: 14px;
  font-weight: 700;
  color: #0a0f1e;
  margin: 0;
  line-height: 1.2;
}
 
.metaRole {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 400;
  margin: 0;
}
 
.revVerify {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 133, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.revVerify i {
  font-size: 14px;
  color: #0085ff;
}
 
.revVerifyWhite {
  background: rgba(255, 255, 255, 0.1);
}
 
.revVerifyWhite i {
  color: rgba(255, 255, 255, 0.7);
}
 
.reviewsFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 28px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 28px rgba(0, 0, 0, 0.04);
}
 
.revFooterStats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
 
.revFooterStat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 28px;
}
 
.revFooterStat:first-child {
  padding-left: 0;
}
 
.revFooterStatNum {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0a0f1e;
  line-height: 1;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}
 
.revFooterStatLabel {
  font-size: 12px;
  color: #64748b;
  font-weight: 400;
  white-space: nowrap;
}
 
.revFooterDivider {
  width: 1px;
  height: 36px;
  background: #e2e8f0;
  flex-shrink: 0;
}
 
.reviewsButton {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  background: linear-gradient(135deg, #17b6ff, #0085ff);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 133, 255, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}
 
.reviewsButton svg {
  transition: transform 0.3s ease;
}
 
.reviewsButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 133, 255, 0.42);
}
 
.reviewsButton:hover svg {
  transform: translateX(4px);
}
 
@media (max-width: 1024px) {
 
  .testimonialsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
 
  .testimonialLarge  { grid-column: span 2; }
  .testimonialMedium { grid-column: span 2; }
  .testimonialSmall  { grid-column: span 1; }
 
}
 
@media (max-width: 768px) {
 
  .revSection {
    padding: 80px 20px 100px;
  }
 
  .revHeader {
    margin-bottom: 44px;
  }
 
  .testimonialsHeading {
    font-size: clamp(1.8rem, 5.5vw, 2.2rem);
  }
 
  .reviewsFooter {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 20px;
    gap: 20px;
  }
 
  .revFooterStats {
    justify-content: center;
    gap: 0;
  }
 
  .revFooterStat {
    align-items: center;
    padding: 0 16px;
  }
 
  .revFooterStat:first-child {
    padding-left: 16px;
  }
 
  .reviewsButton {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }
 
}
 
@media (max-width: 640px) {
 
  .testimonialsGrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
 
  .testimonialLarge,
  .testimonialMedium,
  .testimonialSmall {
    grid-column: span 1;
  }
 
  .testimonialsIntro {
    font-size: 0.95rem;
  }
 
  .testimonialText {
    font-size: 14.5px;
  }
 
  .revFooterStats {
    flex-wrap: wrap;
    gap: 16px;
  }
 
  .revFooterDivider {
    display: none;
  }
 
  .revFooterStat {
    padding: 0;
    align-items: center;
    width: 45%;
  }
 
  .revFooterStat:first-child {
    padding-left: 0;
  }
 
}
 











 /* ===========================================  
   Author Verification and Endorsement Section  
   =========================================== */



.authorSection {
  padding: 120px 20px 140px;
  background: linear-gradient(175deg, #f8faff 0%, #ffffff 50%, #f4f8ff 100%);
  position: relative;
  overflow: hidden;
}

.authorBg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.authorOrb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}

.authorOrb1 {
  width: 650px;
  height: 650px;
  top: -200px;
  right: -180px;
  background: radial-gradient(circle, rgba(0, 133, 255, 0.07), transparent 70%);
}

.authorOrb2 {
  width: 500px;
  height: 500px;
  bottom: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.06), transparent 70%);
}

.authorOrb3 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 40%;
  background: radial-gradient(circle, rgba(0, 133, 255, 0.04), transparent 70%);
}

.authorSection .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.authorHeader {
  text-align: center;
  margin-bottom: 72px;
}

.authorEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #4caf50;
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.2);
  padding: 7px 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.authorEyebrowDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4caf50;
  flex-shrink: 0;
  animation: authorPulse 2s infinite;
}

@keyframes authorPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.6); }
}

.authorTitle {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #0a0f1e;
  margin-bottom: 18px;
}

.authorIntro {
  font-size: 1rem;
  color: #64748b;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

.authorGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.authorCard {
  position: relative;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 10px 32px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  cursor: default;
  overflow: hidden;
  padding-bottom: 20px;
}

.authorCard::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0, 133, 255, 0.03), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.authorCard::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4caf50, #0085ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.authorCard:hover,
.authorCard:focus {
  transform: translateY(-10px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 133, 255, 0.08);
  outline: none;
}

.authorCard:hover::before,
.authorCard:focus::before {
  opacity: 1;
}

.authorCard:hover::after,
.authorCard:focus::after {
  transform: scaleX(1);
}

.authorCard:focus-visible {
  outline: 3px solid #4caf50;
  outline-offset: 4px;
}

.authorCardInner {
  padding: 30px 26px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.authorQuoteMark {
  font-size: 72px;
  line-height: 0.6;
  color: #0085ff;
  opacity: 0.12;
  font-weight: 900;
  margin-bottom: -6px;
  font-family: Georgia, serif;
  user-select: none;
}

.authorEndorsement {
  font-size: 14.5px;
  line-height: 1.72;
  color: #4b5675;
  font-weight: 400;
  flex: 1;
  margin: 0;
  font-style: italic;
}

.authorCardFooter {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.authorPhotoWrapper {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  padding: 2.5px;
  background: conic-gradient(from 0deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5, #feda75);
  flex-shrink: 0;
  box-sizing: content-box;
}

.authorPhoto {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2.5px solid #ffffff;
}

.verifiedBadge {
  position: absolute;
  bottom: 0px;
  right: 5px;
  background: #4caf50;
  color: #ffffff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.authorMeta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.authorName {
  font-size: 15px;
  font-weight: 700;
  color: #0a0f1e;
  margin: 0;
  line-height: 1.2;
}

.authorVerifiedLabel {
  font-size: 10px;
  font-weight: 600;
  color: #4caf50;
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.18);
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  width: fit-content;
}

.authorButtons {
  display: flex;
  gap: 8px;
}

.reviewWorkBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  background: linear-gradient(135deg, #0052cc, #0085ff);
  color: #ffffff;
  font-weight: 600;
  font-size: 12.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 133, 255, 0.25);
  flex: 1;
}

.reviewWorkBtn i {
  font-size: 13px;
  
}

.reviewWorkBtn:hover,
.reviewWorkBtn:focus {
  background: linear-gradient(135deg, #003d7a, #0066cc);
  box-shadow: 0 6px 20px rgba(0, 133, 255, 0.38);
  transform: translateY(-1px);
  outline: none;
}

.reviewWorkBtn:active {
  transform: translateY(1px);
}

.authorContactBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  background: transparent;
  color: #0085ff;
  font-weight: 600;
  font-size: 12.5px;
  border: 1.5px solid rgba(0, 133, 255, 0.28);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
}

.authorContactBtn i {
  font-size: 13px;
}

.authorContactBtn:hover,
.authorContactBtn:focus {
  background: rgba(0, 133, 255, 0.06);
  border-color: rgba(0, 133, 255, 0.55);
  box-shadow: 0 4px 14px rgba(0, 133, 255, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.authorContactBtn:focus-visible {
  outline: 3px solid #4caf50;
  outline-offset: 3px;
}

.reviewWorkModal {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.reviewWorkModal.active {
  display: flex;
  animation: fadeInModal 0.35s ease forwards;
}

body.modal-open {
  overflow: hidden;
}

@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.modalContent {
  background: #ffffff;
  border-radius: 24px;
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 60px 140px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  animation: slideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

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

.modalHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: #ffffff;
  flex-shrink: 0;
}

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

.modalHeaderIcon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0052cc, #0085ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 133, 255, 0.3);
}

.modalHeaderTitle {
  font-size: 16px;
  font-weight: 700;
  color: #0a0f1e;
  margin: 0 0 3px;
  line-height: 1.2;
}

.modalHeaderSub {
  font-size: 12px;
  color: #64748b;
  font-weight: 400;
}

.modalCloseBtn {
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: #64748b;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.modalCloseBtn:hover,
.modalCloseBtn:focus {
  background: rgba(220, 10, 30, 0.08);
  color: #dc0a1e;
  transform: rotate(90deg);
  outline: none;
}

.sliderWrapper {
  position: relative;
  overflow: hidden;
  background: #0a0f1e;
  flex-shrink: 0;
}

.slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  display: block;
  background: #0f172a;
}

.slideLabel {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px 6px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.3px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 7px;
}

.slideLabelDot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
}

.beforeLabel {
  background: rgba(220, 10, 30, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.afterLabel {
  background: rgba(34, 160, 74, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sliderBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(33, 128, 229, 0.699);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  z-index: 10;
}

.sliderBtn:hover,
.sliderBtn:focus {
  background: rgba(0, 133, 255, 0.7);
  border-color: rgba(0, 133, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
  outline: none;
}

.prevBtn { left: 14px; }
.nextBtn { right: 14px; }

.sliderProgress {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sliderProgressTrack {
  width: 80px;
  height: 3px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  display: none;
}

.sliderProgressFill {
  height: 100%;
  width: 50%;
  background: #0085ff;
  border-radius: 4px;
  transition: width 0.4s ease;
}

.sliderProgressText {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.modalDescription {
  padding: 22px 24px 26px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.modalDescription::-webkit-scrollbar {
  display: none;
}

.modalStrategyBox {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #f8faff;
  border: 1px solid rgba(0, 133, 255, 0.1);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
}

.modalStrategyIcon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0, 133, 255, 0.1);
  color: #0085ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.modalStrategyBox p {
  font-size: 14.5px;
  color: #4b5675;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

#authorStrategy {
  font-size: 14.5px;
  color: #4b5675;
  line-height: 1.7;
  margin: 0;
}

.campaignLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #0052cc, #0085ff);
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 6px 20px rgba(0, 133, 255, 0.28);
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.campaignLink i {
  font-size: 16px;
}

.campaignLink:hover,
.campaignLink:focus {
  background: linear-gradient(135deg, #003d7a, #0066cc);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 133, 255, 0.4);
  outline: none;
}

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

@media (max-width: 768px) {

  .authorSection {
    padding: 80px 20px 100px;
  }

  .authorHeader {
    margin-bottom: 48px;
  }

  .authorTitle {
    font-size: clamp(1.8rem, 5.5vw, 2.2rem);
  }

  .authorGrid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .authorIntro {
    font-size: 0.95rem;
  }

  .slide img {
    height: 240px;
  }

  .modalDescription {
    padding: 18px 16px 20px;
  }

  .modalHeader {
    padding: 16px 18px;
  }

}

@media (max-width: 500px) {

  .authorButtons {
    flex-direction: column;
  }

  .reviewWorkBtn,
  .authorContactBtn {
    flex: unset;
    width: 100%;
  }

}












/* ================================ 
     Engagement Directors Section  
   ================================ */


.engagementDirectorsSection {
  padding: 120px 24px 140px;
  background: linear-gradient(175deg, #ffffff 0%, #f4f8ff 60%, #ffffff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.engagementDirectorsSection::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  top: -250px;
  left: -180px;
  background: radial-gradient(circle, rgba(0, 133, 255, 0.07), transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.engagementDirectorsSection::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -140px;
  background: radial-gradient(circle, rgba(123, 47, 247, 0.06), transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.engagementDirectorsSection .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.DirectorsTitle {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: #0a0f1e;
  margin-bottom: 16px;
  line-height: 1.15;
}

.DirectorsSubtitle {
  font-size: 1rem;
  color: #64748b;
  max-width: 620px;
  margin: 0 auto 72px auto;
  line-height: 1.7;
  font-weight: 400;
}

.DirectorsGrid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 64px;
  padding: 0;
}

.contributor {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px 22px 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 28px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
  position: relative;
  overflow: hidden;
}

.contributor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, #0085ff, #00c6ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contributor:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 6px 18px rgba(0, 133, 255, 0.08);
}

.contributor:hover::before {
  opacity: 1;
}

.contributorPhoto {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
  padding: 2.5px;
  background: conic-gradient(from 0deg, #0085ff, #00c6ff, #7b2ff7, #0085ff);
  box-sizing: content-box;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.contributor:hover .contributorPhoto {
  transform: scale(1.06);
}

.contributorPhoto img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2.5px solid #ffffff;
}

.contributorName {
  font-size: 14.5px;
  font-weight: 700;
  color: #0a0f1e;
  letter-spacing: 0.1px;
  margin: 0;
  line-height: 1.3;
  text-align: center;
}

.DirectorsPreviewRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
}

.DirectorsPreviewCenter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.DirectorsPreviewLabel {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  white-space: nowrap;
}

.DirectorsPreview {
  display: flex;
  align-items: center;
}

.arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.04);
  font-size: 16px;
  color: #64748b;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
  user-select: none;
}

.arrow:hover {
  background: linear-gradient(135deg, #0085ff, #17b6ff);
  border-color: transparent;
  color: #ffffff;
  transform: scale(1.12);
  box-shadow: 0 8px 22px rgba(0, 133, 255, 0.3);
}

.previewAvatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  object-fit: cover;
  margin-left: -16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, z-index 0s;
}

.previewAvatar:first-child {
  margin-left: 0;
}

.previewAvatar:hover {
  transform: scale(1.15) translateY(-5px);
  z-index: 10;
  position: relative;
}

.previewMore {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  margin-left: -16px;
  background: linear-gradient(135deg, #0052cc, #0085ff);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 133, 255, 0.3);
  flex-shrink: 0;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {

  .engagementDirectorsSection {
    padding: 80px 20px 100px;
  }

  .DirectorsTitle {
    font-size: clamp(1.7rem, 5.5vw, 2.2rem);
    letter-spacing: -0.5px;
  }

  .DirectorsSubtitle {
    font-size: 0.95rem;
    margin-bottom: 48px;
  }

  .DirectorsGrid {
    gap: 16px;
    margin-bottom: 50px;
  }

  .contributor {
    width: 145px;
    padding: 22px 16px 20px;
  }

  .contributorPhoto {
    width: 76px;
    height: 76px;
  }

  .contributorPhoto img {
    width: 76px;
    height: 76px;
  }

  .previewAvatar,
  .previewMore {
    width: 48px;
    height: 48px;
  }

}

@media (max-width: 480px) {

  .contributor {
    width: 140px;
    padding: 20px 14px 18px;
  }

  .DirectorsGrid {
    gap: 12px;
  }

  .DirectorsPreviewRow {
    gap: 12px;
  }

  .previewAvatar,
  .previewMore {
    width: 44px;
    height: 44px;
  }

}







/* ================================ 
     Trust Section  
   ================================ */


.trustSection {
  padding: clamp(90px, 10vw, 130px) 20px;
  background: linear-gradient(175deg, #ffffff 0%, #f4f8ff 55%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.trustBg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.trustOrb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}

.trustOrb1 {
  width: 650px;
  height: 650px;
  top: -250px;
  left: -180px;
  background: radial-gradient(circle, rgba(0, 133, 255, 0.08), transparent 70%);
}

.trustOrb2 {
  width: 550px;
  height: 550px;
  bottom: -200px;
  right: -130px;
  background: radial-gradient(circle, rgba(123, 47, 247, 0.07), transparent 70%);
}

.trustOrb3 {
  width: 380px;
  height: 380px;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 198, 255, 0.05), transparent 70%);
}

.trustWrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.trustIntro {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.trustEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #0085ff;
  background: rgba(0, 133, 255, 0.07);
  border: 1px solid rgba(0, 133, 255, 0.16);
  padding: 7px 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.trustEyebrowDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0085ff;
  flex-shrink: 0;
  animation: trustDotPulse 2s infinite;
}

@keyframes trustDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.6); }
}

.trustTitle {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #0a0f1e;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.trustSubtitle {
  font-size: 1rem;
  color: #64748b;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

.trustGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trustItem {
  position: relative;
  padding: 28px 26px;
  border-radius: 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 28px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  overflow: hidden;
}

.trustItem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, #0085ff, #00c6ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trustItem:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 6px 18px rgba(0, 133, 255, 0.08);
}

.trustItem:hover::before {
  opacity: 1;
}

.trustCardGlow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 133, 255, 0.06), transparent 70%);
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.trustItem:hover .trustCardGlow {
  opacity: 1;
}

.trustIconBox {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.trustItem:hover .trustIconBox {
  transform: scale(1.1) rotate(-4deg);
}

.trustIconBlue   { background: rgba(0, 133, 255, 0.1);    color: #0085ff;  box-shadow: 0 4px 14px rgba(0, 133, 255, 0.2);   }
.trustIconGreen  { background: rgba(47, 158, 68, 0.1);    color: #2f9e44;  box-shadow: 0 4px 14px rgba(47, 158, 68, 0.2);   }
.trustIconPurple { background: rgba(123, 47, 247, 0.1);   color: #7b2ff7;  box-shadow: 0 4px 14px rgba(123, 47, 247, 0.2);  }
.trustIconOrange { background: rgba(255, 107, 107, 0.1);  color: #e03131;  box-shadow: 0 4px 14px rgba(255, 107, 107, 0.2); }
.trustIconTeal   { background: rgba(0, 198, 255, 0.1);    color: #0891b2;  box-shadow: 0 4px 14px rgba(0, 198, 255, 0.2);   }
.trustIconAmber  { background: rgba(245, 158, 11, 0.1);   color: #d97706;  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2);  }

.trustContent {
  flex: 1;
  min-width: 0;
}

.trustContent h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 8px;
  line-height: 1.3;
}

.trustContent p {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

@media (max-width: 900px) {

  .trustGrid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  .trustSection {
    padding: 80px 20px 100px;
  }

  .trustTitle {
    font-size: clamp(1.7rem, 5.5vw, 2.1rem);
    letter-spacing: -0.5px;
  }

  .trustGrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trustItem {
    padding: 22px 20px;
  }

}







  /* ===============  
     FAQ Section  
   ================= */

.faqSection {
  padding: 120px 20px 140px;
  background: linear-gradient(175deg, #ffffff 0%, #f4f8ff 55%, #ffffff 100%);
  color: #1e293b;
  position: relative;
  overflow: hidden;
}

.faqBg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.faqOrb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}

.faqOrb1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(0, 133, 255, 0.07), transparent 70%);
}

.faqOrb2 {
  width: 500px;
  height: 500px;
  bottom: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(123, 47, 247, 0.06), transparent 70%);
}

.faqContainer {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faqHeader {
  text-align: center;
  margin-bottom: 56px;
}

.faqBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 133, 255, 0.07);
  color: #0085ff;
  border: 1px solid rgba(0, 133, 255, 0.16);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faqBadgeDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0085ff;
  flex-shrink: 0;
  animation: faqDotPulse 2s infinite;
}

@keyframes faqDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.6); }
}

.faqHeading {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #0a0f1e;
  margin-bottom: 14px;
}

.faqSubtitle {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
  font-weight: 400;
}

.faqList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faqItem {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faqItem:has(.faqToggle[aria-expanded="true"]) {
  border-color: rgba(0, 133, 255, 0.2);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 0 0 0 transparent;
}

.faqToggle {
  all: unset;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #0a0f1e;
  transition: background 0.2s ease;
  box-sizing: border-box;
}

.faqToggle:hover {
  background: rgba(0, 133, 255, 0.03);
}

.faqTitle {
  flex: 1;
  padding-right: 16px;
  text-align: left;
  line-height: 1.4;
}

.faqIcon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: rgba(0, 133, 255, 0.08);
  border: 1px solid rgba(0, 133, 255, 0.15);
  border-radius: 50%;
  color: #0085ff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.2s ease;
  line-height: 1;
}

.faqToggle[aria-expanded="true"] .faqIcon {
  transform: rotate(45deg);
  background: rgba(0, 133, 255, 0.14);
}

.faqAnswer {
  max-height: 0;
  overflow: hidden;
  font-size: 14.5px;
  line-height: 1.72;
  color: #4b5675;
  transition: max-height 0.4s ease, opacity 0.35s ease, padding 0.3s ease;
  box-sizing: border-box;
  opacity: 0;
  padding: 0 22px;
}

.faqAnswer.active {
  max-height: 600px;
  opacity: 1;
  padding: 0 22px 20px;
}

@media (max-width: 780px) {

  .faqSection {
    padding: 80px 20px 100px;
  }

  .faqContainer {
    width: 100%;
  }

  .faqHeader {
    margin-bottom: 40px;
  }

  .faqHeading {
    font-size: clamp(1.7rem, 5.5vw, 2.2rem);
  }

  .faqToggle {
    font-size: 14.5px;
    padding: 16px 18px;
  }

  .faqAnswer {
    font-size: 14px;
    padding: 0 18px;
  }

  .faqAnswer.active {
    padding: 0 18px 18px;
  }

}










  /* ===================== 
     Get Started Modal  
   ======================= */
   .getModalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 28, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s;
  padding: 16px;
  z-index: 9999;
}

.getModalOverlay.active {
  visibility: visible;
  opacity: 1;
}

.getModalWrapper {
  width: 100%;
  max-width: 500px;
  max-height: 94vh;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  animation: getModalSlide 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes getModalSlide {
  from { transform: translateY(28px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1);       opacity: 1; }
}

.getModalContent {
  padding: 28px 28px 32px;
  position: relative;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}

.getModalContent::-webkit-scrollbar { width: 4px; }
.getModalContent::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }

.getModalClose {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9px;
  cursor: pointer;
  color: #64748b;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.getModalClose:hover {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.2);
  color: #dc2626;
  transform: rotate(90deg);
}

.getModalHeader {
  text-align: center;
  margin-bottom: 28px;
  padding-right: 28px;
}

.getModalHeaderIcon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0052cc, #0085ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(0, 133, 255, 0.3);
}

.getModalContent h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0a0f1e;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.getModalSubtitle {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.getFieldGroup {
  margin-bottom: 16px;
}

.getFieldLabel {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.getFieldOptional {
  font-size: 11px;
  font-weight: 400;
  color: #94a3b8;
  margin-left: 4px;
}

.getInputWrap {
  position: relative;
  display: flex;
  align-items: center;
}

.getInputIcon {
  position: absolute;
  left: 14px;
  font-size: 14px;
  color: #94a3b8;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}

.getTextareaIcon {
  top: 14px;
  align-self: flex-start;
}

.getFieldGroup input,
.getFieldGroup textarea {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 13.5px;
  color: #0a0f1e;
  background: #f8faff;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: inherit;
}

.getFieldGroup input::placeholder,
.getFieldGroup textarea::placeholder {
  color: #b0bac5;
}

.getFieldGroup input:focus,
.getFieldGroup textarea:focus {
  border-color: #0085ff;
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 133, 255, 0.1);
}

input.error,
textarea.error {
  border-color: rgba(220, 38, 38, 0.6);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
  background: #fff8f8;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.getSubmitBtn {
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, #0052cc, #0085ff);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14.5px;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 133, 255, 0.35);
  transition: all 0.3s ease;
  margin-top: 6px;
}

.getSubmitBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 133, 255, 0.45);
}

.getSubmitBtn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.getSubmitBtn:hover i {
  transform: translateX(3px);
}

.getCelebration {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.getCelebration.show {
  display: flex;
}

.getCelebrationEmoji {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}

.getCelebrationClose {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9px;
  font-size: 14px;
  cursor: pointer;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.getCelebrationClose:hover {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  transform: rotate(90deg);
}

#getCelebrationTitle {
  font-size: 18px;
  font-weight: 800;
  color: #0a0f1e;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#getCelebrationTitle small {
  font-size: 13.5px;
  font-weight: 400;
  color: #64748b;
}

.getPlatformButtons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  width: 100%;
}

.getPlatformBtn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.getPlatformBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.getPlatformBtn.getWhatsapp {
  background: linear-gradient(135deg, #1ebe5d, #25d366);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.getPlatformBtn.getGmail {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(231, 76, 60, 0.3);
}

.getToastMsg {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: #dc2626;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  display: none;
  z-index: 10000;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.getToastMsg.show {
  display: block;
  transform: translateX(-50%) translateY(0);
}

body.getModalOpen,
html.getModalOpen {
  overflow: hidden;
  height: 100%;
  position: fixed;
  width: 100%;
}

@media (max-width: 480px) {

  .getModalContent {
    padding: 22px 20px 28px;
  }

  .getModalContent h3 {
    font-size: 18px;
  }

  .getPlatformButtons {
    flex-direction: column;
  }

}










  /* =================  
     Footer Section  
   =================== */


.footerWrapper {
  position: relative;
  background: #030a1e;
  color: #e2e8f0;
  overflow: hidden;
}

.footerBg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.footerOrb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
}

.footerOrb1 {
  width: 700px;
  height: 700px;
  top: -280px;
  left: -200px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.18), transparent 65%);
}

.footerOrb2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(0, 133, 255, 0.14), transparent 65%);
}

.footerOrb3 {
  width: 450px;
  height: 450px;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
}

.footerGrid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
}

.footerGradientTop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 133, 255, 0.5), rgba(99, 102, 241, 0.3), transparent);
}

.footerInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  position: relative;
  z-index: 1;
}

.footerTop {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.8fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footerBrand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footerLogo {
  height: 38px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  display: block;
}

.footerTagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 260px;
  margin: 0;
  font-weight: 400;
}

.footerSocials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footerSocialBtn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footerSocialBtn:hover {
  background: rgba(0, 133, 255, 0.2);
  border-color: rgba(0, 133, 255, 0.4);
  color: #ffffff;
  transform: translateY(-3px);
}

.footerSocialWhatsapp:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.4);
}

.footerLinksTitle {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}

.footerLinksList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footerLinksList a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footerLinksList a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footerNewsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footerNewsletterSub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: -6px 0 4px;
  font-weight: 400;
}

.newsletterInputWrap {
  position: relative;
  display: flex;
  align-items: center;
}

.newsletterInputWrap i {
  position: absolute;
  left: 16px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 16px;
  pointer-events: none;
}

.newsletterInput {
  width: 100%;
  padding: 13px 18px 13px 44px;
  font-size: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  transition: all 0.3s ease;
  font-family: inherit;
  margin-bottom: 10px;
}

.newsletterInput::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletterInput:focus {
  outline: none;
  border-color: rgba(0, 133, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(0, 133, 255, 0.12);
}

.newsletterButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, #17b6ff, #0085ff);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 133, 255, 0.3);
  transition: all 0.3s ease;
  font-family: inherit;
}

.newsletterButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 133, 255, 0.42);
}

.newsletterButton i {
  font-size: 14px;
}

.footerDivider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 28px;
}

.footerBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footerCopy {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  font-weight: 400;
}

.footerCopy #year {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.footerBottomBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
}

.footerBadgeDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  animation: footerDotPulse 2s infinite;
}

@keyframes footerDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50%       { box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
}

.backToTopButton {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #17b6ff, #0085ff);
  color: #ffffff;
  border-radius: 14px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 6px 20px rgba(0, 133, 255, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  z-index: 999;
  transition: all 0.3s ease;
  font-size: 18px;
}

.backToTopButton i {
  display: block;
  line-height: 1;
  font-size: 18px;
  margin: 12px 0 0 12px;
}

.backToTopButton:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 30px rgba(0, 133, 255, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.15);
}

.backToTopButton.scrollAtTop {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.backToTopButton.scrollAtTop:hover {
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.55);
}

@media (max-width: 1024px) {

  .footerTop {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footerBrand {
    grid-column: span 2;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
  }

  .footerTagline {
    max-width: 400px;
  }

  .footerNewsletter {
    grid-column: span 2;
  }

  .newsletterInputWrap,
  .newsletterButton {
    max-width: 420px;
  }

}

@media (max-width: 640px) {

  .footerInner {
    padding: 60px 20px 32px;
  }

  .footerTop {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footerBrand {
    grid-column: span 1;
    flex-direction: column;
  }

  .footerNewsletter {
    grid-column: span 1;
  }

  .newsletterInputWrap,
  .newsletterButton {
    max-width: 100%;
  }

  .footerBottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .backToTopButton {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

}

.privacyModalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(10,20,30,.45);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: .45s cubic-bezier(.19,1,.22,1);
  z-index: 9999;
}

.privacyModalOverlay.active {
  opacity: 1;
  visibility: visible;
}

.privacyModal {
  position: relative;
  width: 100%;
  max-width: 780px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 40px 110px rgba(0,0,0,.3);
  overflow: hidden;
  transform: scale(.88) translateY(50px);
  transition: .45s cubic-bezier(.19,1,.22,1);
  display: flex;
  flex-direction: column;
}

.privacyModalOverlay.active .privacyModal {
  transform: scale(1) translateY(0);
}

.privacyGlow {
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(0,133,255,.35), transparent 70%);
  pointer-events: none;
}

.imprintHeaderBar {
  background: linear-gradient(135deg, #0073e6, #00b4d8) !important;
}

.imprintGlow {
  background: radial-gradient(circle, rgba(0,180,216,.3), transparent 70%) !important;
}

.privacyHeaderBar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 28px;
  background: linear-gradient(135deg, #0085ff, #5fb3ff);
  color: #ffffff;
  position: relative;
}

.privacyHeaderIcon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.privacyHeaderText h3 { margin: 0; font-size: 20px; font-weight: 600; }
.privacyHeaderText span { font-size: 13px; opacity: .9; }

.privacyCloseBtn {
  position: absolute;
  right: 22px;
  top: 18px;
  border: none;
  background: rgba(255,255,255,.3);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 22px;
  cursor: pointer;
  transition: .25s;
  color: #fff;
}

.privacyCloseBtn:hover {
  background: #ffffff;
  color: #0085ff;
  transform: rotate(90deg);
}

.privacyModalBody {
  padding: 32px;
  max-height: 70vh;
  overflow-y: auto;
}

.privacyIntro {
  background: #f2f8ff;
  border-left: 4px solid #0085ff;
  padding: 16px 18px;
  border-radius: 10px;
  margin-bottom: 26px;
}

.privacyIntro p { margin: 0; color: #4a5c65; line-height: 1.7; font-size: 15px; }

.privacySection {
  background: #ffffff;
  border: 1px solid #e6eef8;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,.04);
}

.highlightSection {
  background: linear-gradient(135deg, #f2f8ff, #f9fbff);
  border: 1px solid rgba(0,133,255,.35);
}

.privacySectionTitle {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0e1b22;
}

.privacySection ul { padding-left: 18px; margin: 0; }
.privacySection li { margin-bottom: 8px; color: #4b5964; font-size: 14.5px; }
.privacySection p  { margin: 0; color: #4b5964; line-height: 1.7; font-size: 14.8px; }

.imprintLink {
  color: #0073e6;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,115,230,.3);
  transition: color .2s ease, border-color .2s ease;
}

.imprintLink:hover {
  color: #0052cc;
  border-bottom-color: #0052cc;
}

.privacyModalBody::-webkit-scrollbar { width: 6px; }
.privacyModalBody::-webkit-scrollbar-thumb { background: #0085ff; border-radius: 20px; }

@media (max-width: 768px) {
  .privacyModal         { border-radius: 18px; }
  .privacyModalBody     { padding: 22px; }
  .privacyHeaderBar     { padding: 20px; }
  .privacyHeaderText h3 { font-size: 17px; }
  .privacyHeaderText span { font-size: 12px; }
  .privacySectionTitle  { font-size: 14px; }
  .privacyIntro p,
  .privacySection p,
  .privacySection li    { font-size: 13.8px; }
}








