﻿:root {
  --primary-color: #0d2d54;
  /* Deep metallic blue (from logo edges) */
  --primary-hover: #081d38;
  --secondary-color: #1e477a;
  /* Medium steel blue (from logo body) */
  --accent-color: #5d92c7;
  /* Bright metallic blue (from logo sheen) */
  --dark-bg: #08101a;
  /* Dark space background matching logo */
  --dark-footer: #091322;
  /* Deep dark blue footer */
  --light-bg: #f8fafc;
  --card-light: #ffffff;
  --card-dark: #151b2c;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-nav: 'Poppins', 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-navbar: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  --border-radius: 12px;
}

/* General / Reset */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--light-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Navbar Custom Styles - Consolidated in bottom overrides block */

.custom-navbar .navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.custom-navbar.navbar-scrolled .navbar-logo {
  height: 83px;
  width: auto;
}

@media (max-width: 575.98px) {
  .navbar-logo {
    height: 48px;
    width: auto;
  }
}

.custom-navbar .nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: var(--transition-smooth);
  position: relative;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--primary-color);
}

/* Navbar hover indicator */
.custom-navbar .nav-link:not(.dropdown-toggle)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}

.custom-navbar .nav-link:not(.dropdown-toggle):hover::after,
.custom-navbar .nav-link:not(.dropdown-toggle).active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Navbar CTA Button */
.btn-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 14px rgba(30, 71, 122, 0.25);
  transition: var(--transition-smooth);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 71, 122, 0.4);
  color: #fff;
}

.btn-cta:active {
  transform: translateY(0);
}

/* Mobile Toggler Styles */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon-custom {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: var(--transition-smooth);
}

.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: var(--transition-smooth);
}

.navbar-toggler-icon-custom::before {
  top: -6px;
}

.navbar-toggler-icon-custom::after {
  bottom: -6px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Footer Custom Styles */
.custom-footer {
  position: relative;
  background-image: url('../images/footer_bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
  overflow: hidden;
}

/* Glare and dark overlay layers to ensure text contrast and visual sheen */
.custom-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(8, 16, 26, 0.96) 0%, rgba(13, 34, 64, 0.9) 50%, rgba(9, 19, 34, 0.94) 100%);
  z-index: -1;
  pointer-events: none;
}

.custom-footer::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(93, 146, 199, 0.12) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  width: 220px;
  height: auto;
  max-height: 75px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-heading {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-contact-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact-info i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icons a:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(30, 71, 122, 0.3);
  border-color: transparent;
}

/* Newsletter styling */
.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

.newsletter-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.25);
  color: #fff;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .btn-subscribe {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: none;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition-smooth);
  width: 100%;
  margin-top: 0.75rem;
}

.newsletter-form .btn-subscribe:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(93, 146, 199, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.copyright-link {
  color: var(--accent-color) !important;
  /* High visibility highlight */
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
  border-bottom: 1px dotted rgba(93, 146, 199, 0.4);
}

.copyright-link:hover {
  color: #ffffff !important;
  border-bottom-color: #ffffff;
}

.footer-bottom-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* Back to Top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: none;
  text-decoration: none;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
  color: #fff;
}

/* ==========================================
   Home Page Specific Premium Styles
   ========================================== */

/* Hero Section */
.hero-section {
  position: relative;
  padding: 8rem 0 6rem;
  overflow: hidden;
  background-color: var(--dark-bg);
  color: #fff;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(30, 71, 122, 0.18) 0%, rgba(93, 146, 199, 0.08) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(93, 146, 199, 0.15) 0%, rgba(30, 71, 122, 0.05) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  font-weight: 500;
  color: #a5b4fc;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

@media (min-width: 1400px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Glassmorphic Visual Layout in Hero */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-sphere {
  position: relative;
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, rgba(13, 45, 84, 0.3) 0%, rgba(59, 124, 182, 0.3) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphing 15s ease-in-out infinite;
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-card-1,
.visual-card-2 {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 1.25rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
  color: #fff;
}

.visual-card-1 {
  top: 15%;
  left: 2%;
  width: 220px;
}

.visual-card-2 {
  bottom: 10%;
  right: 2%;
  width: 200px;
  animation-delay: 3s;
}

/* Section Header Styles */
.section-padding {
  padding: 6.5rem 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Service Card Design */
.service-card {
  background-color: var(--card-light);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.15);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: rgba(79, 70, 229, 0.05);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  transform: rotate(5deg) scale(1.05);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Portfolio Card Design */
.portfolio-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  aspect-ratio: 4/3;
  border: none;
}

.portfolio-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0.85;
  transition: var(--transition-smooth);
  z-index: 1;
}

.portfolio-card-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #1e293b;
}

.portfolio-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 2;
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.portfolio-card:hover .portfolio-bg-gradient {
  opacity: 0.95;
}

.portfolio-card:hover .portfolio-content {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.portfolio-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Contact Info Box */
.contact-info-box {
  background-color: var(--card-light);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(79, 70, 229, 0.05);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 1.25rem;
  flex-shrink: 0;
}

.contact-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-info-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Contact Form Input fields */
.contact-form .form-control {
  background-color: #fff;
  border: 1px solid #e2e8f0;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
  color: var(--text-primary);
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 71, 122, 0.15);
  outline: none;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 14px rgba(30, 71, 122, 0.25);
  transition: var(--transition-smooth);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 71, 122, 0.4);
  color: #fff;
}

/* Stats / Counters */
.stat-box {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }

  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }

  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }

  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/* Responsive adjustments for Home specific */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 6rem 0 4rem;
    text-align: center;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-visual {
    margin-top: 4rem;
  }

  .section-padding {
    padding: 4.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .visual-sphere {
    width: 280px;
    height: 280px;
  }

  .visual-card-1 {
    width: 170px;
    font-size: 0.85rem;
    left: -5%;
  }

  .visual-card-2 {
    width: 150px;
    font-size: 0.85rem;
    right: -2%;
  }
}

/* Glassmorphic Metrics Card Hover and Card 3 Styles */
.visual-card-1,
.visual-card-2 {
  transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.visual-card-1:hover,
.visual-card-2:hover {
  box-shadow: 0 25px 50px rgba(93, 146, 199, 0.28);
  border-color: rgba(93, 146, 199, 0.4);
  background: rgba(255, 255, 255, 0.08) !important;
}

.visual-card-3 {
  position: absolute;
  top: 8%;
  right: 2%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  animation: float 6s ease-in-out infinite;
  animation-delay: 1.5s;
  color: #fff;
  z-index: 3;
  transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.visual-card-3:hover {
  border-color: rgba(255, 193, 7, 0.4);
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 15px 30px rgba(255, 193, 7, 0.25);
}

@media (max-width: 575.98px) {
  .visual-card-3 {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    right: 2%;
    top: 5%;
  }
}

/* Photo Slider Hero Section */
.slider-hero-section {
  position: relative;
  height: 650px;
  overflow: hidden;
  background-color: var(--dark-bg);
}

.carousel-hero-item {
  height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.carousel-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 16, 26, 0.8) 0%, rgba(8, 16, 26, 0.6) 50%, rgba(8, 16, 26, 0.9) 100%);
  z-index: 1;
}

.carousel-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
}

.carousel-hero-title {
  font-size: 3.25rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  max-width: 850px;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 0.8s forwards 0.3s;
}

.carousel-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 0.8s forwards 0.5s;
}

.carousel-hero-actions {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 0.8s forwards 0.7s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Service Grid Hero Section */
.grid-hero-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 1.75rem;
  transition: var(--transition-smooth);
  height: 100%;
  text-align: left;
}

.grid-hero-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 15px 30px rgba(93, 146, 199, 0.2);
}

.grid-hero-icon {
  font-size: 1.75rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}

.grid-hero-card:hover .grid-hero-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Preview Options Switcher */
.preview-switcher-wrap {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-switcher {
  background: rgba(8, 16, 26, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.5rem;
  border-radius: 50px;
  display: flex;
  gap: 0.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.preview-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.preview-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.preview-btn.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(30, 71, 122, 0.35);
}

@media (max-width: 767.98px) {
  .preview-switcher-wrap {
    bottom: 80px;
    width: 90%;
  }

  .preview-switcher {
    width: 100%;
    justify-content: center;
  }

  .preview-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.75rem;
  }
}

/* ==========================================
   About Us / Get to Know More Styles
   ========================================== */
.about-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 110px;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(93, 146, 199, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-visual-wrapper {
  position: relative;
  padding: 3rem 2.5rem;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.015);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
  /* Let metric card float out slightly */
  z-index: 2;
  transition: var(--transition-smooth);
}

.about-visual-wrapper:hover {
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.035);
  border-color: rgba(93, 146, 199, 0.2);
}

.about-visual-bg-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(93, 146, 199, 0.06) 0%, transparent 70%);
  top: -40px;
  left: -40px;
  z-index: -1;
  pointer-events: none;
}

