/* Reset and Base Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #111;
  color: #fff;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

/* Header Section */
.top-bar {
  background-color: #000;
  color: white;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 40px;
  width: 40px;
  cursor: pointer;
  background-color: white; /* ✅ Light background */
  border-radius: 30%;       /* Optional: rounded */
  padding: 2px;             /* Some spacing */
}

.title-texts {
  display: flex;
  flex-direction: column;
}

.site-title {
  margin: 0;
  font-size: 18px;
  cursor: pointer;
}

.tagline {
  margin: 0;
  font-size: 12px;
  color: #ccc;
}

/* Desktop Nav */
.nav-links {
  display: flex;
  gap: 16px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.nav-links a:hover {
  background: #ffc107;
  color: black;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: transparent;
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
}

/* Mobile Nav Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 250px;
  background: #000;
  transition: right 0.3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.nav-overlay a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #333;
  font-size: 18px;
}

.nav-overlay.open {
  right: 0;
}

.nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Banner Section */
.main-banner {
  padding: 40px 20px;
  text-align: center;
  background: #222;
}

.main-banner h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.main-banner p {
  font-size: 16px;
  color: #ccc;
}

/* Main Content */
main {
  padding: 20px;
}

section {
  margin-bottom: 30px;
}

/* Footer */
footer {
  background: #000;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #888;
}

/* Social Icons - Desktop Only */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* Desktop Only */
.desktop-only {
  display: flex;
}

/* Hide on Small Screens */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .main-banner h1 {
    font-size: 24px;
  }

  .main-banner p {
    font-size: 14px;
  }

  .logo-title-wrapper {
    flex-wrap: wrap;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


.logo-title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 40px;
  height: auto;
  cursor: pointer;
  margin-bottom: 20px;
}

.title-texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
}

.site-title {
  font-size: 24px;
  color: white;
  margin: 0;
  cursor: pointer;
}

.tagline {
  font-size: 14px;
  color: white;
  margin: 0;
  background-position: 0%;
  background-size: 200% 100%;

}

/* Navigation */
.nav-right-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

/* Mobile Toggle Button */
/* Mobile Toggle Button (☰) */
.nav-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  z-index: 1200;
  position: absolute;
  top: 15px;
  right: 20px;
}
.nav-close:hover {
  color: #007BFF;
}
/* Show ☰ on mobile */
body.nav-open .nav-toggle {
  display: block;
}
/* Hide ☰ when nav is open */
body.nav-open .nav-toggle {
  display: none;
}
/* Close Button (✖) */
.nav-close {
  font-size: 28px;
  background: none;
  border: none;
  outline: none;
  box-shadow: none; 
  cursor: pointer;
  color: #1a2a6c;
  z-index: 1200;
  position: absolute;
  top: 18px;
  right: 18px;
}

/* Hide ☰ when nav is open */
body.nav-open .nav-toggle {
  display: none;
}

/* Mobile Nav Panel */
.nav-overlay {
  position: fixed;
  top: 0;
  right: -300px;
  width: 250px;
  height: 100vh;
  background: radial-gradient(circle at top left, #020617, #020617 55%, #000 100%);
  box-shadow: -4px 0 18px rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  transition: right 0.4s ease-in-out;
  z-index: 1100;
}

.nav-overlay.active {
  right: 0;
  transition: right 0.4s ease-in-out;
}

/* Nav link fade-in effect */
.nav-overlay a {
  padding: 14px;
  margin: 10px 16px;
  text-align: center;
  text-decoration: none;
  color: #e5f1ff;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.7);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  box-shadow: 0 0 12px rgba(15, 23, 42, 0.9);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.nav-overlay a:hover {
  background: linear-gradient(120deg, #22c55e, #38bdf8, #6366f1);
  color: #020617;
  border-color: rgba(56, 189, 248, 1);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.9);
}

.nav-overlay.active a {
  opacity: 1;
  transform: translateX(0);
}

/* Delay each link */
.nav-overlay.active a:nth-child(2) { transition-delay: 0.1s; }
.nav-overlay.active a:nth-child(3) { transition-delay: 0.2s; }
.nav-overlay.active a:nth-child(4) { transition-delay: 0.3s; }
.nav-overlay.active a:nth-child(5) { transition-delay: 0.4s; }

/* Responsive Rules */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

@media (min-width: 769px) {
  .nav-overlay {
    display: none !important;
  }

  .nav-toggle {
    display: none;
  }
}

.nav-blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9;
  display: none; /* hidden by default */
}
body.nav-open .nav-blur-overlay {
  display: block; /* show when nav is open */
  opacity: 0;
  pointer-events: none; /* prevent interaction */
  transition: opacity 0.3s ease;
}


