/* =============================================
   TeQnoConnect — Global Stylesheet
   Version: 1.0
   ============================================= */

/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables (Brand Palette) --- */
:root {
  --primary: #11C5C6;
  --primary-rgb: 17, 197, 198;
  --secondary: #1E7A78;
  --secondary-rgb: 30, 122, 120;
  --tertiary: #2F5F69;
  --dark: #2E3A3F;
  --white: #ffffff;
  --warm-white: #F5F1EE;
  --light-bg: #F3F4F4;
  --light-gray: #F7F7F7;
  --border-light: #D9E1E3;
  --text-muted: #6B7C80;
  --shadow-sm: 0 2px 8px rgba(17, 197, 198, 0.12);
  --shadow-md: 0 6px 24px rgba(17, 197, 198, 0.18);
  --shadow-lg: 0 12px 40px rgba(17, 197, 198, 0.22);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;

  /* Hero Gradient Variable */
  --hero-gradient: linear-gradient(135deg, #1E7A78 0%, #2B7A78 100%);
  --dark-overlay: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));

  /* High Contrast Icon Tokens */
  --icon-bg: #DFF4F2;
  --icon-symbol: #18C3C8;
}

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

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

body {
  font-family: 'Comfortaa', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(47, 95, 105, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
  transition: var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.navbar-brand span {
  color: var(--primary);
}

.navbar-logo {
  height: 38px;
  width: auto;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(2, 182, 171, 0.18);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 200;
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--dark);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--light-bg);
  color: var(--primary);
  padding-left: 26px;
}

/* Mobile Toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
}

.navbar-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  padding: 140px 0 80px;
  background: var(--hero-gradient);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(2, 182, 171, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(2, 182, 171, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 182, 171, 0.18);
  border: 1px solid rgba(2, 182, 171, 0.35);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 36px;
  max-width: 560px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Comfortaa', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: #0DB1B2;
  border-color: #0DB1B2;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 182, 171, 0.35);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: var(--tertiary);
  border-color: var(--tertiary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* =============================================
   SECTIONS
   ============================================= */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

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

.bg-dark-section {
  background: var(--hero-gradient);
  color: var(--white);
}

.bg-dark-section .section-title {
  color: var(--white);
}

.bg-dark-section .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* =============================================
   SERVICE CARDS
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 182, 171, 0.25);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--icon-bg);
  color: var(--icon-symbol);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.6rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--icon-symbol);
  color: var(--white);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  transition: var(--transition);
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   FEATURE LIST (inside cards)
   ============================================= */
.feature-list {
  margin-top: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--dark);
  padding: 5px 0;
}

.feature-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =============================================
   TRAINING CARDS
   ============================================= */
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}

.training-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.training-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 182, 171, 0.3);
}

.training-card-header {
  background: linear-gradient(135deg, var(--tertiary), var(--secondary));
  padding: 20px 24px 16px;
  position: relative;
  overflow: hidden;
}

.training-card-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.training-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  position: relative;
  z-index: 1;
}

.training-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.training-card-body {
  padding: 20px 24px;
  flex: 1;
}

.training-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.training-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.training-meta-item .meta-icon {
  width: 28px;
  height: 28px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.training-meta-item strong {
  color: var(--dark);
  font-weight: 600;
}

.training-card-footer {
  padding: 16px 24px 20px;
  border-top: 1px solid var(--light-gray);
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f0f9ff, #e0f7f6);
  border: 1px solid rgba(2, 182, 171, 0.3);
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* =============================================
   PRODUCT PAGE
   ============================================= */
.product-hero {
  background: linear-gradient(135deg, var(--tertiary) 0%, var(--secondary) 60%, #18706a 100%);
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 182, 171, 0.25);
}

.feature-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--icon-bg);
  color: var(--icon-symbol);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 20px;
  transition: var(--transition);
  opacity: 1 !important;
}

.feature-card:hover .feature-card-icon {
  transform: scale(1.1) translateY(-2px);
  background: var(--icon-symbol);
  color: var(--white);
}

.feature-card-icon i {
  color: inherit;
  opacity: 1 !important;
}

/* Icon Inverted (For Dark Background Overlay) */
.feature-card-icon.icon-inverted {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  backdrop-filter: blur(5px);
}