/* Interactive Tabs inside visual container */
.about-tabs-nav {
  display: inline-flex;
  background: rgba(15, 23, 42, 0.04);
  padding: 5px;
  border-radius: 50px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: 2.25rem;
  align-self: center;
}

.about-tab-btn {
  border: none;
  background: transparent;
  padding: 0.6rem 1.35rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.about-tab-btn:hover {
  color: var(--primary-color);
}

.about-tab-btn.active {
  background: #ffffff;
  color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(13, 45, 84, 0.08), 0 1px 3px rgba(13, 45, 84, 0.04);
}

/* Visual Card Deck styles */
.about-visual-deck {
  position: relative;
  width: 100%;
  height: 310px;
  margin-top: 0.5rem;
}

.about-deck-card {
  position: absolute;
  width: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.02);
  transition: all 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px) scale(0.85);
  z-index: 1;
}

/* State Classes for Deck Rotation/Layering */
.about-deck-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  z-index: 5;
  box-shadow: 0 25px 50px rgba(13, 45, 84, 0.08);
  border-color: rgba(93, 146, 199, 0.35);
}

.about-deck-card.stacked-prev {
  opacity: 0.35;
  pointer-events: none;
  transform: translateY(-20px) scale(0.9) rotate(-3deg);
  z-index: 3;
}

.about-deck-card.stacked-next {
  opacity: 0.35;
  pointer-events: none;
  transform: translateY(20px) scale(0.9) rotate(3deg);
  z-index: 2;
}

/* Visual Mock Card Headers */
.card-header-custom {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  padding-bottom: 0.75rem;
}

.card-header-custom i {
  font-size: 1.35rem;
}

.card-header-custom .text-indigo {
  color: #6366f1;
}

.card-header-custom .text-emerald {
  color: #10b981;
}

.card-header-custom .text-amber {
  color: #f59e0b;
}

.card-title-custom {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.01em;
}

/* Card Body Layout */
.card-body-custom {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* 1. Design swatches & previews */
.design-palette {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
}

.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.color-swatch.color-primary {
  background-color: #0d2d54;
}

.color-swatch.color-secondary {
  background-color: #1e477a;
}

.color-swatch.color-accent {
  background-color: #5d92c7;
}

.color-swatch.color-dark {
  background-color: #08101a;
}

.design-font-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(13, 45, 84, 0.03);
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
}

.font-letter {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary-color);
  line-height: 1;
}

.font-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.font-meta strong {
  font-size: 0.9rem;
  color: var(--primary-color);
}

.font-meta span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.design-wireframe {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.wireframe-line {
  height: 6px;
  background: rgba(226, 232, 240, 0.8);
  border-radius: 3px;
}

.wireframe-line.header {
  width: 40%;
}

.wireframe-grid {
  display: flex;
  gap: 0.5rem;
}

.wireframe-box {
  flex: 1;
  height: 30px;
  background: rgba(93, 146, 199, 0.05);
  border: 1px dotted rgba(93, 146, 199, 0.3);
  border-radius: 6px;
}

/* 2. Engineering code console and metrics */
.code-terminal {
  background: #0f172a;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.75rem;
  color: #e2e8f0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
  line-height: 1.4;
}

.terminal-header {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.terminal-header .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.terminal-header .dot.red {
  background: #ef4444;
}

.terminal-header .dot.yellow {
  background: #f59e0b;
}

.terminal-header .dot.green {
  background: #10b981;
}

.terminal-body code {
  display: block;
  white-space: pre;
}

.terminal-body .keyword {
  color: #f472b6;
}

.terminal-body .variable {
  color: #38bdf8;
}

.terminal-body .string {
  color: #a7f3d0;
}

.terminal-body .function {
  color: #fb7185;
}

.terminal-body .number {
  color: #fbbf24;
}

.perf-metric {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.perf-circle {
  width: 45px;
  height: 45px;
}

.circular-chart {
  display: block;
  max-height: 100%;
}

.circle-bg {
  fill: none;
  stroke: rgba(16, 185, 129, 0.1);
  stroke-width: 3.5;
}

.circle {
  fill: none;
  stroke: #10b981;
  stroke-width: 3.5;
  stroke-linecap: round;
}

.percentage {
  fill: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.65rem;
  text-anchor: middle;
}

.perf-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.perf-meta strong {
  font-size: 0.85rem;
  color: var(--primary-color);
}

.perf-meta span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10b981;
}

/* 3. Growth Sparklines & KPIs */
.growth-stats {
  display: flex;
  justify-content: space-between;
}

.stat-item {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.stat-item .lbl {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.stat-item .val {
  font-size: 1.1rem;
  font-weight: 800;
}

.stat-item .val i {
  font-size: 0.85rem;
  margin-right: 0.15rem;
}

.chart-container {
  width: 100%;
  height: 60px;
  background: rgba(93, 146, 199, 0.02);
  border-radius: 10px;
  padding: 0.25rem 0;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.growth-chart {
  width: 100%;
  height: 100%;
}

.chart-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 0;
}

/* Floating Glassmorphic Metric Card */
.about-metric-card {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 20px 45px rgba(13, 45, 84, 0.08), 0 4px 12px rgba(13, 45, 84, 0.02);
  animation: float 6s ease-in-out infinite;
  z-index: 10;
  width: 190px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.about-metric-card:hover {
  border-color: rgba(93, 146, 199, 0.3);
  box-shadow: 0 25px 50px rgba(93, 146, 199, 0.15);
}

.about-metric-num {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.35rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.about-metric-lbl {
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  font-weight: 700;
  line-height: 1.3;
}

/* Right Content Column Styles */
.about-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.about-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
}

/* Highlight Items */
.about-highlight-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.75rem;
  transition: var(--transition-smooth);
}

.about-highlight-item:hover {
  transform: translateX(6px);
}

.about-highlight-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13, 45, 84, 0.04) 0%, rgba(93, 146, 199, 0.06) 100%);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-right: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(13, 45, 84, 0.03);
  transition: var(--transition-smooth);
}

.about-highlight-item:hover .about-highlight-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(30, 71, 122, 0.22);
  border-color: transparent;
}

