/* Import Modern Premium Typography (Including Hind Siliguri for Bengali) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

/* Design System & Variables */
:root {
  --color-primary: #ff5e14; /* Safety Orange */
  --color-secondary: #0e1628; /* Deep Navy */
  --color-dark: #070b12; /* Dark Slate */
  --color-light: #f8fafc; /* Light Gray */
  --color-white: #ffffff;
  --text-dark: #0e1628;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --border-light: rgba(14, 22, 40, 0.08);
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Outfit', 'Hind Siliguri', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Hind Siliguri', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-white);
  color: var(--text-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-light);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}



/* Interactive Cursor Follower styles (Single Solid Dot) */
.cursor-dot {
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              height 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              background-color 0.25s ease;
  display: none;
}

/* Hover scale states */
body.cursor-hover .cursor-dot {
  width: 24px;
  height: 24px;
  background-color: var(--color-primary);
  opacity: 0.85;
}

/* Scroll Reveal Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition-smooth);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Delays for children elements */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Section Transitions & Dividers */
.section-divider {
  position: relative;
  width: 100%;
  height: 60px;
  line-height: 0;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
}

.section-divider svg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
}

/* Specific divider shapes */
.divider-navy-to-white svg {
  fill: var(--color-white);
  transform: rotate(180deg);
}

.divider-white-to-light svg {
  fill: var(--color-light);
}

.divider-light-to-white svg {
  fill: var(--color-white);
}

.divider-white-to-navy svg {
  fill: var(--color-secondary);
}

.divider-navy-to-light svg {
  fill: var(--color-light);
}

.divider-light-to-navy svg {
  fill: var(--color-secondary);
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-secondary);
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, #ff7d3b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.bg-navy {
  background-color: var(--color-secondary) !important;
}

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

/* Top Utility Header Bar */
.top-header-bar {
  background-color: var(--color-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 0;
  font-size: 0.85rem;
}

.top-header-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.top-header-item:hover {
  color: var(--color-primary);
}

.top-header-item i {
  color: var(--color-primary);
}

.top-social-link {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-smooth);
  font-size: 0.9rem;
}

.top-social-link:hover {
  color: var(--color-primary);
}

/* Sticky Navbar Wrapper */
.main-navbar-wrapper {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: var(--color-white);
  box-shadow: 0 4px 15px rgba(14, 22, 40, 0.04);
  border-bottom: 1px solid var(--border-light);
}

.main-navbar-wrapper.navbar-scrolled {
  box-shadow: 0 10px 30px rgba(14, 22, 40, 0.08);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-secondary) !important;
  letter-spacing: -0.02em;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-secondary) !important;
  padding: 10px 18px !important;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 18px;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: calc(100% - 36px);
}

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

/* Hero Section */
.hero-slider-section {
  background-color: var(--color-secondary);
  padding: 140px 0 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-slider-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 94, 20, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 94, 20, 0.1);
  border: 1px solid rgba(255, 94, 20, 0.25);
  color: var(--color-primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.title-hero {
  font-size: 3.75rem;
  line-height: 1.15;
  color: var(--color-white) !important;
  margin-bottom: 20px;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: justify;
}

.hero-ill-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow-back {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 94, 20, 0.12) 0%, transparent 70%);
  z-index: -1;
  animation: pulseGlow 4s infinite alternate;
}