body.nav-open .nav-blur-overlay {
  opacity: 1;
  pointer-events: all;
}

/* Main Content */
main section {
  padding: 30px;
  max-width: 800px;
  margin: auto;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #1a2a6c;
  color: white;
  font-size: 14px;
}
main {
  padding-top: 80px; /* depends on height of top-bar */
}
/* Footer Links */
footer a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  transition: background 0.3s;
}

footer a:hover {
  background: rgba(255, 255, 255, 0.2);
}
/* Footer Social Icons */
footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
}

footer .social-icons a {
  color: white;
  font-size: 18px;
  transition: color 0.3s;
}

footer .social-icons a:hover {
  color: #ffd700;
}
/* Utility Classes */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
/* Utility Classes for Spacing */
.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 5px;
}
.mt-2 {
  margin-top: 10px;
}
.mt-3 {
  margin-top: 15px;
}
.mt-4 {
  margin-top: 20px;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 5px;
}
.mb-2 {
  margin-bottom: 10px;
}
.mb-3 {
  margin-bottom: 15px;
}
.mb-4 {
  margin-bottom: 20px;
}
/* Utility Classes for Padding */
.p-0 {
  padding: 0;
}
.p-1 {
  padding: 5px;
}
.p-2 {
  padding: 10px;
}
.p-3 {
  padding: 15px;
}
.p-4 {
  padding: 20px;
}
/* Utility Classes for Flexbox */
.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.align-items-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}
.flex-wrap {
  flex-wrap: wrap;
}
/* Utility Classes for Visibility */
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-inline {
  display: inline;
}
.d-inline-block {
  display: inline-block;
}
/* Utility Classes for Borders */
.border {
  border: 1px solid #ccc;
}
.border-top {
  border-top: 1px solid #ccc;
}
.border-right {
  border-right: 1px solid #ccc;
}
.border-bottom {
  border-bottom: 1px solid #ccc;
}
.border-left {
  border-left: 1px solid #ccc;
}
/* Utility Classes for Backgrounds */
.bg-primary {
  background-color: #007bff;
}
.bg-secondary {
  background-color: #6c757d;
}
.bg-success {
  background-color: #28a745;
}
.bg-danger {
  background-color: #dc3545;
}
.bg-warning {
  background-color: #ffc107;
}
.bg-info {
  background-color: #17a2b8;
}
.bg-light {
  background-color: #f8f9fa;
}
.bg-dark {
  background-color: #343a40;
}
/* Utility Classes for Text Colors */
.text-primary {
  color: #007bff;
}
.text-secondary {
  color: #6c757d;
}
.text-success {
  color: #28a745;
}
.text-danger {
  color: #dc3545;
}
.text-warning {
  color: #ffc107;
}
.text-info {
  color: #17a2b8;
}
.text-light {
  color: #f8f9fa;
}
.text-dark {
  color: #343a40;
}
/* Utility Classes for Font Sizes */
.text-xs {
  font-size: 12px;
}
.text-sm {
  font-size: 14px;
}
.text-md {
  font-size: 16px;
}
.text-lg {
  font-size: 18px;
}
.text-xl {
  font-size: 24px;
}
/* Utility Classes for Font Weights */
.font-weight-light {
  font-weight: 300;
}
.font-weight-normal {
  font-weight: 400;
}
.font-weight-bold {
  font-weight: 700;
}
/* Utility Classes for Shadows */
.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.shadow-xl {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}
/* Utility Classes for Transitions */
.transition {
  transition: all 0.3s ease;
}
/* Utility Classes for Transforms */
.transform {
  transform: translate(0, 0);
}
/* Utility Classes for Opacity */
.opacity-0 {
  opacity: 0;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-100 {
  opacity: 1;
}
/* Utility Classes for Z-Index */
.z-index-0 {
  z-index: 0;
}
.z-index-1 {
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}
.z-index-3 {
  z-index: 3;
}
.z-index-4 {
  z-index: 4;
}
.z-index-5 {
  z-index: 5;
}
/* Utility Classes for Positioning */
.position-static {
  position: static;
}
.position-relative 
{
  position: relative;
}
.position-absolute {
  position: absolute;
}
.position-fixed {
  position: fixed;
}
.position-sticky {
  position: sticky;
  top: 0;
}
/* Utility Classes for Overflow */
.overflow-hidden {
  overflow: hidden;
}
.overflow-auto {
  overflow: auto;
}
.overflow-scroll {
  overflow: scroll;
}

/* About page container and sections */
.container {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

.small-banner {
  padding: 60px 20px;
  background: #222;
  color: white;
}

.founder {
  text-align: center;
  margin-bottom: 40px;
}

.founder .profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.founder h2 {
  margin: 0;
  font-size: 24px;
}

.founder h3 {
  margin: 5px 0 15px;
  font-size: 16px;
  color: #777;
}

/* Smaller list styles */
.container ul {
  list-style: none;
  padding-left: 0;
}

.container ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .small-banner h1 {
    font-size: 24px;
  }
  .founder .profile-pic {
    width: 100px;
    height: 100px;
  }
  .founder h2 {
    font-size: 20px;
  }
}
/* Contact Form Glow Animation */
.form-glow-wrap {
  position: relative;
  padding: 2rem;
  margin-top: 2rem;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  z-index: 0;
}
.form-glow-wrap::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, cyan, magenta, lime, yellow, cyan);
  background-size: 400%;
  border-radius: 14px;
  z-index: -1;
  animation: glowanim 8s linear infinite;
}
@keyframes glowanim {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.form-glow-wrap input,
.form-glow-wrap textarea {
  width: 100%;
  padding: .8rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: #222;
  color: #fff;
}
.form-glow-wrap input::placeholder,
.form-glow-wrap textarea::placeholder {
  color: #aaa;
}
.form-glow-wrap button {
  background: cyan;
  color: #000;
  padding: .8rem 2rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .3s;
}
.form-glow-wrap button:hover {
  background: #0ebebe;
}
.core-values-section {
  padding: 40px 20px;
  background: #110b0b;
  text-align: center;
}

.core-values-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.table-wrapper {
  overflow-x: auto;
  max-width: 1000px;
  margin: auto;
}

.core-values-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Poppins', sans-serif;
  background-color: #2a1b1b;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.core-values-table thead {
  background-color: #222;
  color: #ffffff;
}