.about-highlight-title {
  font-size: 1.1rem;
  font-weight: 750;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.about-highlight-desc {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0;
}

/* Mobile responsive fixes */
@media (max-width: 991.98px) {
  .about-visual-wrapper {
    margin-bottom: 4rem;
    min-height: auto;
    padding: 2.5rem 2rem;
  }

  .about-metric-card {
    bottom: -15px;
    right: -15px;
    width: 170px;
  }

  .about-title {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .about-visual-wrapper {
    padding: 2rem 1.5rem;
  }

  .about-metric-card {
    position: static;
    margin-top: 1.5rem;
    width: 100%;
    animation: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
  }

  .about-metric-num {
    margin-bottom: 0;
    font-size: 2rem;
  }

  .about-metric-lbl {
    text-align: left;
  }

  .about-tab-btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.75rem;
  }

  .about-visual-deck {
    height: 290px;
  }
}

/* ==========================================
   New Redesigned About Section Styles
   ========================================== */
.about-subtitle-bright {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #5d92c7 !important;
  /* Website bright metallic blue */
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.about-title-large {
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1.25;
  color: #0d2d54 !important;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.about-desc-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.about-highlight-statement {
  font-size: 1.25rem;
  font-weight: 600;
  color: #5d92c7 !important;
  /* Website bright metallic blue */
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-family: var(--font-heading);
}

.about-contact-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.about-contact-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(93, 146, 199, 0.08) !important;
  /* Accent blue with low opacity */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(93, 146, 199, 0.05) !important;
}

.about-contact-icon-box i {
  font-size: 1.35rem;
  color: #5d92c7 !important;
  /* Accent blue icon */
}

.about-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.about-contact-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.about-contact-phone {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0d2d54 !important;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.about-contact-phone:hover {
  color: #5d92c7 !important;
}

.btn-explore {
  display: inline-block;
  background: linear-gradient(135deg, #0d2d54 0%, #5d92c7 100%) !important;
  /* Brand blue gradient */
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  border-radius: 8px;
  /* Slightly rounded corners matching image */
  transition: var(--transition-smooth);
  border: none;
  box-shadow: 0 4px 14px rgba(30, 71, 122, 0.25) !important;
  text-decoration: none;
  text-align: center;
}

.btn-explore:hover {
  background: linear-gradient(135deg, #081d38 0%, #5d92c7 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 71, 122, 0.4) !important;
  color: #ffffff !important;
}

.btn-explore:active {
  transform: translateY(0);
}

/* About Visual Showcase (Image-based matching mockup exactly) */
.about-visual-showcase {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

.about-showcase-img {
  width: 100%;
  height: auto;
  transition: var(--transition-smooth);
}

.about-showcase-img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 20px 40px rgba(30, 96, 149, 0.25));
}

@media (max-width: 991.98px) {
  .about-visual-showcase {
    margin-bottom: 3rem;
  }
}

@media (max-width: 575.98px) {
  .about-title-large {
    font-size: 2.15rem;
  }

  .about-highlight-statement {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .about-contact-phone {
    font-size: 1.15rem;
  }

  .btn-explore {
    width: 100%;
    padding: 0.85rem 1.5rem;
  }
}

/* =========================================================
   NEW PREMIUM HOMEPAGE SECTIONS
   ========================================================= */

/* Services Card Style Overrides */
.service-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s, border-color 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(93, 146, 199, 0.15) !important;
  border-color: rgba(93, 146, 199, 0.25) !important;
}



/* ==========================================
   Services Section - Redesigned Tabbed Layout (Bright Theme)
   ========================================== */
.services-section {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Subtle background glowing elements */
.services-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Abstract Background Waves styling & animation */
.services-bg-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.services-bg-waves svg {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.services-bg-waves path {
  transform-origin: center;
  animation: waveDrift 25s ease-in-out infinite alternate;
}

.services-bg-waves path:nth-child(2) {
  animation-delay: -7s;
  animation-duration: 30s;
}

.services-bg-waves path:nth-child(3) {
  animation-delay: -15s;
  animation-duration: 35s;
}

@keyframes waveDrift {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  50% {
    transform: translate(-30px, 15px) scale(1.03) rotate(1deg);
  }

  100% {
    transform: translate(20px, -10px) scale(0.98) rotate(-0.5deg);
  }
}

.services-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  background: rgba(13, 45, 84, 0.05);
  border: 1px solid rgba(13, 45, 84, 0.15);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.services-main-title {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-all-services {
  border: 1.5px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color) !important;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-all-services:hover {
  background-color: var(--primary-color);
  color: #fff !important;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(13, 45, 84, 0.15);
}

/* Glassmorphic Tab Triggers */
.services-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.services-tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: #ffffff;
  border: 1px solid rgba(13, 45, 84, 0.08);
  border-radius: 12px;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(13, 45, 84, 0.04);
  clip-path: none;
  z-index: 1;
}

.services-tab-btn i {
  font-size: 1.35rem;
  color: var(--accent-color);
  transition: all 0.3s;
}

.services-tab-btn:hover {
  background: #f8fafc;
  color: var(--primary-color);
  border-color: rgba(13, 45, 84, 0.15);
  transform: translateX(8px);
}

.services-tab-btn.active {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 25px rgba(93, 146, 199, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.services-tab-btn.active i {
  color: #ffffff;
  transform: scale(1.1);
}

/* Indicator arrow pointing directly to the content box */
.services-tab-btn.active::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid var(--accent-color);
  z-index: 10;
  filter: drop-shadow(2px 0 4px rgba(93, 146, 199, 0.2));
}

/* Tab Content Box */
.services-content-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 3.5rem 3rem;
  box-shadow: 0 20px 45px rgba(13, 45, 84, 0.08);
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 45, 84, 0.05);
}

.service-content-item {
  display: none;
  opacity: 0;
}

.service-content-item.active {
  display: block;
  opacity: 1;
}

/* Keyframe micro-animations triggered on tab switch */
.service-content-item.active .service-img-wrapper {
  animation: imgSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.service-content-item.active .service-info-column {
  animation: textSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes imgSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-30px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes textSlideIn {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  background-color: #f1f5f9;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-img-wrapper:hover .service-img {
  transform: scale(1.05);
}

.service-detail-title {
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
}

.service-detail-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.service-points-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-points-list li {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

/* Circular checkmark badge design */
.service-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(93, 146, 199, 0.12);
  color: var(--accent-color);
  font-size: 0.75rem;
  margin-right: 0.85rem;
  flex-shrink: 0;
  border: 1px solid rgba(93, 146, 199, 0.25);
  box-shadow: 0 2px 4px rgba(93, 146, 199, 0.05);
}

.btn-service-readmore {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2.25rem;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 14px rgba(13, 45, 84, 0.15);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
}

.btn-service-readmore:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 45, 84, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .services-main-title {
    font-size: 2.25rem;
  }

  .services-content-box {
    padding: 2.5rem 2rem;
  }

  .service-detail-title {
    font-size: 1.85rem;
  }
}

@media (max-width: 767.98px) {
  .services-tab-btn {
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
  }

  .services-content-box {
    padding: 2rem 1.5rem;
  }

  .service-img-wrapper {
    aspect-ratio: 16/9;
    margin-bottom: 1.5rem;
  }
}

/* =========================================================
   DOUBLE HEADER NAVIGATION & OFFCANVAS SIDEBAR STYLING
   ========================================================= */

/* 1. Upper Header Styling */
.upper-header {
  background-color: var(--dark-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: transform 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease;
}

.upper-header-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.upper-header-link:hover {
  color: var(--accent-color);
}

.upper-header-link i {
  font-size: 0.95rem;
}

.social-label {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.upper-social-link {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  text-decoration: none;
}

.upper-social-link:hover {
  color: #fff;
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.upper-social-link.google-badge {
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  width: auto;
  height: auto;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.upper-social-link.google-badge:hover {
  border-color: rgba(255, 193, 7, 0.4);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.15);
}

/* 2. Responsive Header Spacer */
.header-spacer {
  height: 85px;
  /* Mobile / collapsed height */
}

@media (min-width: 992px) {
  .header-spacer {
    height: 120px;
    /* Desktop height: Upper header (approx 40px) + Main navbar (approx 80px) */
  }
}

/* 3. Sticky Navbar & Header scroll transitions */
#mainHeader {
  pointer-events: none;
  /* Let clicks pass through empty spaces of header to background content */
}

.upper-header,
.custom-navbar,
.offcanvas,
.modal {
  pointer-events: auto;
  /* Re-enable clicks on header items */
}

.header-scrolled .upper-header {
  margin-top: -42px;
  /* Slide up the upper header */
  opacity: 0;
  pointer-events: none;
}

.custom-navbar {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  height: 113px;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 3px solid var(--accent-color);
  /* Premium brand accent stripe matching Bantec theme */
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  border-left: none;
  border-right: none;
  border-radius: 0;
  box-shadow: var(--shadow-navbar);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    margin 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-navbar.navbar-scrolled {
  width: 92%;
  max-width: 1332px;
  margin: 15px auto 0;
  height: 90px;
  border-radius: 100px;
  border: 2px solid rgba(93, 146, 199, 0.6) !important;
  /* High visibility brand accent border */
  box-shadow: 
    0 20px 45px rgba(8, 16, 26, 0.38), 
    0 8px 20px rgba(8, 16, 26, 0.18),
    0 3px 8px rgba(0, 0, 0, 0.1) !important;
  /* Extremely deep, pronounced 3D drop shadow to prevent any camouflage */
  background-color: rgba(255, 255, 255, 0.96) !important;
  /* Maximized opacity for reading isolation */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

@media (min-width: 992px) {
  .custom-navbar.navbar-scrolled {
    padding: 0 2rem;
  }
}

@media (max-width: 991.98px) {
  .custom-navbar.navbar-scrolled {
    width: 94%;
    margin: 10px auto 0;
    padding: 0 1.25rem !important;
  }
}

/* Custom Navigation Link Styles for Main Header */
.custom-navbar .nav-link {
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 1.05rem;
  /* Clean and balanced size */
  letter-spacing: 0;
  color: var(--primary-color) !important;
  transition: var(--transition-smooth);
  position: relative;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--accent-color) !important;
}

.custom-navbar .nav-link:not(.dropdown-toggle)::after {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%) !important;
  bottom: -4px;
}

/* 4. Right Side Actions */
.header-right-actions {
  flex-shrink: 0;
}

/* Vertical divider line */
.header-divider {
  width: 1px;
  height: 35px;
  background-color: rgba(13, 45, 84, 0.12);
  margin: 0 0.5rem;
  align-self: center;
}

/* Call Block Box */
.header-call-box {
  background: transparent;
  padding: 0;
  border: none;
}

.call-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  position: relative;
  transition: var(--transition-smooth);
}

/* Pulsing border animation */
.call-icon-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  animation: callPulse 2s infinite;
  opacity: 0;
  pointer-events: none;
}

@keyframes callPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.call-icon-circle:hover {
  transform: scale(1.08) rotate(15deg);
  box-shadow: 0 4px 12px rgba(93, 146, 199, 0.25);
}

.call-info {
  line-height: 1.25;
}

.call-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.call-number {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.call-number:hover {
  color: var(--accent-color);
}

/* Get in Touch Button (Trigger) */
.btn-get-in-touch {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  /* Fully rounded pill matching brand buttons */
  border: none;
  box-shadow: 0 4px 14px rgba(13, 45, 84, 0.2);
  transition: var(--transition-smooth);
}

.btn-get-in-touch:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 45, 84, 0.35);
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--accent-color) 100%);
}

.btn-get-in-touch i {
  font-size: 0.95rem;
}

/* 5. Custom Offcanvas Sidebar drawer styling */
.offcanvas-sidebar-custom {
  background-color: var(--dark-bg) !important;
  color: #ffffff !important;
  width: 400px !important;
  border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.5);
}

.sidebar-logo {
  max-width: 150px;
  height: auto;
}

.sidebar-section-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}

