:root {
    --bg: #0b0c0d;
    --card: #0f1112;
    --muted: #9aa0a6;
    --accent: #ff6a00;
    /* matches orange logo */
    --accent-dark: #e05500;
}

html,
body {
    height: 100%;
    background: var(--bg);
    color: #e6eef1;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--accent);
}
#bugLogos{
    width: min(1000px, 100%);
    max-width: 100%;
}

#bugLogos img {
    max-width: 100%;
    height: auto;
}

.navbar {
    background: transparent;
}

.custom-navbar {
    background: rgba(11, 12, 13, 0.88);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-navbar .nav-link {
    color: #e6eef1;
    padding: 8px 16px;
    position: relative;
    transition: color 0.3s ease;
}

.custom-navbar .nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}
.custom-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 6px;
    background: var(--accent);
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}
.custom-navbar .nav-link:hover {
    color: var(--accent);
}
.custom-navbar .nav-link:hover::after {
    width: 100%;
    opacity: 1;
}

/* Accent Button */
.btn-accent {
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(93, 43, 8, 0.65);
}

.mega-dropdown {
    min-width: 80rem;
    background-color: var(--card);
    border-radius: 8px;
    left: 4% !important;
    transform: translateX(-50%) !important;
    display: none;
}

/* Show on hover (desktop) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .mega-dropdown {
        display: block;
    }
}

/* Show on click (Bootstrap toggle) */
.nav-item.dropdown .mega-dropdown.show {
    display: block !important;
}

/* Tablet adjustments */
@media (max-width: 991px) {
    .mega-dropdown {
        min-width: 100%;
        padding: 10px;
        position: static !important;
        transform: none !important;
        border-radius: 0;
    }
    .mega-dropdown .row {
        flex-direction: column;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .mega-dropdown {
        max-height: 60vh;
        overflow-y: auto;
    }
    .mega-dropdown h6 {
        margin-top: 15px;
        border-bottom: 1px solid var(--accent);
        padding-bottom: 4px;
    }
    .mega-dropdown .dropdown-item {
        padding: 8px 10px;
        font-size: 0.95rem;
    }
    .mega-dropdown::-webkit-scrollbar {
        width: 6px;
    }
    .mega-dropdown::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 4px;
    }
}

/* Single column for small screens */
@media (max-width: 768px) {
    .mega-dropdown .row {
        flex-direction: column !important;
    }
    .mega-dropdown .col-12 {
        max-width: 100% !important;
        flex: 0 0 100%;
    }
}

.product-dropdown {
    background-color: var(--card);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Show on hover (desktop) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .product-dropdown {
        display: block;
    }
}

/* Show on click (Bootstrap toggle) */
.nav-item.dropdown .product-dropdown.show {
    display: block !important;
}

/* Tablet adjustments */
@media (max-width: 991px) {
    .product-dropdown {
        min-width: 100%;
        padding: 10px;
        position: static !important;
        transform: none !important;
    }
    .product-dropdown .row {
        flex-direction: column;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .product-dropdown {
        max-height: 60vh;
        overflow-y: auto;
        width: 100% !important;
        position: static !important;
        border-radius: 0;
    }
    .product-dropdown h6 {
        margin-top: 15px;
        border-bottom: 1px solid var(--accent);
        padding-bottom: 4px;
    }
    .product-dropdown .dropdown-item {
        padding: 8px 10px;
        font-size: 0.95rem;
    }
    .product-dropdown::-webkit-scrollbar {
        width: 6px;
    }
    .product-dropdown::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 4px;
    }
}

/* Single column layout for smaller screens */
@media (max-width: 768px) {
    .product-dropdown .row {
        flex-direction: column !important;
    }
    .product-dropdown .col-12 {
        max-width: 100% !important;
        flex: 0 0 100%;
    }
}



.logo-img {
    height: 44px;
    width: auto;
}

.text-muted {
    color: rgb(178, 176, 174) !important;
}

.contact-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
}

.text-accent {
    color: var(--accent);
}

.form-control-dark {
    background-color: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 0.95rem;
}

.form-control-dark:focus {
    background-color: var(--card);
    border-color: var(--accent);
    outline: none;
    box-shadow: none;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Hero */
.hero {
    padding: 130px 0 0;
    background: linear-gradient(180deg, rgba(255, 106, 0, 0.232), transparent 40%);
}

.hero-title {
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 1.02;
}

.hero-title .accent {
    color: var(--accent);
}

.hero-sub {
    color: var(--muted);
    margin-top: 14px;
    max-width: 720px;
}

/* Mobile adjustment: push hero down so it clears fixed navbar */
@media (max-width: 991px) {
    .hero {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        margin-top: 2rem; 
    }
}

.btn-accent {
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    border: 0;
    color: #fff;
}

.btn-outline-accent {
    border-color: rgba(255, 106, 0, 0.15);
    color: var(--accent);
}

/* cards */
.service-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.00));
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 22px;
    border-radius: 12px;
}

.stat-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.00));
    padding: 22px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