.core-values-table th, 
.core-values-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.core-values-table tr:hover {
  background-color: #0f73cb;
  transition: 0.3s ease;
  box-shadow: inset 0 0 0 9999px rgba(0, 123, 255, 0.05);
}

.core-values-table td:first-child {
  font-size: 1.5rem;
}

@media (max-width: 600px) {
  .core-values-table th, 
  .core-values-table td {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
}
/* Service Grid and Cards */
.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.07);
  padding: 1.5rem;
  border-left: 5px solid #1f6feb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(31, 111, 235, 0.2);
}

.service-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
}

.service-card p {
  font-size: 0.95rem;
  color: #374151;
  margin: 0.5rem 0 0 0;
}

/* Download Button */
.download-pdf {
  text-align: center;
  margin-top: 2rem;
}

.download-pdf a {
  background-color: #1f6feb;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.download-pdf a:hover {
  background-color: #174ea6;
}
/* nav link hover is overridden later by cyber-theme styles */
/* === Pricing Table Styles === */
.pricing-section {
  padding: 40px 20px;
  background: linear-gradient(to bottom right, #7b7b87, #e8ebf0);
  border-radius: 10px;
}

.pricing-section h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  border-left: 5px solid #0c2fcc;
  padding-left: 15px;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 5px solid #03792f;
  background-color: #000000;
}