.sidebar-pitch-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Sidebar Contact Form Fields */
.sidebar-form .sidebar-input {
  background-color: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.sidebar-form .sidebar-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.sidebar-form .sidebar-input:focus {
  border-color: var(--accent-color) !important;
  background-color: rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 0 0 3px rgba(93, 146, 199, 0.25) !important;
  outline: none;
}

/* Submit button in Sidebar */
.btn-submit-sidebar {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  color: #ffffff;
  font-weight: 700;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(93, 146, 199, 0.25);
}

.btn-submit-sidebar:hover {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(93, 146, 199, 0.35);
  color: #ffffff;
}

/* Sidebar Footer Details */
.sidebar-contact-info-list {
  font-size: 0.9rem;
}

.sidebar-contact-info-list .info-item i {
  color: var(--accent-color);
}

/* Sidebar social icons */
.sidebar-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

.sidebar-social-icon:hover {
  background-color: var(--accent-color);
  color: #ffffff;
  transform: translateY(-2px);
  border-color: transparent;
}

.sidebar-social-icon.google-icon:hover {
  background-color: #ffffff;
  color: #4285f4;
  border-color: transparent;
}

/* Responsive adjustment for Sidebar Width & Header styling */
@media (max-width: 991.98px) {
  .custom-navbar {
    padding: 0.75rem 0;
  }
}

@media (max-width: 575.98px) {
  .offcanvas-sidebar-custom {
    width: 100% !important;
  }

  .btn-get-in-touch {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

/* 6. Custom Navbar Dropdown Styling */
.custom-navbar .dropdown-menu.custom-dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(13, 45, 84, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(13, 45, 84, 0.08);
  padding: 0.5rem 0;
  min-width: 250px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* Invisible hover bridge to prevent menu closing during transition gaps */
.custom-navbar .dropdown-menu.custom-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
}

.custom-navbar .custom-dropdown-menu .dropdown-item {
  color: var(--primary-color) !important;
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  background: transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 3px solid transparent;
}

.custom-navbar .custom-dropdown-menu .dropdown-item:hover {
  color: var(--primary-hover) !important;
  background-color: rgba(93, 146, 199, 0.1) !important;
  border-left: 3px solid var(--accent-color);
  padding-left: 1.75rem;
  /* Smooth text shift on hover */
}

/* Hover dropdown behavior on desktop */
@media (min-width: 992px) {
  .custom-navbar .nav-item.dropdown:hover .custom-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .custom-navbar .custom-dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
  }
}

/* Style for caret icon in toggle on desktop */
.custom-navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.355em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.35em solid transparent;
  border-bottom: 0;
  border-left: 0.35em solid transparent;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

@media (min-width: 992px) {
  .custom-navbar .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

@media (max-width: 991.98px) {

  /* Prevent horizontal wrapping on mobile view: keep all triggers on one line */
  .custom-navbar {
    padding: 0.5rem 1.25rem !important;
  }

  .custom-navbar .container {
    flex-wrap: nowrap !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .navbar-logo {
    height: 80px !important;
    width: auto !important;
  }

  .custom-navbar .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(13, 45, 84, 0.08);
    border: 1px solid rgba(13, 45, 84, 0.08);
  }

  .custom-navbar .nav-link {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid rgba(13, 45, 84, 0.04);
  }

  .custom-navbar .nav-link:last-child {
    border-bottom: none;
  }

  /* Exclude visual underline transitions in vertical menu lists */
  .custom-navbar .nav-link::after {
    display: none !important;
  }

  /* Inline collapse display styles for dropdown menus in mobile navbar collapses */
  .custom-navbar .custom-dropdown-menu {
    position: static !important;
    display: none;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding-left: 1.5rem !important;
    min-width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .custom-navbar .navbar-collapse .dropdown-menu.show {
    display: block !important;
  }

  .custom-navbar .custom-dropdown-menu .dropdown-item {
    color: var(--text-secondary) !important;
    padding: 0.5rem 1rem !important;
    border-bottom: 1px solid rgba(13, 45, 84, 0.04);
  }

  .custom-navbar .custom-dropdown-menu .dropdown-item:hover {
    background-color: transparent !important;
    color: var(--accent-color) !important;
    padding-left: 1.25rem !important;
    border-left: 2px solid var(--accent-color);
  }
}

@media (max-width: 575.98px) {
  .navbar-logo {
    height: 48px !important;
    width: auto !important;
  }

  .custom-navbar .btn-get-in-touch {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.75rem !important;
  }
}

/* 7. Mobile Navbar Left Sidebar Styling */
.offcanvas-mobile-menu {
  background: rgba(255, 255, 255, 0.98) !important;
  color: var(--primary-color) !important;
  width: 290px !important;
  height: 100% !important;
  /* Force explicit browser viewport height */
  max-height: 100% !important;
  border-right: 1px solid rgba(13, 45, 84, 0.1) !important;
  box-shadow: 15px 0 40px rgba(13, 45, 84, 0.08);
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  /* Prevent parent overflow and force children to handle scrolling */
}

.offcanvas-mobile-menu .offcanvas-header {
  padding: 1.25rem 1.5rem;
  flex-shrink: 0;
  /* Prevent header from shrinking */
}

.offcanvas-mobile-menu .offcanvas-body {
  padding: 1.5rem;
  overflow-y: auto !important;
  /* Force vertical scroll inside this container */
  -webkit-overflow-scrolling: touch;
  /* inertia scrolling on iOS */
  flex: 1 1 auto !important;
  /* Allow the body to grow/shrink inside the flex container */
  min-height: 0 !important;
  /* Flexbox bugfix: allows container to shrink below content size and overflow */
}

.offcanvas-mobile-menu .nav-link {
  font-family: var(--font-nav) !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  color: var(--primary-color) !important;
  padding: 0.65rem 0 !important;
  border-bottom: 1px solid rgba(13, 45, 84, 0.05) !important;
  transition: var(--transition-smooth);
}

.offcanvas-mobile-menu .nav-link:hover,
.offcanvas-mobile-menu .nav-link.active {
  color: var(--accent-color) !important;
}

.offcanvas-mobile-menu .dropdown-toggle::after {
  color: var(--primary-color) !important;
  transition: transform 0.3s ease;
}

.offcanvas-mobile-menu .dropdown-toggle.show::after {
  transform: rotate(180deg);
}

/* Mobile Dropdown inside Left Sidebar Menu */
.offcanvas-mobile-menu .mobile-dropdown-menu {
  position: static !important;
  float: none;
  background: rgba(13, 45, 84, 0.03) !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 8px;
  padding: 0.5rem 1rem !important;
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
  width: 100% !important;
  display: none;
}

.offcanvas-mobile-menu .mobile-dropdown-menu.show {
  display: block !important;
}

.offcanvas-mobile-menu .mobile-dropdown-menu .dropdown-item {
  color: var(--text-secondary) !important;
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 0 !important;
  border-bottom: 1px solid rgba(13, 45, 84, 0.04);
  background: transparent !important;
  transition: all 0.25s ease;
  white-space: normal;
  /* Allow long titles to wrap nicely */
}

.offcanvas-mobile-menu .mobile-dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}

.offcanvas-mobile-menu .mobile-dropdown-menu .dropdown-item:hover {
  color: var(--accent-color) !important;
  padding-left: 0.5rem !important;
  border-left: 2px solid var(--accent-color);
}

/* 8. Mobile Services Stacked Layout Styles */
.mobile-services-container {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.mobile-service-card {
  background: #ffffff !important;
  border: 1px solid rgba(13, 45, 84, 0.08) !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 25px rgba(13, 45, 84, 0.03);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.75rem;
  scroll-margin-top: 110px;
  /* Offset for smooth scroll tracking */
}

.mobile-service-card:hover {
  border-color: rgba(93, 146, 199, 0.25) !important;
  box-shadow: 0 15px 35px rgba(93, 146, 199, 0.12);
}

.mobile-service-img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  height: 220px;
  background-color: #f1f5f9;
}

.mobile-service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mobile-service-img-wrapper:hover .mobile-service-img {
  transform: scale(1.04);
}

.mobile-service-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.service-icon-mobile {
  font-size: 1.4rem;
  color: var(--accent-color);
  background: rgba(93, 146, 199, 0.1);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.mobile-service-card:hover .service-icon-mobile {
  transform: scale(1.05) rotate(5deg);
  background: var(--primary-color);
  color: #ffffff;
}

.mobile-service-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0;
}

/* ==========================================================================
   9. Redesigned Industries We Serve Section (Bento Grid & Glassmorphic Dashboard)
   ========================================================================== */

.ind-section {
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

/* Section Header Styling */
.ind-badge {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 0.15em;
  display: block;
}

.ind-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
}

.ind-highlight {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.ind-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 540px;
}

/* Bento Grid System */
.ind-bento-grid {
  position: relative;
}

.ind-bento-card {
  position: relative;
  height: 100%;
  min-height: 195px;
  background: var(--card-light);
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(13, 45, 84, 0.06);
  box-shadow: 0 10px 30px rgba(13, 45, 84, 0.02);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}

.ind-bento-card .ind-card-inner {
  padding: 1.75rem;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  flex-grow: 1;
}

/* Metallic Border Glow Outline on Active/Hover */
.ind-card-border-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  transition: all 0.4s ease;
}

/* Card Elements */
.ind-card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.ind-card-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(13, 45, 84, 0.07);
  transition: color 0.4s ease;
}

.ind-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(93, 146, 199, 0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.25rem;
  transition: all 0.4s ease;
}

.ind-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  transition: color 0.4s ease;
}

