/* ==========================================
   CYBEROCO SERVICES PAGE STYLES
   ========================================== */

/* Use same font & color variables as main site */
:root {
  --accent-blue: #00bfff;
  --light-bg: rgba(255, 255, 255, 0.05);
  --hover-bg: rgba(255, 255, 255, 0.1);
  --text-light: #fff;
  --text-grey: #ddd;
}

/* Section backgrounds and spacing */
section {
  padding: 60px 0;
}

/* Service Boxes */
.service-box {
  background: var(--light-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 45px 25px;
  margin-bottom: 35px;
  color: var(--text-light);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.service-box:hover {
  transform: translateY(-8px);
  background: var(--hover-bg);
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3);
  border-color: rgba(0, 191, 255, 0.4);
}

.service-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-box i {
  color: var(--accent-blue);
  margin-bottom: 15px;
}

.service-box h4 {
  font-weight: 600;
  margin-top: 10px;
  color: var(--text-light);
}

.service-box p {
  font-size: 15px;
  color: var(--text-grey);
}

/* Buttons */
.btn-color {
  background: var(--accent-blue);
  color: #fff;
  border-radius: 25px;
  transition: 0.3s;
}

.btn-color:hover {
  background: #0099cc;
}

.btn-border-dark {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  border-radius: 25px;
  transition: 0.3s;
}

.btn-border-dark:hover {
  background: #fff;
  color: #000;
}

/* Fade-up animation for boxes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   Responsive Navbar Fix
   =============================== */
.navbar-button {
  display: block !important;
  position: relative;
  z-index: 2000;
}

.navbar-links {
  display: none;
}

@media (max-width: 991px) {
  .navbar-links {
    display: none !important; /* hidden until menu opens */
  }

  .show-info.active + .navbar-links {
    display: block !important;
  }

  .navbar-wrapper {
    position: relative;
  }

  .navbar-button span {
    background: #fff;
  }
}

/* ==========================================
   Text Color Fix — Make Headings & Paragraphs Pure White
   ========================================== */

/* Section titles (like “Our Services”) */
section h2,
section h3,
section h4 {
  color: #fff !important;
}

/* Paragraphs, small text, and descriptions */
section p,
section span,
section li {
  color: #fff !important;
}

/* Optional: brighten icons slightly for balance */
.service-box i {
  color: #00bfff;
  filter: drop-shadow(0 0 5px rgba(0, 191, 255, 0.5));
}
/* ==========================================
   Hero Section (Page Title & Description)
   ========================================== */

.hero-section {
  background: url('images/page-image-2.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 0 80px;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* dark overlay for contrast */
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-section p {
  color: #fff;
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.95;
}
/* ==========================================
   Global Minimalist Navbar — Cyberoco Theme
   ========================================== */

.navbar {
  background: rgba(0, 0, 0, 0.92) !important;
  padding: 12px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff !important;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: #ddd !important;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 18px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.navbar-nav .nav-link:hover {
  color: #00bfff !important;
  transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
  color: #00bfff !important;
  font-weight: 600;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,0.85%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Navbar shadow when scrolled */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.98) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