.pricing-table th {
  background-color: #3f3d41;
  color: #fff;
  font-weight: 600;
}

.pricing-table tr:hover td {
  background-color: #8d919a;
  transition: background-color 0.3s ease;
}

/* Responsive Table */
@media screen and (max-width: 768px) {
  .pricing-table th, .pricing-table td {
    padding: 10px;
    font-size: 0.9rem;
  }

  .pricing-section h2 {
    font-size: 1.5rem;
  }
}

/* Pricing box container for each category */
.pricing-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
}

.pricing-box {
  background: linear-gradient(to bottom right, #7b7b87, #e8ebf0);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(91,120,255,0.15);
}
/* Portfolio Grid Layout */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 40px auto;
}

.portfolio-card {
  background: #fff;
  border-left: 6px solid #1f6feb;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(31, 111, 235, 0.1);
}

.portfolio-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1f2937;
}

.portfolio-card p {
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 1rem;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  background: #1f6feb;
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* Responsive Banner Heading */
@media screen and (max-width: 768px) {
  .main-banner h1 {
    font-size: 24px;
  }

  .portfolio-grid {
    gap: 1.5rem;
  }
  
}
/* Get Started CTA Section */
.cta-section {
  padding: 60px 20px;
  background: #111;
  color: white;
}

.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #ccc;
}

/* CTA Button Styling */
.cta-button {
  background: transparent;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 600;
  border: 2px solid white;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover same as nav */
.cta-button:hover {
  background: #ffc107;
  color: black;
  border-color: #ffc107;
}

/* AI SOC landing section */
.ai-soc {
  padding: 70px 20px 80px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.ai-soc-header {
  margin-bottom: 32px;
}

.ai-soc-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: #9ca3af;
  margin: 0 0 6px;
}

.ai-soc-title {
  font-size: 2.1rem;
  margin: 0 0 10px;
}

.ai-soc-subtitle {
  max-width: 720px;
  margin: 0 auto 18px;
  color: #cbd5f5;
}

.ai-soc-cta {
  display: inline-block;
  margin-top: 6px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.9);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  color: #e5f1ff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 16px rgba(15, 23, 42, 0.9);
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ai-soc-cta:hover {
  background: linear-gradient(120deg, #22c55e, #38bdf8, #6366f1);
  color: #020617;
  border-color: rgba(56, 189, 248, 1);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.9);
}

.ai-soc-cta.secondary {
  margin-top: 14px;
  opacity: 0.9;
}

.ai-soc-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
}

.ai-metric {
  min-width: 130px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  text-align: center;
  box-shadow: 0 0 14px rgba(15, 23, 42, 0.9);
}

.ai-metric-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #22c55e;
}

.ai-metric-label {
  font-size: 0.85rem;
  color: #9ca3af;
}