.ind-card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.ind-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ind-meta-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  background: rgba(13, 45, 84, 0.03);
  border-radius: 30px;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.4s ease;
}

/* Hover & Active Card Animations */
.ind-bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(93, 146, 199, 0.12);
  border-color: rgba(93, 146, 199, 0.25);
}

.ind-bento-card:hover .ind-card-icon {
  background: var(--accent-color);
  color: #ffffff;
  transform: scale(1.05);
}

.ind-bento-card.active {
  background: #ffffff;
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(13, 45, 84, 0.08);
  transform: translateY(-3px);
}

.ind-bento-card.active .ind-card-border-glow {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.ind-bento-card.active .ind-card-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #ffffff;
}

.ind-bento-card.active .ind-card-num {
  color: var(--accent-color);
  opacity: 0.25;
}

.ind-bento-card.active .ind-meta-tag {
  background: rgba(93, 146, 199, 0.12);
}

/* Sticky Preview Dashboard Panel Styling */
.ind-preview-sticky {
  position: sticky;
  top: 110px;
  z-index: 10;
  height: calc(100% - 16px);
  display: flex;
  flex-direction: column;
}

.ind-preview-panel {
  position: relative;
  flex-grow: 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(13, 45, 84, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ind-preview-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.ind-preview-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.ind-preview-bg-img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.ind-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(13, 45, 84, 0.35) 0%, rgba(8, 16, 26, 0.96) 95%);
  z-index: 3;
}

.ind-preview-content-wrap {
  position: relative;
  z-index: 4;
  padding: 3rem;
  color: #ffffff;
}

.ind-preview-badge {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 0.2em;
  background: rgba(93, 146, 199, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  margin-bottom: 1.5rem;
}

.ind-preview-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
}

.ind-preview-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.ind-preview-subtitle {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.ind-preview-features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.ind-preview-features-list li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ind-preview-features-list li i {
  color: #10b981;
  /* Premium green check */
  font-size: 1rem;
}

/* KPI Stat Meters */
.ind-preview-kpi-wrap {
  margin-bottom: 0.5rem;
}

.ind-kpi-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.4rem;
}

.ind-kpi-val {
  color: var(--accent-color);
  font-weight: 700;
}

.ind-kpi-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  overflow: hidden;
}

.ind-kpi-bar {
  height: 100%;
  width: 0;
  /* Animated dynamically in JS */
  background: linear-gradient(90deg, var(--accent-color) 0%, #a5b4fc 100%);
  border-radius: 3px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-ind-cta {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 14px;
  border: none;
  box-shadow: 0 10px 25px rgba(93, 146, 199, 0.25);
  transition: all 0.3s ease;
}

.btn-ind-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(93, 146, 199, 0.4);
  filter: brightness(1.05);
}

/* Content swap panes */
.ind-preview-pane {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ind-preview-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Mobile Layout Styling (Full Card Stack)
   ========================================================================== */
.ind-mob-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ind-mob-full-card {
  background: var(--card-light);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(13, 45, 84, 0.08);
  box-shadow: 0 10px 25px rgba(13, 45, 84, 0.03);
}

.ind-mob-card-img-wrap {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.ind-mob-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(13, 45, 84, 0.1) 0%, rgba(8, 16, 26, 0.8) 100%);
  z-index: 1;
}

.ind-mob-card-img-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.ind-mob-card-badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.25rem;
}

.ind-mob-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0;
}

.ind-mob-card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.ind-mob-card-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.ind-mob-card-features li {
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ind-mob-card-features li i {
  color: #10b981;
}

.ind-mob-card-footer {
  border-top: 1px solid rgba(13, 45, 84, 0.05);
  padding-top: 1.25rem;
}

.ind-mob-kpi {
  display: flex;
  flex-direction: column;
}

.ind-mob-kpi .kpi-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
}

.ind-mob-kpi .kpi-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-color);
}

.btn-ind-mob-cta {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  border: none;
  box-shadow: 0 8px 20px rgba(93, 146, 199, 0.25);
  transition: all 0.3s ease;
}

.btn-ind-mob-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(93, 146, 199, 0.3);
}

/* ==========================================================================
   10. Style Switcher Controls Styling
   ========================================================================== */
.ind-style-switcher {
  display: inline-flex;
  background: rgba(13, 45, 84, 0.04);
  padding: 6px;
  border-radius: 50px;
  border: 1px solid rgba(13, 45, 84, 0.08);
}

.ind-style-switcher .switcher-btn {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}

.ind-style-switcher .switcher-btn:hover {
  color: var(--primary-color);
}

.ind-style-switcher .switcher-btn.active {
  background: #ffffff;
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(13, 45, 84, 0.06);
}

/* Dark theme overrides when Option B is active */
#industries:has(#industries-opt-b:not(.d-none)) {
  /* No dark bg override, maintains light bg */
}

/* ==========================================================================
   11. Option B: Animated Icon Blueprint Grid Card Styling (Light Theme)
   ========================================================================== */
.ind-blueprint-card {
  position: relative;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(13, 45, 84, 0.06);
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(13, 45, 84, 0.02);
}

/* Tech Blueprint Grid lines decoration overlay (Light Theme) */
.blueprint-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 20px 20px;
  background-image:
    linear-gradient(to right, rgba(93, 146, 199, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(93, 146, 199, 0.05) 1px, transparent 1px);
  z-index: 1;
  pointer-events: none;
}

.ind-blue-card-inner {
  padding: 2.25rem;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-grow: 1;
}

.ind-blue-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.ind-blue-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(93, 146, 199, 0.22);
  line-height: 1;
}

