html{
  font-size: 16px; /* DO NOT reduce */
}
body {
  font-family: var(--font-body);
  font-size: 1rem;        /* 16px */
  line-height: 1.65;
  color: #1f2937;
  background-color: #ffffff;
  scroll-behavior: smooth;
  -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
 font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
}
h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 600;
}
.navbar,
.site-header {
  background-color: var(--header-bg) !important;
  min-height:100px;
}

.hero {
  background-color:#000;
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url("../images/banner.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh;
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 640px;
  height:400px;
}
section {
  background-color:#000;
  padding: 30px 0;
}
.section-title {
  font-weight: 700;
  margin-bottom: 50px;
}
.icon-box {
  background: #f8f9fa;
  padding: 35px;
  border-radius: 14px;
  height: 100%;
  transition: transform .3s;
}
.icon-box:hover {
  transform: translateY(-6px);
}
.dark-section {
  background: #111;
  color: #ddd;
}
.dark-section .icon-box {
  background: #1c1c1c;
}
.counter {
  font-size: 40px;
  font-weight: 700;
  color: #FE0000;
}
footer {
  background: #000;
  color: #777;
  padding: 40px 0px 0px 0px;
}


.navbar, footer {
  background: var(--primary);
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #e06f00;
}

.dark-section {
  background: var(--dark);
  color: #ddd;
}

.counter {
  color: #FE0000;
}
/* ===== ABOUT US – CRIMSON RED FLOW ===== */
.about-crimson {
  background: linear-gradient(
    135deg,
    #fff 0%,
    #fff 50%,
    #fff 100%
  );
  color: #FE0000;
  position: relative;
  overflow: hidden;
}

/* sharp overlay for depth */
.about-crimson::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.04) 2px,
      transparent 2px,
      transparent 8px
    );
  pointer-events: none;
}

/* text styling */
.about-crimson h2 {
  color: #000;
}

.about-crimson p {
  color: #000;
  line-height: 1.8;
}

/* image styling */
.about-crimson img {
  border-radius: 14px;
 }

/* accent line */
.about-crimson .accent-line {
  width: 90px;
  height: 4px;
  background: #fff;
  margin: 0 auto 30px;
}
#access{
 color:#fff;
 scroll-margin-top: 100px;
}
#contact{
 color:#fff;
 scroll-margin-top: 100px;
}
#counters{
  color:#fff;
}
.hidden{
  display:none;
}
#network{
 scroll-margin-top: 100px;
}
.info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* Hidden state */
.slide-content {
  max-height: 0;
  opacity: 0;
  transform: translateY(12px);
  overflow: hidden;
  transition:
    max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    transform 0.45s ease;
  will-change: max-height, opacity, transform;
}

/* Visible state */
.info-card.active .slide-content {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  color: var(--text-body);
}

.info-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-heading);
}

.info-desc .slide-content p {
  color: #6c757d;
  margin-bottom: 12px;
  color: var(--text-body);
}

.read-more {
  font-weight: 500;
  color: var(--link-color); /* auto-syncs with header */
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

.read-more:hover {
  text-decoration: underline;
}

a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}
.btn-primary,
.btn-cta {
  background-color: var(--brand-accent);
  border-color: var(--brand-accent);
}
/* Privacy Panel */
.privacy-panel {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 90vh;
  background: #ffffff;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.privacy-panel.active {
  transform: translateY(0);
}

/* Header */
.privacy-header {
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.privacy-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Content */
.privacy-content {
  padding: 24px;
  overflow-y: auto;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #374151;
}

.privacy-content h5 {
  margin-top: 20px;
  font-weight: 600;
  color: #111827;
}
.site-footer {
  background-color: var(--footer-bg);
  color: var(--text-muted);
}

.site-footer a {
  color: var(--footer-link);
  font-weight: 500;
}

.site-footer a:hover {
  color: var(--footer-link-hover);
  text-decoration: underline;
}
.dark-section {
  background: linear-gradient(180deg, #0b1f33, #020617);
  color: #e5e7eb;
}

.dark-section h2,
.dark-section h5 {
  color: #f9fafb;
}
#access .dark-section {
  background: linear-gradient(180deg, #fffff, #ffffff);
}
#access {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}
/* ================= STATS SECTION ================= */
/* ================= STATS SECTION ================= */
.stats-section {
  background: linear-gradient(180deg, #000 0%, #020d1f 100%);
  padding: 80px 0;
}

/* Numbers */
.stats-section .counter {
  color: #ff2b2b;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
}

/* Labels */
.stats-section p {
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.3px;
}

/* Responsive tuning */
@media (max-width: 768px) {
  .stats-section .counter {
    font-size: 2.4rem;
  }

  .stats-section p {
    font-size: 0.9rem;
  }
}
.btn-crimson {
  background-color: crimson;
  color: #fff;
  border: none;
}

.btn-crimson:hover {
  background-color: darkred;
}

/* Apply to contact section links */
#contact a {
    color: var(--crimson-color) !important;
    text-decoration: none;
    transition: color 0.3s;
}

#contact a:hover {
    color: var(--crimson-hover) !important;
}

/* Apply to buttons */
#contact .btn {
    background-color: var(--crimson-color);
    color: var(--btn-text-color);
    border: none;
    transition: background-color 0.3s;
}