.ai-soc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.ai-soc-block {
  padding: 20px 18px;
  border-radius: 16px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  background: radial-gradient(circle at top left, #020617, #020617 60%, #000 100%);
  box-shadow: 0 0 20px rgba(15, 23, 42, 0.9);
}

.ai-soc-block h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.ai-soc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-soc-list li {
  margin-bottom: 12px;
}

.ai-soc-list h4 {
  margin: 0 0 4px;
  font-size: 0.98rem;
}

.ai-soc-products {
  margin-bottom: 40px;
}

.ai-soc-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.ai-product-card {
  padding: 18px 18px 20px;
  border-radius: 16px;
  border-left: 3px solid #38bdf8;
  background: radial-gradient(circle at top left, #020617, #020617 60%, #000 100%);
  box-shadow: 0 0 18px rgba(15, 23, 42, 0.9);
}

.ai-soc-pricing {
  margin-bottom: 40px;
}

.ai-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.ai-pricing-card {
  padding: 24px 22px 26px;
  border-radius: 18px;
  border: 1px solid rgba(56, 189, 248, 0.6);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  box-shadow: 0 0 26px rgba(15, 23, 42, 0.9);
}

.ai-pricing-card.featured {
  border-color: rgba(34, 197, 94, 0.9);
  box-shadow: 0 0 32px rgba(34, 197, 94, 0.8);
}

.ai-pricing-card h4 {
  margin-top: 0;
}

.ai-price {
  font-size: 2rem;
  margin: 8px 0 2px;
  font-weight: 700;
}

.ai-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #9ca3af;
}

.ai-price-sub {
  color: #cbd5f5;
  margin-bottom: 12px;
}

.ai-pricing-card ul {
  padding-left: 18px;
  margin: 0 0 10px;
}

.ai-pricing-card li {
  margin-bottom: 4px;
}

.ai-soc-contact {
  margin-bottom: 28px;
}

.ai-contact-form {
  max-width: 520px;
  margin: 14px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-contact-form input,
.ai-contact-form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(75, 85, 99, 1);
  background: #020617;
  color: #e5f1ff;
}

.ai-contact-form input::placeholder,
.ai-contact-form textarea::placeholder {
  color: #6b7280;
}

.ai-soc-footer {
  font-size: 0.85rem;
  color: #9ca3af;
}

.ai-soc-status span {
  color: #22c55e;
}

@media (max-width: 768px) {
  .pricing-box {
    overflow-x: visible;
  }

  .pricing-table {
    width: 100%;
    min-width: 0;
  }

  .pricing-table th,
  .pricing-table td {
    word-break: break-word;
    white-space: normal;
  }
}
/* Wrapper enables scroll on small screens */
.table-wrapper {
  overflow-x: auto;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

/* AI SOC popup modal */
.ai-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1300;
  justify-content: center;
  align-items: center;
}

.ai-modal.active {
  display: flex;
}

.ai-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.ai-modal-content {
  position: relative;
  margin: 20px;
  max-width: 520px;
  width: 100%;
  background: radial-gradient(circle at top left, #020617, #020617 60%, #000 100%);
  border-radius: 18px;
  padding: 22px 24px 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.6);
  border: 1px solid rgba(56, 189, 248, 0.7);
  transform: scale(0.94);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.ai-modal.active .ai-modal-content {
  transform: scale(1);
  opacity: 1;
}

.ai-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 24px;
  cursor: pointer;
}

.ai-modal-sub {
  margin-top: 4px;
  margin-bottom: 10px;
  color: #cbd5f5;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .ai-modal-content {
    max-width: 92%;
    padding: 18px 18px 20px;
  }
}


/* ==== CrowdSrp Gradient Privacy Tables ==== */
.table-section {
  margin-bottom: 3rem;
  background-origin: padding-box;
  background-position: 0%;
}

.table-section h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #1A2B4C;
  background: linear-gradient(to right, #39393a, #4466A3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Wrapper */
.table-wrapper {
  overflow-x: auto;
  background: linear-gradient(to bottom right, #7b7b87, #e8ebf0);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(41, 78, 130, 0.08);
}

/* Table Structure */
.policy-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(to bottom right, #19191a, #2b2b2c); 
  font-family: 'Poppins', sans-serif;
}

/* Table Cells */
.policy-table th,
.policy-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.95rem;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to bottom right, #19191a, #454546);;
  border-bottom: 1px solid #ccc;
}

/* Header Style */
.policy-table th {
  background-color: #294E82;
  color: #ffffff;
  font-weight: 600;
}

/* Rounded Corners — Header + Footer */
.policy-table th:first-child {
  border-top-left-radius: 10px;
}
.policy-table th:last-child {
  border-top-right-radius: 10px;
}
.policy-table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.policy-table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

/* Row Alternation + Hover */
.policy-table tr:nth-child(even) td {
  background-color: rgba(248, 250, 253, 0.7);
}

.policy-table tr:hover td {
  background-color: rgba(233, 238, 245, 0.9);
  transition: background-color 0.3s ease;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .table-section h3 {
    font-size: 1.2rem;
  }

  .policy-table th,
  .policy-table td {
    font-size: 0.85rem;
    padding: 0.5rem;
  }

  .table-wrapper {
    padding: 0.5rem;
  }
}

/* Hover Styling for Table Rows */
.policy-table tbody tr:hover td {
  background-color: rgba(123, 123, 135, 0.15); /* Soft overlay on hover */
  color: #6398b5; /* CrowdSrp highlight blue */
  transition: background-color 0.5s ease, color 0.5s ease;
}


/* Desktop login dropdown */
.login-dropdown {
  position: relative;
  display: inline-block;
}

.login-dropdown .login-btn {
  background: radial-gradient(circle at top left, #0f172a, #0b1120);
  color: #e5f1ff;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  border: 1px solid rgba(56, 189, 248, 0.7);
  box-shadow: 0 0 12px rgba(15, 23, 42, 0.9);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.login-dropdown .login-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #22c55e, #38bdf8, #6366f1);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.22s ease;
}

.login-dropdown .login-btn span {
  position: relative;
  z-index: 1;
}

.login-dropdown .login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.7);
  border-color: rgba(56, 189, 248, 1);
}