.ind-blue-svg-wrap {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(93, 146, 199, 0.06);
  border: 1px solid rgba(93, 146, 199, 0.12);
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.ind-svg-icon {
  width: 44px;
  height: 44px;
  display: block;
}

.ind-blue-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.ind-blue-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.btn-blue-card-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-blue-card-link i {
  transition: transform 0.3s ease;
}

.btn-blue-card-link:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.btn-blue-card-link:hover i {
  transform: translateX(4px);
}

/* Hover effect on blue cards */
.ind-blueprint-card:hover {
  transform: translateY(-8px);
  border-color: rgba(93, 146, 199, 0.35);
  box-shadow: 0 20px 45px rgba(93, 146, 199, 0.12);
  background: #ffffff;
}

.ind-blueprint-card:hover .ind-blue-svg-wrap {
  background: rgba(93, 146, 199, 0.15);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* ==========================================================================
   12. SVG Icon Keyframe Animations
   ========================================================================== */

/* Rotating wheels (Continuous) */
.svg-wheel {
  animation: wheelRotate 6s linear infinite;
  transform-origin: center;
}

.ind-blueprint-card:hover .svg-wheel {
  animation-duration: 2s;
}

.wheel-1 {
  transform-origin: 48px 72px;
}

.wheel-2 {
  transform-origin: 77px 72px;
}

.logistics-svg .wheel-1 {
  transform-origin: 21px 65px;
}

.logistics-svg .wheel-2 {
  transform-origin: 60px 65px;
}

@keyframes wheelRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Scanning scan-line */
.retail-svg .scan-line {
  animation: scanLine 2s ease-in-out infinite;
}

@keyframes scanLine {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.2;
  }

  50% {
    transform: translateY(22px);
    opacity: 1;
  }
}

/* Heartbeat ECG pulse wave drawing */
.health-svg .ecg-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: ecgDraw 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes ecgDraw {
  0% {
    stroke-dashoffset: 200;
  }

  60%,
  100% {
    stroke-dashoffset: 0;
  }
}

/* Rotating vault dial (Continuous) */
.vault-dial {
  animation: vaultSpin 10s ease-in-out infinite;
  transform-origin: 50px 50px;
}

.ind-blueprint-card:hover .vault-dial {
  animation-duration: 4s;
}

@keyframes vaultSpin {
  0% {
    transform: rotate(0deg);
  }

  30% {
    transform: rotate(90deg);
  }

  60% {
    transform: rotate(-45deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Floating graduation cap */
.education-svg .cap-board,
.education-svg .cap-base,
.education-svg .cap-tassel {
  animation: capFloat 3s ease-in-out infinite;
}

.education-svg .cap-board {
  animation-delay: 0s;
}

.education-svg .cap-base {
  animation-delay: 0.1s;
}

.education-svg .cap-tassel {
  animation-delay: 0s;
  transform-origin: 50px 28px;
}

@keyframes capFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* Bouncing map pinpoint icon */
.estate-svg .map-pin {
  animation: pinBounce 2s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

@keyframes pinBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Pulsing logistics route line progress path */
.logistics-svg .route-line {
  stroke-dasharray: 8;
  animation: routeProgress 25s linear infinite;
}

@keyframes routeProgress {
  0% {
    stroke-dashoffset: 500;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

/* ==========================================================================
   13. Philosophy (Vision, Mission, Values) Section
   ========================================================================== */
.phil-section {
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.phil-highlight {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.phil-card {
  background: #ffffff;
  border: 1px solid rgba(13, 45, 84, 0.05);
  border-radius: 28px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(13, 45, 84, 0.02);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phil-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background 0.3s ease;
}

.phil-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(93, 146, 199, 0.12);
  border-color: rgba(93, 146, 199, 0.18);
}

.phil-card.phil-mission:hover::before {
  background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
  /* Emerald */
}

.phil-card.phil-vision:hover::before {
  background: linear-gradient(90deg, #6366f1 0%, #818cf8 100%);
  /* Indigo/Violet */
}

.phil-card.phil-values:hover::before {
  background: linear-gradient(90deg, var(--accent-color) 0%, #a5b4fc 100%);
  /* Blue */
}

.phil-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.phil-mission .phil-icon-wrap {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.phil-vision .phil-icon-wrap {
  background: rgba(99, 102, 241, 0.08);
  color: #6366f1;
}

.phil-values .phil-icon-wrap {
  background: rgba(93, 146, 199, 0.08);
  color: var(--accent-color);
}

.phil-card:hover .phil-icon-wrap {
  transform: scale(1.08) rotate(5deg);
}

.phil-card:hover.phil-mission .phil-icon-wrap {
  background: #10b981;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.25);
}

.phil-card:hover.phil-vision .phil-icon-wrap {
  background: #6366f1;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.25);
}

.phil-card:hover.phil-values .phil-icon-wrap {
  background: var(--accent-color);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(93, 146, 199, 0.25);
}

.phil-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.phil-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.phil-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: auto;
}

.phil-list li {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: transform 0.3s ease;
}

.phil-list li:last-child {
  margin-bottom: 0;
}

.phil-list li i {
  font-size: 0.95rem;
}

.phil-mission .phil-list li i {
  color: #10b981;
}

.phil-vision .phil-list li i {
  color: #6366f1;
}

.phil-values .phil-list li i {
  color: var(--accent-color);
}

.phil-card:hover .phil-list li {
  transform: translateX(4px);
}

/* ==========================================================================
   14. Our Development Process Section
   ========================================================================== */
.process-section {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
}



/* Option A: Wave Flow Styling */
.process-wave-line-svg {
  position: absolute;
  top: 75px;
  /* Centers vertically with node circles */
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
  pointer-events: none;
}

.process-wave-node {
  position: relative;
  z-index: 3;
}

.process-wave-circle {
  width: 96px;
  height: 96px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(13, 45, 84, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(13, 45, 84, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-wave-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 28px;
  height: 28px;
  background: #eff6ff;
  /* light blue */
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 50%;
  color: #3b82f6;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.process-wave-icon {
  font-size: 1.8rem;
  color: #3b82f6;
  transition: transform 0.4s ease;
}

.process-wave-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 850;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.process-wave-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 245px;
  margin: 0 auto;
}

/* Hover States for Option A Wave Step */
.process-wave-step:hover .process-wave-circle {
  transform: scale(1.08);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

.process-wave-step:hover .process-wave-badge {
  background: #3b82f6;
  color: #ffffff;
  border-color: #3b82f6;
}

.process-wave-step:hover .process-wave-icon {
  transform: rotate(12deg) scale(1.05);
}

/* Wavy displacements on desktop viewports */
@media (min-width: 992px) {
  .process-wave-step:nth-child(odd) {
    transform: translateY(-25px);
  }

  .process-wave-step:nth-child(even) {
    transform: translateY(25px);
  }
}


/* ==========================================================================
   15. Testimonials — Split Layout Slider (Left Info + Right Carousel)
   ========================================================================== */

/* ---- Section ---- */
.tsl-section {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
  --tsl-translate-step: calc(50% + 12px);
  --tsl-card-width: calc(50% - 12px);
  --tsl-gap: 24px;
}

/* Full-height row */
.tsl-row {
  min-height: 620px;
}

/* ================================================================
   LEFT INFO PANEL
   ================================================================ */
.tsl-left {
  background: linear-gradient(160deg, #0d2d54 0%, #0f3a6e 60%, #153f78 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle dot pattern on left panel */
.tsl-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Decorative orb */
.tsl-left::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 146, 199, 0.25) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  pointer-events: none;
}

.tsl-left-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 3.5rem 5rem 4rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Heading */
.tsl-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.5vw, 2.4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0;
}

.tsl-heading-accent {
  background: linear-gradient(90deg, #5d92c7, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tsl-subtext {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* Rating row */
.tsl-rating-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.tsl-big-stars {
  color: #f59e0b;
  font-size: 1rem;
  display: flex;
  gap: 3px;
  filter: drop-shadow(0 2px 6px rgba(245, 158, 11, 0.4));
}

.tsl-rating-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.tsl-rating-text strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
}

.tsl-rating-text span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Stats grid */
.tsl-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.tsl-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: background 0.3s ease;
}

.tsl-stat:hover {
  background: rgba(255, 255, 255, 0.09);
}

.tsl-stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.tsl-stat-lbl {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Avatar stack */
.tsl-avatar-stack {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.tsl-stack-avatars {
  display: flex;
}

.tsl-sav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #0d2d54;
  margin-left: -10px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tsl-sav:first-child {
  margin-left: 0;
}

.tsl-stack-avatars:hover .tsl-sav {
  margin-left: -4px;
}

.tsl-sav-more {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  font-size: 0.68rem;
}

.tsl-stack-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Navigation arrows + dots */
.tsl-nav-arrows {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tsl-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.tsl-arrow:hover {
  background: rgba(93, 146, 199, 0.25);
  border-color: rgba(93, 146, 199, 0.5);
  color: #fff;
  transform: scale(1.08);
}

.tsl-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.tsl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: block;
}

.tsl-dot-active {
  width: 22px;
  border-radius: 4px;
  background: #5d92c7;
}

.tsl-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* ================================================================
   RIGHT CAROUSEL PANEL
   ================================================================ */
.tsl-right {
  position: relative;
  background: linear-gradient(135deg, #0b1f38 0%, #071424 100%);
  padding: 5rem 4rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Counter */
.tsl-counter {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

/* Carousel viewport — clips overflow */
.tsl-carousel-viewport {
  overflow: hidden;
  border-radius: 24px;
}

/* Sliding track */
.tsl-carousel-track {
  display: flex;
  gap: var(--tsl-gap);
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---- Individual testimonial cards ---- */
.tsl-card {
  flex: 0 0 var(--tsl-card-width);
  width: var(--tsl-card-width);
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(13, 45, 84, 0.07),
    0 4px 16px rgba(13, 45, 84, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  border: 1px solid rgba(13, 45, 84, 0.05);
}

/* Coloured top accent stripe */
.tsl-card-accent {
  height: 5px;
  width: 100%;
  flex-shrink: 0;
}

/* Card body */
.tsl-card-body {
  padding: 2.5rem 3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Card header (quote icon + stars) */
.tsl-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
}

.tsl-card-quote-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13, 45, 84, 0.06), rgba(93, 146, 199, 0.08));
  border: 1px solid rgba(13, 45, 84, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.1rem;
}

.tsl-card-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  display: flex;
  gap: 3px;
  filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.2));
}

/* Quote text */
.tsl-card-quote {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.8;
  color: var(--primary-color);
  flex: 1;
  margin: 0 0 2rem 0;
  border: none;
  padding: 0;
  letter-spacing: -0.01em;
}

/* Author row */
.tsl-card-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(13, 45, 84, 0.06);
}

.tsl-card-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.tsl-card-author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tsl-card-author-info strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
}

.tsl-card-author-info span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.tsl-verified-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
}


/* ==========================================
   About Page Styles
   ========================================== */
.about-hero-section {
  position: relative;
  background-image: linear-gradient(rgba(8, 16, 26, 0.72), rgba(8, 16, 26, 0.72)), url('../images/about_banner_photo.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4.5rem 0 3.5rem 0; /* Compact Height */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.about-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(93, 146, 199, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.about-breadcrumbs .breadcrumb-item,
.about-breadcrumbs .breadcrumb-item a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.about-breadcrumbs .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.about-breadcrumbs .breadcrumb-item.active {
  color: var(--accent-color);
}

.about-breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.2);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-color);
  background: rgba(93, 146, 199, 0.12);
  border: 1px solid rgba(93, 146, 199, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  color: #ffffff;
}

.about-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Story section */
.about-story-section {
  background-color: #ffffff;
  background-image: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--text-primary);
}

.about-story-section .ind-main-title {
  color: var(--primary-color);
}

.about-story-section .text-white-50 {
  color: #475569 !important;
}

.story-metric {
  display: flex;
  flex-direction: column;
}

.story-metric-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
}

.story-metric-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-metric-divider {
  width: 1px;
  height: 50px;
  background: rgba(0, 0, 0, 0.1);
  align-self: center;
}

/* Showcase Image Wrap Styles */
.about-showcase-image-wrap {
  position: relative;
  border-radius: 24px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(93, 146, 199, 0.15) 0%, rgba(93, 146, 199, 0.05) 100%);
  box-shadow: 0 10px 30px rgba(13, 45, 84, 0.05),
              0 2px 10px rgba(13, 45, 84, 0.02);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

.about-showcase-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(93, 146, 199, 0.4) 0%, rgba(93, 146, 199, 0.1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.about-showcase-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-showcase-image-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(13, 45, 84, 0.12),
              0 5px 15px rgba(93, 146, 199, 0.1);
}

.about-showcase-image-wrap:hover img {
  transform: scale(1.02);
}

/* Values section */
.about-values-section {
  background-color: #f8fafc;
  background-image: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.about-values-section h2 {
  color: var(--primary-color);
}

.about-values-section .text-white-50 {
  color: #475569 !important;
}

.about-value-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(13, 45, 84, 0.06);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.about-value-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: rgba(93, 146, 199, 0.4);
  box-shadow: 0 12px 30px rgba(13, 45, 84, 0.08);
}

.value-icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(13, 45, 84, 0.04);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition-smooth);
}

.about-value-card:hover .value-icon-wrap {
  background: rgba(93, 146, 199, 0.18);
  transform: scale(1.1);
}

.value-title {
  font-size: 1.1rem;
}

.about-value-card .value-title,
.about-value-card h4 {
  color: var(--primary-color) !important;
}

.value-desc {
  font-size: 0.85rem;
  line-height: 1.6;
}

.about-value-card .value-desc,
.about-value-card .text-white-50 {
  color: #475569 !important;
}

/* Operating Matrix Bento Values */
.about-bento-values {
  background-color: #f8fafc;
  background-image: radial-gradient(circle at 10% 80%, rgba(93, 146, 199, 0.1) 0%, transparent 40%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-bento-values h2 {
  color: var(--primary-color);
}

.about-bento-values .text-white-50 {
  color: #475569 !important;
}

.bento-value-item {
  background: #ffffff;
  border: 1px solid rgba(13, 45, 84, 0.06);
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.bento-value-item:hover {
  background: #ffffff;
  border-color: rgba(93, 146, 199, 0.3);
  box-shadow: var(--shadow-md);
}

.bento-value-item.active {
  background: rgba(93, 146, 199, 0.08);
  border-color: rgba(93, 146, 199, 0.4);
  box-shadow: inset 0 0 15px rgba(93, 146, 199, 0.05);
}

.bento-val-icon {
  font-size: 1.4rem;
  width: 45px;
  height: 45px;
  background: rgba(13, 45, 84, 0.03);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.bento-value-item.active .bento-val-icon {
  background: rgba(93, 146, 199, 0.15);
  transform: scale(1.05);
}

.bento-value-item h5 {
  color: var(--primary-color) !important;
}

.bento-value-item p {
  color: #475569 !important;
}

/* Console specs monitor display */
.specs-monitor-wrapper {
  position: relative;
}

.specs-monitor-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: radial-gradient(circle at center, rgba(93, 146, 199, 0.12) 0%, transparent 60%);
  filter: blur(15px);
  z-index: 1;
  pointer-events: none;
}

.specs-monitor {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(13, 45, 84, 0.08);
  border-radius: 16px;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(13, 45, 84, 0.06);
  display: flex;
  flex-direction: column;
}

.monitor-header {
  background: #f1f5f9;
  border-bottom: 1px solid rgba(13, 45, 84, 0.06);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.monitor-controls {
  display: flex;
  gap: 6px;
}

.monitor-controls .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.monitor-controls .dot.red { background: #ef4444; }
.monitor-controls .dot.yellow { background: #f59e0b; }
.monitor-controls .dot.green { background: #10b981; }

.monitor-title {
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #475569 !important;
}

.monitor-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spec-pane {
  display: none;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.spec-pane.active {
  display: block;
}

.spec-pane h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color) !important;
}

.spec-code-block {
  background: #f8fafc;
  border: 1px solid rgba(13, 45, 84, 0.06);
  border-radius: 8px;
  padding: 1rem;
  font-family: monospace;
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.5;
}

.spec-code-block code {
  display: block;
}

.spec-pane p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #475569 !important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Component Chart circular progress charts */
.about-expertise-b {
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.about-expertise-b h2,
.about-expertise-b h4 {
  color: var(--primary-color) !important;
}

.about-expertise-b p {
  color: #475569 !important;
}

.circular-chart-b {
  display: block;
  margin: 10px auto;
  max-width: 90px;
  max-height: 90px;
}

.circle-bg-b {
  fill: none;
  stroke: rgba(0, 0, 0, 0.05);
  stroke-width: 2.8;
}

.circle-b {
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  animation: progressB 1.2s ease-out forwards;
}

@keyframes progressB {
  0% {
    stroke-dasharray: 0 100;
  }
}

.circular-chart-b.blue .circle-b { stroke: var(--primary-color); }
.circular-chart-b.green .circle-b { stroke: #10b981; }
.circular-chart-b.yellow .circle-b { stroke: #f59e0b; }
.circular-chart-b.red .circle-b { stroke: var(--accent-color); }

.percentage-b {
  fill: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 800;
  text-anchor: middle;
}

.radial-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569 !important;
}

.tag-b {
  background: #ffffff !important;
  border-color: rgba(13, 45, 84, 0.08) !important;
  color: #475569 !important;
  box-shadow: var(--shadow-sm);
}

.tag-b:hover {
  background: rgba(93, 146, 199, 0.12) !important;
  border-color: rgba(93, 146, 199, 0.4) !important;
  color: var(--primary-color) !important;
}

/* CTA section */
.about-cta-section {
  background-color: #f8fafc;
  background-image: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}

.about-cta-inner {
  background: linear-gradient(135deg, #0d2d54 0%, #1e477a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(13, 45, 84, 0.15);
}

.about-cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

.about-cta-inner h2,
.about-cta-inner .text-white {
  color: #ffffff !important;
}

.about-cta-inner .text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ==========================================
   Contact Page Styles
   ========================================== */
.contact-hero-section {
  position: relative;
  background-image: linear-gradient(rgba(8, 16, 26, 0.75), rgba(8, 16, 26, 0.75)), url('../images/contact_banner_photo.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4.5rem 0 3.5rem 0; /* Compact Height */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.contact-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(93, 146, 199, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.contact-breadcrumbs .breadcrumb-item,
.contact-breadcrumbs .breadcrumb-item a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-breadcrumbs .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.contact-breadcrumbs .breadcrumb-item.active {
  color: var(--accent-color);
}

.contact-breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.2);
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  background: rgba(93, 146, 199, 0.1);
  border: 1px solid rgba(93, 146, 199, 0.25);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
}

.contact-hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  color: #ffffff;
}

.contact-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Main Section */
.contact-main-section {
  background-color: #ffffff;
  background-image: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--text-primary);
}

.contact-form-card-wrapper {
  background: #ffffff;
  border: 1px solid rgba(13, 45, 84, 0.06);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(13, 45, 84, 0.04);
}

.form-group-custom {
  position: relative;
  margin-bottom: 0.5rem;
}

.form-label-custom {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-input {
  background: #f8fafc !important;
  border: 1px solid rgba(13, 45, 84, 0.1) !important;
  border-radius: 12px !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.95rem !important;
  color: var(--text-primary) !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.contact-input::placeholder {
  color: #94a3b8;
}

.contact-input:focus {
  background: #ffffff !important;
  border-color: rgba(93, 146, 199, 0.6) !important;
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(93, 146, 199, 0.15) !important;
}

select.contact-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23475569' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 16px 12px !important;
}

.btn-submit-contact {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e477a 100%) !important;
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 25px rgba(13, 45, 84, 0.15) !important;
  transition: all 0.3s ease !important;
}

.btn-submit-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(13, 45, 84, 0.25) !important;
  background: linear-gradient(135deg, #102e50 0%, #295994 100%) !important;
}

.btn-submit-contact:active {
  transform: translateY(1px);
}

/* Contact Info Items */
.contact-info-card {
  background: #ffffff;
  border: 1px solid rgba(13, 45, 84, 0.06);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 20px rgba(13, 45, 84, 0.02);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(13, 45, 84, 0.06);
  border-color: rgba(93, 146, 199, 0.25);
}

.contact-info-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(13, 45, 84, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon-box {
  transform: scale(1.1);
  background: rgba(93, 146, 199, 0.15);
}

.contact-info-card .info-value {
  color: var(--primary-color) !important;
  transition: color 0.3s ease;
}

.contact-info-card:hover .info-value {
  color: var(--accent-color) !important;
}

/* Map Mockup wrapper */
.contact-map-wrapper {
  position: relative;
}

.contact-map-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: radial-gradient(circle at center, rgba(93, 146, 199, 0.1) 0%, transparent 60%);
  filter: blur(15px);
  z-index: 1;
  pointer-events: none;
}

.contact-map-card {
  position: relative;
  border-radius: 24px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(93, 146, 199, 0.15) 0%, rgba(93, 146, 199, 0.05) 100%);
  box-shadow: 0 15px 35px rgba(13, 45, 84, 0.06);
  z-index: 2;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-map-card img {
  border-radius: 18px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-map-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(13, 45, 84, 0.12);
}

.contact-map-card:hover img {
  transform: scale(1.02);
}

.map-overlay-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(13, 45, 84, 0.08);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* ==========================================
   Services Page Styles
   ========================================== */
.services-hero-section {
  position: relative;
  background-image: linear-gradient(rgba(8, 16, 26, 0.75), rgba(8, 16, 26, 0.75)), url('../images/services_banner_photo.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4.5rem 0 3.5rem 0; /* Compact Height */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.services-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(93, 146, 199, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.services-breadcrumbs .breadcrumb-item,
.services-breadcrumbs .breadcrumb-item a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.services-breadcrumbs .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.services-breadcrumbs .breadcrumb-item.active {
  color: var(--accent-color);
}

.services-breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.2);
}

.services-badge-hero {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  background: rgba(93, 146, 199, 0.1);
  border: 1px solid rgba(93, 146, 199, 0.25);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  color: #ffffff;
}

.services-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Detail Blocks */
.services-detail-section {
  background-color: #ffffff;
  background-image: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--text-primary);
}

.services-block-item {
  padding: 3rem 0;
}

.service-detail-image-wrap {
  position: relative;
  border-radius: 24px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(93, 146, 199, 0.15) 0%, rgba(93, 146, 199, 0.05) 100%);
  box-shadow: 0 10px 30px rgba(13, 45, 84, 0.05);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

.service-detail-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(93, 146, 199, 0.4) 0%, rgba(93, 146, 199, 0.1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.service-detail-image-wrap img {
  border-radius: 18px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-detail-image-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(13, 45, 84, 0.12);
}

.service-detail-image-wrap:hover img {
  transform: scale(1.03);
}

.service-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #475569;
}

.service-detail-list li strong {
  color: var(--primary-color);
}

.detail-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-right: 0.75rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.services-separator {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 45, 84, 0.08), transparent);
  margin: 2rem 0;
}

/* ==========================================
   Web Development Page Styles
   ========================================== */
.web-dev-hero-section {
  position: relative;
  background-image: linear-gradient(rgba(8, 16, 26, 0.75), rgba(8, 16, 26, 0.75)), url('../images/web_dev_banner_photo.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4.5rem 0 3.5rem 0; /* Compact Height */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.seo-hero-section,
.ecommerce-hero-section,
.hosting-hero-section,
.maintenance-hero-section,
.automation-hero-section {
  position: relative;
  background-image: linear-gradient(rgba(8, 16, 26, 0.75), rgba(8, 16, 26, 0.75)), url('../images/services_banner_photo.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4.5rem 0 3.5rem 0; /* Compact Height */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.web-dev-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(93, 146, 199, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.web-dev-breadcrumbs .breadcrumb-item,
.web-dev-breadcrumbs .breadcrumb-item a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.web-dev-breadcrumbs .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.web-dev-breadcrumbs .breadcrumb-item.active {
  color: var(--accent-color);
}

.web-dev-breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.2);
}

.web-dev-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  background: rgba(93, 146, 199, 0.1);
  border: 1px solid rgba(93, 146, 199, 0.25);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
}

.web-dev-hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  color: #ffffff;
}

.web-dev-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.7) !important;
}

.web-dev-showcase-image-wrap {
  position: relative;
  border-radius: 24px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(93, 146, 199, 0.15) 0%, rgba(93, 146, 199, 0.05) 100%);
  box-shadow: 0 10px 30px rgba(13, 45, 84, 0.05);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

.web-dev-showcase-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(93, 146, 199, 0.4) 0%, rgba(93, 146, 199, 0.1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.web-dev-showcase-image-wrap img {
  border-radius: 18px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.web-dev-showcase-image-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(13, 45, 84, 0.12);
}

.web-dev-showcase-image-wrap:hover img {
  transform: scale(1.03);
}

/* Step Cards */
.web-dev-step-card {
  background: #ffffff;
  border: 1px solid rgba(13, 45, 84, 0.06);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  box-shadow: 0 8px 20px rgba(13, 45, 84, 0.02);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}

.web-dev-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 45, 84, 0.06);
  border-color: rgba(93, 146, 199, 0.25);
}

.step-card-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.8;
  display: block;
}

.step-card-title {
  color: var(--primary-color) !important;
}

.step-card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Stack tags */
.web-dev-stack-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  background: #ffffff;
  border: 1px solid rgba(13, 45, 84, 0.08);
  color: #475569;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.web-dev-stack-tag:hover {
  background: rgba(93, 146, 199, 0.12);
  border-color: rgba(93, 146, 199, 0.4);
  color: var(--primary-color);
  transform: translateY(-1px);
}

/* CTA */
.web-dev-cta-section {
  background-color: #08101a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.web-dev-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(93, 146, 199, 0.08) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

/* Service Page Sidebar Widget styles */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #ffffff;
  border: 1px solid rgba(13, 45, 84, 0.06);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(13, 45, 84, 0.03);
}

.sidebar-service-list {
  border-radius: 12px;
  overflow: hidden;
}

.sidebar-service-list .list-group-item {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569 !important;
  border: 1px solid rgba(13, 45, 84, 0.05);
  background-color: #ffffff;
  padding: 1.45rem 1.6rem;
  line-height: 1.8;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border-left: 3px solid transparent;
}

.sidebar-service-list .list-group-item i {
  color: #64748b;
  transition: color 0.3s ease, transform 0.3s ease;
}

.sidebar-service-list .list-group-item:hover {
  background-color: rgba(93, 146, 199, 0.05);
  color: var(--accent-color) !important;
  border-left-color: var(--accent-color);
  padding-left: 1.85rem;
}

.sidebar-service-list .list-group-item:hover i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.sidebar-service-list .list-group-item.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e477a 100%) !important;
  border-color: var(--primary-color) !important;
  border-left-color: var(--accent-color) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(13, 45, 84, 0.1);
}

.sidebar-service-list .list-group-item.active i {
  color: var(--accent-color);
}

/* Service Features/Standards Widget */
.features-list .feature-item i {
  color: #10b981 !important;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.features-list .feature-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.features-list .feature-item h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-color) !important;
  transition: color 0.3s ease;
}

.features-list .feature-item:hover h6 {
  color: var(--accent-color) !important;
}

.features-list .feature-item p {
  color: #64748b !important;
  font-size: 0.82rem;
  line-height: 1.45;
}

.service-contact-widget {
  background: linear-gradient(135deg, #0d2d54 0%, #1e477a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(13, 45, 84, 0.12);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-contact-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(13, 45, 84, 0.18);
}

.service-contact-widget .widget-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

.status-indicator-dot {
  width: 10px;
  height: 10px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulse-green 2s infinite;
  display: inline-block;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.status-console {
  font-family: monospace;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
  .tsl-section {
    --tsl-translate-step: 100%;
    --tsl-card-width: 100%;
    --tsl-gap: 0px;
  }

  .tsl-left-inner {
    padding: 4rem 2.5rem;
  }

  .tsl-right {
    padding: 4rem 2.5rem;
  }

  .tsl-card-body {
    padding: 2rem 2rem;
  }

  .tsl-card-quote {
    font-size: 1rem;
  }

  .tsl-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .tsl-left {
    border-radius: 0;
  }

  .tsl-left-inner {
    padding: 3rem 1.75rem;
  }

  .tsl-right {
    padding: 3rem 1.75rem;
  }

  .tsl-stats {
    grid-template-columns: 1fr 1fr;
  }

  .tsl-card-body {
    padding: 1.75rem 1.5rem;
  }

  .tsl-card-quote {
    font-size: 0.95rem;
  }

  .tsl-verified-badge {
    display: none;
  }
}

@media (max-width: 576px) {
  .tsl-left-inner {
    padding: 2.5rem 1.5rem;
  }

  .tsl-right {
    padding: 2.5rem 1.25rem;
  }

  .tsl-heading {
    font-size: 1.6rem;
  }

  .tsl-card-body {
    padding: 1.5rem 1.25rem;
  }

  .tsl-card {
    min-height: 340px;
  }
}