#contact .btn:hover {
    background-color: var(--crimson-hover);
}
#access .access-card {
  text-align: left;
}

#access .img-wrap {
  width: 100%;
  height: 260px;           /* fixed height */
  overflow: hidden;
  border-radius: 16px;
}

#access .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* KEY FIX */
  display: block;
}

#access h5 {
  margin-top: 15px;
  color: #fff;
}
/* ABOUT SECTION BACKGROUND */
#about.about-crimson {
  position: relative;
  padding: 50px 0px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Dark overlay */
#about.about-crimson::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: rgba(0, 0, 0, 0.6);*/
  z-index: 1;
}
#about{
 scroll-margin-top: 100px;
}
/* Keep content above overlay */
#about.about-crimson .container {
  position: relative;
  z-index: 2;
}

/* Text color */
#about.about-crimson h2,
#about.about-crimson p {
  color: #000;
}

/* Optional: limit text width for readability */
/* ABOUT CCTV BACKGROUND */
#about.about-cctv {
  position: relative;
  padding: 100px 0;
  background-image: url("../images/cctv.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* Dark overlay */
#about.about-cctv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Keep content above overlay */
#about.about-cctv .container {
  position: relative;
  z-index: 2;
}

/* Text color */
#about.about-cctv h2,
#about.about-cctv p {
  color: #ffffff;
}
#cctv.about-cctv h2,
#cctv.about-cctv p {
  color: #fff;
}
#cctv{
 scroll-margin-top: 100px;
}
/* Optional: limit text width for readability */
#about.about-cctv .col-md-6 {
  max-width: 520px;
}
.nav-link{
 color:var(--nav-link-text-color);
}
.navbar-brand img {
  height: 40px;
  width: auto;
}
.footer-logo img {
  height: 60px;
  width: auto;
}
.float-left{
 float:left;
}
.contact-btn {
  background-color: #30436B !important;
  color: #FFFFFF !important;
  border: none;
}

.contact-btn:hover {
  background-color: #30437B !important;
}
#contact a {
  color: #fff !important;
  text-decoration: none;
}

#contact a:hover {
  color: #4FC3F7 !important;
}
.contact-social {
  display: flex;
  gap: 14px;
}

.contact-social a {
  width: 40px;
  height: 40px;
  background: #0a8edc; /* Logo blue */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background: #6a3fa0; /* Logo purple */
  transform: translateY(-3px);
}
.btn-form-link {
  background: linear-gradient(135deg, #0a8edc, #6a3fa0);
  color: #ffffff;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-form-link:hover {
  background: linear-gradient(135deg, #6a3fa0, #0a8edc);
  transform: translateY(-2px);
}
.btn-form-link:hover {
  background: linear-gradient(135deg, #6a3fa0, #0a8edc);
  transform: translateY(-2px);
}
/* Navbar link default */
.navbar .nav-link {
  color: #1f2937; /* dark gray for normal state */
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Hover state */
.navbar .nav-link:hover {
  color: #0a8edc; /* brand blue */
}

/* Active / current section */
.navbar .nav-link.active {
  color: #6a3fa0; /* brand purple */
}
.navbar .nav-link {
  position: relative;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}
.navbar.scrolled .nav-link {
  color: #ffffff;
}

.navbar.scrolled .nav-link:hover {
  color: #0a8edc;
}
#testimonial{
	 background: linear-gradient(180deg, #f5f9ff 0%, #eef3fb 100%);
}
#mainNav {
  transition: all 0.3s ease;
  background: transparent;
  padding: 20px 0;
}

#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
}
#mainNav.scrolled .nav-link {
  color: #0b1d33 !important; /* FORCE dark */
}
#hero-about {
  margin-top: 71.5px; /* height of header */
}

#hero-about {
  min-height: 60vh;

  /*background-image: 
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url("../images/banner.jpg");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;*/
}

