/********** N-N Networks Template CSS **********/
body {
  font-family: 'Poppins', sans-serif !important;
  overflow-x: hidden;
}

:root {
  /* Brand Core Colors (N-N Networks Gradient) */
  --primary: #2563eb !important;       /* Royal Cobalt Blue */
  --primary-hover: #1d4ed8 !important; /* Darker Cobalt */
  --secondary: #0ea5e9 !important;     /* Tech Cyan / Sky Blue */
  --accent-orange: #f97316 !important; /* Vibrant Orange */
  
  /* Neutral Palette */
  --light: #f8fafc !important;
  --dark: #0f172a !important;
  --text-muted: #64748b !important;
  --border-color: #e2e8f0 !important;
}

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

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

.bg-second {
  background-color: #fafafa !important;
}

h1,
.h1 {
  font-weight: 700;
  font-family: 'Poppins', sans-serif !important;
}

h2,
.h2 {
  color: #1e293b;
  font-weight: 700;
  font-family: 'Poppins', sans-serif !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
  font-family: 'Poppins', sans-serif !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
  font-family: 'Poppins', sans-serif !important;
}

p,
.p {
  color: #475569;
  font-family: 'Poppins', sans-serif !important;
}

ul,
li {
  font-family: 'Poppins', sans-serif !important;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

/* Images Animation */
.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.what-we-image-1 figure img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  aspect-ratio: 1 / 0.73;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  color: #ffffff;
  background-color: var(--primary);
  border-radius: 10px;
  font-weight: 600 !important;
  border: none;
}

.btn.btn-primary:hover {
  background-color: var(--primary-hover);
  color: #ffffff;
}

.btn-secondary {
  color: #ffffff;
  padding: 12px 40px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--accent-orange);
  font-weight: 600 !important;
  border-color: var(--accent-orange);
}

.btn-secondary:hover {
  background-color: #ea580c;
  border-color: #ea580c;
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-outline-body {
  color: var(--primary);
  border-color: var(--border-color);
}

.btn-outline-body:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

.shop-btn {
  padding: 10px 25px 10px 25px !important;
}

/* Title with Underline */
.section-title-2 {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title-2::after {
  content: "";
  display: block;
  width: 200px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent-orange));
  margin-top: 20px;
  border-radius: 3px;
}

.section-title-3 {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
  text-align: center;
}

.section-title-3::after {
  content: "";
  display: block;
  width: 200px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent-orange));
  margin: 20px auto 0 auto;
  border-radius: 3px;
}

/* Responsive Screens */
@media (max-width: 768px) {
  h1, .h1 { font-size: 24px; }
  h2, .h2 { font-size: 24px !important; }
  p, .p { font-size: 15px; }

  .section-title-2::after {
    width: 100px;
    margin-top: 10px !important;
  }

  .section-title-3::after {
    width: 100px;
    margin-top: 10px !important;
  }
}

/* *************************** */
/* Navbar CSS */
/* *************************** */
.fs-7 { font-size: 0.8125rem; }
.tracking-tight { letter-spacing: -0.02em; }

.top-bar {
  background-color: var(--dark);
}

.top-bar-link {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-bar-link:hover {
  color: var(--secondary);
}

.icon-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--accent-orange);
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.15);
}

.social-icon {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.social-icon:hover {
  color: var(--accent-orange);
  transform: translateY(-1px);
}

/* Header Navigation */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.brand-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent-orange));
  color: #ffffff;
}

.brand-text {
  color: var(--dark);
}

.navbar-nav .nav-link {
  color: #475569 !important;
  font-size: 0.9375rem;
  padding: 0.5rem 1rem !important;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
  background-color: rgba(37, 99, 235, 0.06);
}

.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background-color: rgba(37, 99, 235, 0.08);
  font-weight: 600;
}

.btn-quote-modern {
  background-color: var(--primary);
  color: #ffffff !important;
  padding: 0.625rem 1.375rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-quote-modern:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.35);
}

.btn-quote-modern i {
  transition: transform 0.2s ease;
}

.btn-quote-modern:hover i {
  transform: translateX(3px);
}

@media (max-width: 991.98px) {
  .site-header { background: #ffffff; }
  .navbar-collapse { padding: 1rem 0; }
  .navbar-nav .nav-link { padding: 0.625rem 0.875rem !important; }
}

.navbar-dark .navbar-toggler{
	background: var(--primary) !important;
	border-radius: 10px !important;
}

/* ********************************** */
/* Home Page Hero Section */
/* ********************************** */
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  display: inline-block;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-bg-accent {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(255,255,255,0) 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.btn-hero-primary {
  background-color: var(--primary);
  color: #ffffff !important;
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid var(--primary);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-hero-outline {
  background-color: transparent;
  color: var(--dark) !important;
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid #cbd5e1;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
  background-color: rgba(37, 99, 235, 0.04);
}

.floating-badge {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: floatAnim 4s ease-in-out infinite;
}

.badge-top-right { top: 10%; right: -20px; }
.badge-bottom-left { bottom: 10%; left: -20px; animation-delay: 2s; }

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

.features-cards-section {
  margin-top: -3.5rem;
  z-index: 10;
}

.service-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.card-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.4;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.card-icon-wrapper {
  width: 52px;
  height: 52px;
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.1) !important;
}

.service-card:hover .card-accent-line {
  opacity: 1;
  height: 5px;
}

.card-link {
  text-decoration: none;
  font-size: 0.9rem;
  transition: gap 0.2s ease;
}

.service-card:hover .card-link {
  gap: 0.6rem !important;
}

@media (max-width: 991.98px) {
  .features-cards-section { margin-top: 1rem; }
}

/* *********************************** */
/* Inner Layout Components */
/* *********************************** */
.max-w-700 { max-width: 700px; }
.max-w-800 { max-width: 800px; }

.about-exp-badge {
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
}

.pricing-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.pricing-popular {
  transform: scale(1.02);
  border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
  .pricing-popular { transform: scale(1); }
}

.cta-glow-effect {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, rgba(15, 23, 42, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* *************************************************** */
/* --- Footer Container & Elements --- */
/* **************************************************** */
.site-footer {
  background-color: var(--dark) !important;
  color: #cbd5e1;
}

.footer-heading {
  color: #ffffff !important;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent-orange));
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  color: #94a3b8 !important;
  text-decoration: none !important;
  font-size: 0.875rem;
  font-weight: 400;
  transition: all 0.25s ease-in-out;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff !important;
  transform: translateX(5px);
}

.payment-badge {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #f1f5f9 !important;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background-color 0.2s ease;
}

.payment-badge:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

.payment-badge i {
  color: var(--secondary) !important;
}

.footer-contact-info i {
  color: var(--secondary) !important;
  font-size: 1rem;
}

.footer-contact-info a {
  color: #f8fafc !important;
  transition: color 0.2s ease;
}

.footer-contact-info a:hover {
  color: var(--secondary) !important;
}

.scroll-to-top {
  background-color: var(--primary) !important;
  color: #ffffff !important;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scroll-to-top:hover {
  background-color: var(--accent-orange) !important;
}