.login-dropdown .login-btn:hover::after {
  opacity: 0.55;
}

.login-dropdown .dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #020617;
  min-width: 200px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
  border-radius: 10px;
  overflow: hidden;
  z-index: 1000;
  border: 1px solid rgba(56, 189, 248, 0.7);
}

.login-dropdown .dropdown-content a {
  color: #e5f1ff;
  padding: 10px 18px;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  transition: background 0.22s ease, color 0.22s ease;
}

.login-dropdown .dropdown-content a:hover {
  background: radial-gradient(circle at left, rgba(56, 189, 248, 0.2), rgba(15, 23, 42, 0.98));
  color: #22c55e;
}

/* Show dropdown on hover */
.login-dropdown:hover .dropdown-content {
  display: block;
}

/* Responsive visibility */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }
}

/* Mobile login options in hamburger menu */
.login-options {
  margin: 18px 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-options .btn {
  display: block;
  text-align: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(56, 189, 248, 0.7);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  color: #e5f1ff;
  box-shadow: 0 0 12px rgba(15, 23, 42, 0.9);
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.login-options .btn:hover {
  background: linear-gradient(120deg, #22c55e, #38bdf8, #6366f1);
  color: #020617;
  border-color: rgba(56, 189, 248, 1);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.9);
}

/* ---------- Portfolio Slider ---------- */
.portfolio-slider-section {
  margin: 60px auto;
  padding: 10px 20px;
  max-width: 1200px;
}

.slider-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 18px;
  font-weight: 600;
}

.portfolio-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.portfolio-item {
  flex: 0 0 280px;
  background: #444444;
  border-radius: 12px;
  box-shadow: rgba(0,0,0,0.08) 0 6px 18px;
  padding: 12px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  color: inherit;
}
.portfolio-item:hover { transform: translateY(-6px); box-shadow: rgba(0,0,0,0.12) 0 12px 30px; }
.portfolio-item img { width: 100%; height: 160px; object-fit: cover; border-radius: 8px; display:block; margin-bottom:10px; }
.portfolio-item h3 { margin: 0; font-size: 16px; }

/* scrollbar styling */
.portfolio-slider::-webkit-scrollbar { height: 8px; }
.portfolio-slider::-webkit-scrollbar-thumb { background: #bdbdbd; border-radius: 4px; }

/* ---------- Modal / Single View ---------- */
.modal {
  display: none; /* toggled via JS */
  position: fixed;
  inset: 0;
  z-index: 1200;
  justify-content: center;
  align-items: center;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: opacity .25s ease;
}

/* modal content centered box */
.modal-content {
  position: relative;
  margin: 20px;
  width: 95%;
  max-width: 760px;
  background: #6c6b6b;
  border-radius: 14px;
  padding: 22px 46px;
  box-shadow: rgba(0,0,0,0.25) 0 18px 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: visible;
}

/* body area within modal */
.modal-body {
  flex: 1 1 auto;
  text-align: center;
}
.modal-img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform .36s ease, opacity .28s ease;
  display: block;
  margin-bottom: 14px;
}
#modalTitle { margin: 6px 0 8px; font-size: 20px; }
#modalDescription { margin: 0 0 12px; color: #444; line-height: 1.45; }

/* Visit button */
.visit-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  background: #0a84ff;
  color: #050505;
  text-decoration: none;
  font-weight: 600;
  transition: transform .18s ease, background .18s ease;
}
.visit-btn:hover { transform: translateY(-3px); background: #006fd6; }

/* close and nav buttons */
.modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #222;
  cursor: pointer;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0,0,0,0.55);
  color: rgb(1, 1, 1);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.left-btn { left: 8px; }