.hero-overlay {
  min-height: 60vh;
  background: rgba(0, 0, 0, 0); 
  background-image: 
    linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)),
    url("../images/banner.jpg");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

}

.hero-subtitle {
  color: #56c8ff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 16px;
}

.hero-title {
  color: #ffffff;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
}

.hero-description {
  color: #d1d1d1;
  font-size: 17px;
  line-height: 1.7;
}

.btn-crimson {
  background-color: #ff6a00;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-crimson:hover {
  background-color: #e65c00;
  color: #fff;
}
.features-section {
  background-color: #2f2f2f;
  padding: 60px 0;
  color: #ffffff;
}

.feature-box {
  padding: 30px 20px;
}



/* ================= EXACT FEATURE STRIP ================= */
.smart{
  font-size:.78rm;
}

.exact-feature-strip {
  background-color: #010104;
  padding: 10px 0;
  color: #ffffff;
}

.feature-col {
  padding: 0;
}

.feature-inner {
  padding: 35px 40px;
  text-align: left;
  color: #ffffff;
}

.feature-icon {
  color: #0192D7;
  font-size: 70px;
  padding-top: 27px;
}

.feature-inner h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color:#fff;
}

.feature-inner p {
  font-size: 14px;
  line-height: 1.65;
  color: #d6d6d6;
  max-width: 420px;
  margin: 0 auto;
}

/* Vertical divider (middle column only) */
.divider {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .divider {
    border: none;
  }

  .feature-inner {
    padding: 30px 20px;
  }
}
/* Navbar text optimization */
.navbar-nav .nav-link {
  font-size: 0.9rem;          /* Default is ~1rem */
  white-space: nowrap;       /* Prevent line breaks */
  padding: 0.5rem 0.75rem;   /* Reduce horizontal padding */
}

/* Large screens only – restore size if needed */
@media (min-width: 1400px) {
  .navbar-nav .nav-link {
    font-size: 1rem;
  }
}
.icon-box .slide-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.icon-box.active .slide-content {
  max-height: 500px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
 background-color: var(--bs-nav-pills-link-active-bgg);
}
#cable{
 padding:30px 0;
 scroll-margin-top: 100px;
}
.nav-link {
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  background: #e5e5e5;
  color: #111;
  border-radius: 6px;
}
.float-right{
 float:right !important;
}
#hero-about {
  min-height: 100vh !important;
  flex-direction: column !important;
}

.object-fit-cover {
  object-fit: cover;
}
.hero-section {
  background: #000;
  min-height: 100vh;
}

.hero-content {
  padding: 33px 60px 0px 60px;
  color: #fff;
  border-radius: 24px;
  /*box-shadow: 0 10px 30px rgba(0,0,0,0.15);*/
}

.hero-image {
  padding: 0;
}

.hero-image img {
  width: 100%;
  height: 73vh;
  object-fit: cover;
}
.border-exact-feature{
 border:1px  solid #49474e;
 border-radius:5px;
}
.border-exact-feature , .border-start, .border-end{
 border:1px  solid #49474e !important;
}
:root {
   --primary: #0b1c2d;
  --accent: #f57c00;
  --dark: #0f1724;
  --light: #f5f7fa;
  --font-body: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  --font-heading: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  /* BRAND */
  --header-bg: #fff;        /* current navbar background #0b1f33 */
  --brand-accent: #fff;    /* CTA button color #f97316*/

  /* TEXT SYSTEM (news-portal standard) */
  --text-heading: #111827;
  --text-body: #374151;
  --text-muted: #6b7280;

  /* LINKS (BOUND TO HEADER BG) */
  --link-color: var(--header-bg) !important;
  --link-hover: color-mix(in srgb, var(--header-bg), #000 15%) !important;
  /* FOOTER */
  --footer-bg: #0b1f33;
  --footer-link: #e5e7eb;        /* light text */
  --footer-link-hover: #ffffff;
  /* CONTACT */
   --crimson-color: crimson;
   --crimson-hover: darkred;
   --btn-text-color: #fff;
   --nav-link-text-color:#000;
   --bs-nav-pills-link-active-bgg:#ccc;
   --bs-navbar-toggler-icon-bg: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAzMCAzMCc+PHBhdGggc3Ryb2tlPSdyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuNTUpJyBzdHJva2UtbGluZWNhcD0ncm91bmQnIHN0cm9rZS1taXRlcmxpbWl0PScxMCcgc3Ryb2tlLXdpZHRoPScyJyBkPSdNNCA3aDIyTTQgMTVoMjJNNCAyM2gyMicvPjwvc3ZnPg==);
} 