.feature-card:hover .feature-card-icon.icon-inverted {
  background: var(--white);
  color: var(--icon-symbol);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Benefits */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.info-box-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--icon-bg);
  color: var(--icon-symbol);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.benefit-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  margin-bottom: 34px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.65);
}

.cta-section .btn-outline:hover {
  background: var(--white);
  color: var(--secondary);
}

.cta-section .btn {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.cta-section .btn:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: linear-gradient(180deg, #09131a 0%, #0d1f25 100%);
  color: var(--white);
  padding: 0 0 0;
  position: relative;
  overflow: hidden;
}

/* Wave separator at top of footer */
.footer-wave-top {
  position: relative;
  height: 80px;
  overflow: hidden;
  margin-top: -1px;
  background: var(--white);
}

.footer-wave-top svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-parallax>use {
  animation: footer-wave-move 20s cubic-bezier(.55, .5, .45, .5) infinite;
}

.footer-parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 8s;
}

.footer-parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 12s;
}

.footer-parallax>use:nth-child(3) {
  animation-delay: -1s;
  animation-duration: 16s;
}

@keyframes footer-wave-move {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* Tech Grid Overlay */
.footer-tech-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(17, 197, 198, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 197, 198, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  pointer-events: none;
}

/* Mouse-reactive glow canvas */
#footer-glow-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 14px;
  line-height: 1.8;
  max-width: 300px;
}

.footer-brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-name span {
  color: var(--primary);
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(17, 197, 198, 0.1);
  border: 1px solid rgba(17, 197, 198, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(17, 197, 198, 0.35);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition);
  margin-right: 0;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 0;
}

.footer-links a:hover::before {
  width: 12px;
  margin-right: 8px;
}

.footer-address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-address i {
  color: var(--primary);
  font-size: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(17, 197, 198, 0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* =============================================
   STATS / NUMBERS BAR
   ============================================= */
.stats-bar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* =============================================
   COMPLIANCE ITEMS
   ============================================= */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.compliance-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.compliance-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 182, 171, 0.28);
}

.compliance-logo {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.compliance-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.compliance-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.compliance-tag {
  display: inline-block;
  margin-top: 16px;
  background: var(--light-bg);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(36, 116, 111, 0.2);
}

/* =============================================
   PAGE DIVIDER
   ============================================= */
.divider {
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), transparent);
  opacity: 0.25;
  margin: 0;
}

/* =============================================
   SECTION SEPARATOR (wave)
   ============================================= */
.wave-separator {
  position: relative;
  height: 50px;
  overflow: hidden;
}

.wave-separator svg {
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* =============================================
   INFO BOXES
   ============================================= */
.info-box {
  background: linear-gradient(135deg, rgba(2, 182, 171, 0.07), rgba(36, 116, 111, 0.07));
  border: 1px solid rgba(2, 182, 171, 0.2);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-box-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}

.info-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.info-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px rgba(2, 182, 171, 0.2);
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

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

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

.animate-fade-up {
  animation: fadeInUp 0.65s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .navbar-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(45, 90, 100, 0.98);
    padding: 20px 0;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .navbar-nav.open {
    display: flex;
  }

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

  .nav-link {
    padding: 12px 28px;
    border-radius: 0;
    width: 100%;
    display: block;
  }

  .nav-item:hover .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0;
    padding: 10px 0;
  }

  .dropdown-item {
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
  }

  .dropdown-item:hover {
    background: transparent;
    color: var(--primary);
    padding-left: 20px;
  }

  .navbar-nav .btn {
    margin: 15px auto 0 !important;
  }

  .navbar-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  section {
    padding: 60px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 480px) {

  .features-grid,
  .services-grid,
  .compliance-grid,
  .training-grid {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-center {
  text-align: center;
}

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

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.fw-bold {
  font-weight: 700;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 16px;
}

/* =============================================
   SCROLL TO TOP BUTTON
   ============================================= */
.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(17, 197, 198, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, box-shadow 0.3s ease;
}

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

.scroll-to-top:hover {
  box-shadow: 0 6px 24px rgba(17, 197, 198, 0.5);
  transform: translateY(-3px);
}

.scroll-to-top:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

height: 42px;
font-size: 1rem;
}
}