.right-btn { right: 8px; }
.nav-btn:hover { background: rgba(0,0,0,0.8); }

/* small screens: stack nicely */
@media (max-width: 720px) {
  .modal-content { padding: 16px; flex-direction: column; width: 92%; max-width: 420px; }
  .left-btn { left: 6px; top: 6px; transform: none; }
  .right-btn { right: 6px; top: 6px; transform: none; }
  .modal-close { top: 6px; right: 6px; }
  .modal-img { max-height: 320px; }
  .nav-btn { width: 40px; height: 40px; font-size: 20px; }
}

/* === Cyber Security Theme Overrides === */
body {
  background:
    radial-gradient(circle at top, #040712 0, #02030a 40%, #000 100%);
  color: #e5f1ff;
}

.top-bar {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.35);
  border-bottom: 1px solid rgba(56, 189, 248, 0.35);
}

.main-banner,
.small-banner,
.cta-section,
.pricing-section,
.core-values-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, #020617, #020617 10%, #020617 30%, #020617 60%);
}

.main-banner::before,
.small-banner::before,
.cta-section::before,
.pricing-section::before,
.core-values-section::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    conic-gradient(from 180deg at 50% 50%,
      rgba(56, 189, 248, 0.12),
      transparent,
      rgba(59, 130, 246, 0.16),
      transparent,
      rgba(34, 197, 94, 0.14),
      transparent);
  mix-blend-mode: screen;
  opacity: 0.8;
  animation: cyberSweep 26s linear infinite;
  pointer-events: none;
}

@keyframes cyberSweep {
  0% { transform: translate3d(-10%, -10%, 0) rotate(0deg); }
  50% { transform: translate3d(5%, 5%, 0) rotate(120deg); }
  100% { transform: translate3d(-10%, -10%, 0) rotate(360deg); }
}

.nav-links a {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #22c55e, #38bdf8, #6366f1);
  transform: translateX(-120%);
  transition: transform 0.35s ease;
  opacity: 0.9;
  z-index: -1;
}

.nav-links a:hover {
  color: #e5f1ff;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.nav-links a:hover::after {
  transform: translateX(0);
}

.service-card,
.portfolio-card,
.pricing-box {
  background: radial-gradient(circle at top left, #020617, #020617 10%, #020617 30%, #020617 60%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.45);
  position: relative;
  overflow: hidden;
}

.service-card::before,
.portfolio-card::before,
.pricing-box::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(59, 130, 246, 0.6), transparent, rgba(16, 185, 129, 0.6));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.service-card:hover::before,
.portfolio-card:hover::before,
.pricing-box:hover::before {
  opacity: 0.7;
}

.service-card h3,
.portfolio-card h3 {
  color: #e5f1ff;
}

.tag {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.8);
}

footer {
  background: radial-gradient(circle at top, #020617, #020617 50%, #000 100%);
  border-top: 1px solid rgba(56, 189, 248, 0.35);
}

/* Pricing: selectable rows and total section */
.pricing-table tr.selected td {
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.2), rgba(15, 23, 42, 0.95));
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.8);
}

.pricing-total-section {
  max-width: 840px;
  margin: 32px auto 56px;
  padding: 24px 20px;
  text-align: center;
  border-radius: 16px;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.12), rgba(15, 23, 42, 0.95));
  box-shadow: 0 0 32px rgba(37, 99, 235, 0.55);
}

#selectedTotal {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 10px 0 4px;
  color: #22c55e;
}

.pricing-total-section .total-note {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca3af;
}