.hero-svg-camera {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

/* Floating Scroll Indicator */
.scroll-indicator-wrap {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.scroll-indicator-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 1.6s infinite ease-in-out;
}

/* Premium Buttons */
.btn-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-premium {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary-orange {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  box-shadow: 0 4px 15px rgba(255, 94, 20, 0.25);
}

.btn-primary-orange:hover {
  background-color: #e04e0d;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 94, 20, 0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

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

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

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

/* About Us Section */
.about-section {
  padding: 120px 0;
  background-color: var(--color-white);
}

/* Overlapping image layout */
.about-img-group {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 480px;
  margin: 0 auto;
}

.about-img-card {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(14, 22, 40, 0.1);
  border: 4px solid var(--color-white);
  transition: var(--transition-smooth);
}

.about-img-card:hover {
  transform: scale(1.02);
  z-index: 5;
}

.about-img-top {
  width: 320px;
  height: 320px;
  top: 0;
  left: 0;
}

.about-img-bottom {
  width: 320px;
  height: 320px;
  bottom: 0;
  right: 0;
}

/* Rotating Experience circular badge */
.experience-badge-wrap {
  position: absolute;
  bottom: 100px;
  left: 170px;
  width: 130px;
  height: 130px;
  background-color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(14, 22, 40, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.experience-badge-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: badgeRotate 18s infinite linear;
}

.experience-badge-center {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(255, 94, 20, 0.3);
  z-index: 2;
}

/* Sub-features details row */
.about-sub-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.about-sub-img-wrap {
  width: 150px;
  height: 85px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.about-cert-box {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 240px;
}

.about-cert-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-cert-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.4;
}

/* Direct call panel */
.about-call-panel {
  background-color: var(--color-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(14, 22, 40, 0.03);
  flex-wrap: wrap;
  gap: 20px;
}

.about-call-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-call-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.about-call-num {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-decoration: none;
}

/* Services Section */
.services-section {
  padding: 120px 0;
  background-color: var(--color-light);
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px auto;
  font-size: 0.95rem;
}

.feature-card {
  background-color: var(--color-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  transition: var(--transition-smooth);
  box-shadow: 0 5px 15px rgba(14, 22, 40, 0.02);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 15px 35px rgba(14, 22, 40, 0.08);
}

.feature-icon-wrapper {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(255, 94, 20, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: rotateY(360deg);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-secondary);
}

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

/* Why Choose Us Section */
.choose-section {
  padding: 120px 0;
  background-color: var(--color-white);
}

.choose-card {
  background-color: var(--color-light);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: var(--transition-smooth);
}

.choose-card:hover {
  background-color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.choose-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(255, 94, 20, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

/* Assessment Card Form */
.assessment-card {
  background-color: var(--color-secondary);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.assessment-card h3 {
  color: var(--color-white);
}

.glass-input {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.glass-input:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(255, 94, 20, 0.2);
  color: var(--color-white);
  outline: none;
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

select.glass-input option {
  background: var(--color-secondary);
  color: var(--color-white);
}

/* Pricing Grid Section */
.pricing-section {
  padding: 120px 0;
  background-color: var(--color-light);
}

.pricing-card {
  background-color: var(--color-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 5px 15px rgba(14, 22, 40, 0.02);
}

.pricing-card.popular-tier {
  border: 2px solid var(--color-primary);
  box-shadow: 0 15px 35px rgba(255, 94, 20, 0.1);
  transform: scale(1.03);
}

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

.pricing-card.popular-tier:hover {
  transform: translateY(-8px) scale(1.03);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(255, 94, 20, 0.3);
}

.price-header {
  margin-bottom: 24px;
  text-align: center;
}

.price-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-secondary);
}

.price-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-val-wrap {
  text-align: center;
  margin-bottom: 28px;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: super;
  color: var(--color-primary);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-secondary);
}

.price-duration {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.price-features-list li {
  padding: 12px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-secondary);
  font-weight: 500;
}

.price-features-list li i {
  color: var(--color-primary);
  font-size: 0.9rem;
}

.price-features-list li.disabled-feat {
  color: var(--text-muted);
  opacity: 0.5;
}

.price-features-list li.disabled-feat i {
  color: var(--text-muted);
}

/* Testimonial Section */
.testimonial-section {
  padding: 120px 0;
  background-color: var(--color-white);
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  min-height: 250px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-card {
  background-color: var(--color-light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

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

.testimonial-client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

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

.client-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 2px;
}

.client-designation {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.carousel-indicators {
  position: static;
  margin-top: 30px;
  gap: 8px;
}

.carousel-indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: rgba(14, 22, 40, 0.15);
  transition: var(--transition-smooth);
}

.carousel-indicator-dot.active {
  background-color: var(--color-primary);
  transform: scale(1.2);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 120px 0;
  background-color: var(--color-light);
}

.accordion-item {
  background-color: var(--color-white) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 12px !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(14, 22, 40, 0.01);
}

.accordion-button {
  background: transparent !important;
  color: var(--color-secondary) !important;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 22px 26px !important;
  box-shadow: none !important;
  border: none !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230e1628'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed) {
  color: var(--color-primary) !important;
  background-color: rgba(255, 94, 20, 0.03) !important;
}

.accordion-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 22px 26px !important;
  border-top: 1px solid var(--border-light);
}

/* Corporate Footer */
footer {
  background-color: var(--color-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 30px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.footer-column-title {
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

.newsletter-input-wrap {
  display: flex;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  padding: 4px;
}

.newsletter-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-white);
  padding: 8px 12px;
  font-size: 0.85rem;
  flex: 1;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
  background-color: var(--color-primary);
  border: none;
  color: var(--color-white);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.newsletter-btn:hover {
  background-color: #e04e0d;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 60px;
  padding-top: 30px;
}

/* Success Toast Alerts */
.security-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--color-secondary);
  border: 1px solid var(--color-primary);
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1050;
  transform: translateY(150px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.security-toast.active {
  transform: translateY(0);
  opacity: 1;
}

/* Animations Keyframes */
@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -45px) scale(1.06); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes badgeRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes badgeRotateInverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes pulseGlow {
  0% { opacity: 0.3; transform: scale(0.95); }
  100% { opacity: 0.75; transform: scale(1.05); }
}

@keyframes mouseScroll {
  0% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0; }
  100% { top: 6px; opacity: 1; }
}

/* ==========================================================================
   Under Construction Dashboard Styles
   ========================================================================== */
.construction-wrapper {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  position: relative;
  z-index: 5;
}

.console-card {
  background: rgba(14, 22, 40, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.title-main {
  font-size: 3.25rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
}

/* Countdown Clock */
.countdown-container {
  display: flex;
  gap: 16px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px;
  min-width: 80px;
  text-align: center;
}

.countdown-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  display: block;
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* Progress Meter */
.progress-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 35px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.progress-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.progress-number-wrap {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
}

.progress-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary) 0%, #ff7d3b 100%);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 94, 20, 0.4);
  transition: width 0.1s linear;
}

/* Notify Form */
.notify-form-wrap {
  margin-bottom: 30px;
}

.glass-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 6px;
}

.glass-input-group .glass-input {
  background: transparent;
  border: none;
  flex: 1;
  padding: 10px 16px;
}

.glass-input-group .glass-input:focus {
  box-shadow: none;
}

.btn-notify {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  padding: 0 24px;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.btn-notify:hover {
  background-color: #e04e0d;
}

/* Services Quick List */
.services-quick-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  justify-content: center;
}

.service-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.service-badge:hover {
  background: rgba(255, 94, 20, 0.1);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* Worker Arm & Graphic Animations */
.worker-illustration-wrapper {
  position: relative;
}

.worker-svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
}

.animate-tech-gear {
  transform-origin: 250px 250px;
  animation: gearSpin 25s infinite linear;
}

.animate-hud-pulse {
  transform-origin: 250px 250px;
  animation: pulseGlow 3s infinite alternate;
}

.animate-worker-body {
  animation: workerFloat 4s infinite ease-in-out alternate;
}

.animate-worker-arm {
  transform-origin: 300px 290px;
  animation: armWrench 3s infinite ease-in-out alternate;
}

.animate-scan-line {
  animation: scanHUD 2.5s infinite ease-in-out;
}

@keyframes gearSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes workerFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes armWrench {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-10deg); }
}

@keyframes scanHUD {
  0% { transform: translateY(-30px); opacity: 0.2; }
  50% { opacity: 0.8; }
  100% { transform: translateY(80px); opacity: 0.2; }
}

.btn-primary-glow {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  box-shadow: 0 4px 15px rgba(255, 94, 20, 0.25);
}

.btn-primary-glow:hover {
  background-color: #e04e0d;
  color: var(--color-white);
  box-shadow: 0 8px 22px rgba(255, 94, 20, 0.4);
  transform: translateY(-2px);
}

.btn-outline-glass {
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-slider-section {
    text-align: center;
    padding-top: 80px;
  }
  .btn-cta-group {
    justify-content: center;
  }
  .hero-ill-wrap {
    margin-top: 50px;
  }
  .pricing-card.popular-tier {
    transform: scale(1);
  }
  .pricing-card.popular-tier:hover {
    transform: translateY(-8px) scale(1);
  }
  .about-img-group {
    height: 380px;
    max-width: 380px;
  }
  .about-img-top {
    width: 240px;
    height: 240px;
  }
  .about-img-bottom {
    width: 240px;
    height: 240px;
  }
  .experience-badge-wrap {
    bottom: 70px;
    left: 120px;
    width: 100px;
    height: 100px;
  }
  .experience-badge-center {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .title-hero {
    font-size: 2.4rem;
  }
  .btn-premium {
    width: 100%;
    justify-content: center;
  }
  .about-stats-wrap {
    grid-template-columns: 1fr;
  }
  .about-call-panel {
    justify-content: center;
    text-align: center;
  }
  .about-call-info {
    flex-direction: column;
  }
}