/* projects */
.project-card {
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.project-card .card-body {
    padding: 18px;
}

/* internship */
.internship {
    border: 1px solid rgba(255, 106, 0, 0.18);
    padding: 34px;
    border-radius: 12px;
}

/* about */
.about-img {
    /* border-radius: 10px; */
    width: 100%;
    max-width: 100%; 
    margin: 0 auto;
    margin-top: 5rem;
    margin-bottom: 5rem;
}


/* Tablet adjustments */
@media (max-width: 992px) {
    .about-img {
        margin-left: 2rem;
        max-width: 25rem;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .about-img {
        margin-left: 0;
        max-width: 100%;
        display: block;
        margin-right: auto;
        margin-left: auto;
        /* center image */
    }
}


/* contact */
.contact-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
}

.service-btn {
    border: 1px solid var(--accent);
    color: var(--accent);
    transition: all 0.3s ease;
}

.service-btn:hover {
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 15px var(--accent);
    transform: translateY(-2px);
}

/* responsive tweaks */
@media (max-width:768px) {
    .hero {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 1.8rem;
    }
}

.shield-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    /* Keeps whole image visible */
    display: block;
}

.logo-img {
    height: 44px;
    width: auto;
}

/* Contact Form Styling */
#businessEmailForm input[type="email"] {
    background-color: var(--card);
    border: 1px solid var(--muted);
    color: #fff;
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#businessEmailForm input[type="email"]::placeholder {
    color: var(--muted);
    opacity: 0.8;
}

#businessEmailForm input[type="email"]:focus {
    border-color: var(--accent);
    box-shadow: 0 0 6px var(--accent);
    outline: none;
}

/* Button styling */
#businessEmailForm button {
    background-color: var(--accent);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#businessEmailForm button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Section Styling */
.reported-bugs {
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.bug-logos-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.bug-logos {
  display: inline-flex;
  align-items: center;
  animation: scrollLeft 25s linear infinite;
}

.bug-logos img {
  height: 50px;
  width: auto;
  margin: 0 40px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.9);
  transition: filter 0.3s ease;
}

.bug-logos img:hover {
  filter: grayscale(0%) brightness(1);
}

/* Keyframes for scrolling */
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause on hover */
.bug-logos-wrapper:hover .bug-logos {
  animation-play-state: paused;
}

svg text {
  fill: #fff; /* or any color matching your background */
}

/* Footer Base */
.footer {
  background: var(--bg);
  padding: 60px 0 20px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Logo */
.footer-logo {
  height: 42px;
}

/* Headings */
.footer-heading {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Contact */
.footer-contact li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-contact a,
.footer-contact span {
  color: var(--muted);
  text-decoration: none;
}

/* Social Icons */
.footer-social a {
  color: var(--muted);
  margin-right: 12px;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--accent);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 0.85rem;
}

footer a:hover {
    color: #fff !important;
}


/* AboutPage */
/* Hero base */
.about-hero {
  position: relative;
  margin-top: 80px; /* below navbar */
  min-height: 360px;
  background: var(--bg);
  overflow: hidden;
}

/* Layer helper */
.about-hero .hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Subtle circle glow */
.about-hero .hero-circle {
  background: radial-gradient(circle at center,
              rgba(255, 106, 0, 0.15) 0%,
              rgba(224, 85, 0, 0.08) 35%,
              rgba(11, 12, 13, 0.95) 70%);
}

/* Cyber lines effect */
.about-hero .hero-lines {
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 106, 0, 0.15) 0px,
      rgba(255, 106, 0, 0.15) 1px,
      transparent 2px,
      transparent 40px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 106, 0, 0.15) 0px,
      rgba(255, 106, 0, 0.15) 1px,
      transparent 2px,
      transparent 40px
    );
  animation: moveLines 30s linear infinite;
  opacity: 0.3;
  mix-blend-mode: overlay;
}

/* Line animation */
@keyframes moveLines {
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: 600px 0, 0 600px; }
}

/* Larger hero on desktops */
@media (min-width: 992px) {
  .about-hero { min-height: 420px; }
}


.badge-logo {
    max-height: 120px;       /* keeps all logos balanced */
    object-fit: contain;    /* respects original shape */
    transition: transform 0.3s ease, filter 0.3s ease;
}
.badge-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 6px var(--accent));
}

/* Our Solutions Section */
.solutions-section {
  background: var(--bg);
  color: #fff;
}

/* Section Title */
.solutions-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.solutions-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 12px auto 0;
  border-radius: 2px;
}



/* Product Image */
.product-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Content */
.product-content {
  padding: 1rem;
}
.product-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}
.product-desc {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* Features List */
.product-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}
.product-features li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.6rem;
  color: #ddd;
  font-size: 0.95rem;
}
.product-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Buy Button */
.buy-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.buy-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

[id] {
  scroll-margin-top: 100px; /* adjust depending on your navbar height */
}


/* services */

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #000;
    transform: translateY(-2px);
}

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

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .display-4 {
        font-size: 2rem;
    }
}
