 * { box-sizing: border-box; margin: 0; padding: 0; } body, html { height: 100%; font-family: Arial, sans-serif; color: #fff; background: #000 url('../images/background.webp') no-repeat center center fixed; background-size: cover; } .content { position: relative; z-index: 1; max-width: 900px; margin: auto; padding: 2rem 1rem; background: rgba(0, 0, 0, 0.65); border-radius: 12px; margin-top: 2rem; } header { text-align: center; margin-bottom: 2rem; } header img { max-width: 150px; margin-bottom: 1rem; } h1 { font-size: 2rem; margin-bottom: 0.5rem; } h2 { color: orange; margin-top: 2rem; font-size: 1.5rem; border-bottom: 1px solid #fff; padding-bottom: 0.3rem; } ul { list-style: none; padding: 0; } ul li { background: rgba(255, 255, 255, 0.1); margin: 1rem 0; padding: 1rem; border-radius: 8px; } a { color: #ff4d4d; text-decoration: none; } form { margin-top: 1.5rem; display: flex; flex-direction: column; } form input, form textarea { padding: 10px; margin-bottom: 1rem; border-radius: 5px; border: none; font-size: 1rem; } form button { background-color: orange; padding: 10px; background-color: #ff4d4d; border: none; border-radius: 5px; color: white; font-size: 1rem; cursor: pointer; } @media (max-width: 768px) { .content { padding: 1rem; margin-top: 1rem; } h1 { font-size: 1.5rem; } h2 { color: orange; font-size: 1.2rem; } form input, form textarea { font-size: 1rem; } form button { background-color: orange; font-size: 1rem; } } 
 #mobileMenu, #menuToggle { display: none; } @media (max-width: 767px) { #menuToggle { display: block; } #mobileMenu { display: none; text-align: center; padding: 10px 0; } #mobileMenu.show { display: block !important; } #desktopMenu { display: none !important; } } @media (min-width: 768px) { #menuToggle, #mobileMenu { display: none !important; } #desktopMenu { display: flex !important; gap: 20px; align-items: center; justify-content: center; } #desktopMenu a { color: orange; text-decoration: none; font-weight: bold; margin-left: 15px; } } .menu-items.show { display: block !important; } 

/* Modern Nav Styles */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 999;
  padding: 10px 0;
}
.navbar-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-logo a {
  color: orange;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}
.navbar-menu a {
  color: orange;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}
.navbar-menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: orange;
  left: 0;
  bottom: -3px;
  transition: 0.3s ease;
}
.navbar-menu a:hover::after {
  width: 100%;
}
.navbar-toggle {
  display: none;
  font-size: 24px;
  color: orange;
  cursor: pointer;
}
.navbar-mobile {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.9);
  padding: 15px;
  text-align: center;
}
.navbar-mobile a {
  color: orange;
  text-decoration: none;
  font-weight: bold;
  margin: 10px 0;
}
.navbar-mobile.show {
  display: flex;
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }
  .navbar-toggle {
    display: block;
  }
}


/* Futuristic Navigation Style */
.futuristic-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, rgba(10,10,30,0.95), rgba(20,20,60,0.95));
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  z-index: 1000;
}
.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo a {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #00ffff;
  text-decoration: none;
}
.nav-links a {
  font-family: 'Exo 2', sans-serif;
  margin-left: 20px;
  color: #00ffff;
  text-decoration: none;
  position: relative;
  font-weight: bold;
  transition: color 0.3s ease;
}
.nav-links a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #00ffff;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: #00ccff;
}
.nav-links a:hover::before {
  width: 100%;
}
.nav-toggle {
  display: none;
  font-size: 28px;
  color: #00ffff;
  cursor: pointer;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #111935;
  padding: 10px 0;
  text-align: center;
}
.nav-mobile a {
  color: #00ffff;
  text-decoration: none;
  padding: 10px 0;
  font-weight: bold;
}
.nav-mobile.show {
  display: flex;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}


/* Futuristic Fonts */
body, html {
  font-family: 'Exo 2', sans-serif;
}

/* Card Layout for Services */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.service-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  color: #00ffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(0,255,255,0.1);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0,255,255,0.4);
}

/* Section Separators */
section {
  position: relative;
  padding-bottom: 80px;
}
section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  bottom: -1px;
  left: 0;
}

/* Button Style Enhancements */
form button {
  background: linear-gradient(to right, #00ffff, #0077ff);
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 0 10px rgba(0,255,255,0.5);
  transition: 0.3s ease;
}
form button:hover {
  background: linear-gradient(to right, #00ccff, #0055cc);
  box-shadow: 0 0 20px rgba(0,255,255,0.7);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-card {
    font-size: 0.95rem;
  }
}


/* Global text and heading colors */
body, html {
  color: #d0f9ff;
  background-color: #000; /* Reinforce dark background */
}
h1, h2, h3, h4, h5, h6 {
  color: #00ffff;
  font-family: 'Orbitron', sans-serif;
}
a {
  color: #00ccff;
}
a:hover {
  color: #00ffff;
}


/* Back to Top Button - Neon Tech Style */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(to right, #00ffff, #0077ff);
  color: #000;
  border: none;
  padding: 12px 18px;
  border-radius: 30px;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
  transition: all 0.3s ease;
  z-index: 9999;
}
#backToTop:hover {
  background: linear-gradient(to right, #00ccff, #0055cc);
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.9);
}


/* Logo-inspired Font Color Scheme */
body, html {
  color: #f8e9c0;
}
h1, h2, h3, h4, h5, h6 {
  color: #ffcc66;
}
a {
  color: #ff9966;
}
a:hover {
  color: #ffcc66;
}
.service-card {
  color: #ffcc66;
  border-color: rgba(255, 204, 102, 0.2);
  box-shadow: 0 0 10px rgba(255,204,102,0.1);
}
.service-card:hover {
  box-shadow: 0 0 20px rgba(255,204,102,0.4);
}
form button {
  background: linear-gradient(to right, #ffcc66, #ff9966);
  color: #000;
  box-shadow: 0 0 10px rgba(255,204,102,0.5);
}
form button:hover {
  background: linear-gradient(to right, #ffb347, #ff8008);
  box-shadow: 0 0 20px rgba(255,204,102,0.7);
}
#backToTop {
  background: linear-gradient(to right, #ffcc66, #ff9966);
  color: #000;
  box-shadow: 0 0 12px rgba(255, 204, 102, 0.6);
}
#backToTop:hover {
  background: linear-gradient(to right, #ffb347, #ff8008);
  box-shadow: 0 0 18px rgba(255, 204, 102, 0.9);
}


/* Separate Heading and Content Colors */
body, html {
  color: #f2f2f2; /* soft light grey for general content */
}

h1, h2, h3, h4, h5, h6 {
  color: #ffcc66; /* warm yellow from logo */
}

/* Ensure cards inherit proper contrast */
.service-card {
  color: #f2f2f2;
}


/* Mobile Menu Enhancements */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.95);
  padding: 15px;
  text-align: center;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 1001;
  box-shadow: 0 8px 16px rgba(0,0,0,0.6);
  transition: max-height 0.3s ease-out;
}

.nav-mobile a {
  color: #ffcc66;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 0;
  display: block;
}

.nav-mobile.show {
  display: flex;
}

.nav-toggle {
  z-index: 1002;
}


@media (max-width: 768px) {
  body, html {
    background: #000 url('../images/background_mobile.webp') no-repeat center center fixed;
    background-size: cover;
  }
}


/* Animated Service Cards */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

@keyframes shimmer {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 204, 102, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  color: #f2f2f2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(255,204,102,0.1);
  animation: float 4s ease-in-out infinite;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.07), transparent);
  transform: skewX(-25deg);
  animation: shimmer 2.5s infinite;
}

.service-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255,204,102,0.4);
}


/* Alternate Service Card Animation */
@keyframes tilt {
  0%, 100% { transform: rotateX(0deg) rotateY(0deg); }
  50% { transform: rotateX(3deg) rotateY(-3deg); }
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 204, 102, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  color: #f2f2f2;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s;
  box-shadow: 0 0 10px rgba(255,204,102,0.15);
  animation: tilt 6s infinite ease-in-out;
}

.service-card:hover {
  transform: scale(1.05) rotateX(2deg) rotateY(-2deg);
  background: rgba(255, 204, 102, 0.07);
  box-shadow: 0 0 25px rgba(255,204,102,0.5);
}


/* Modern Neon Card Style */
.service-card {
  position: relative;
  background: rgba(10, 10, 25, 0.8);
  border: 1px solid rgba(255, 204, 102, 0.2);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  color: #f0f0f0;
  overflow: hidden;
  box-shadow: 0 0 0 rgba(255,204,102,0);
  transition: all 0.4s ease-in-out;
}

.service-card:hover {
  background: rgba(25, 25, 50, 0.95);
  box-shadow: 0 0 20px rgba(255,204,102,0.5), 0 0 40px rgba(255,204,102,0.2);
  transform: translateY(-5px);
}

/* Slide-in content effect */
.service-card::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, #ffcc66, #ff9966);
  transition: bottom 0.4s ease-in-out;
}

.service-card:hover::after {
  bottom: 0;
}

.card-title {
  color: #ffcc66;    /* Same as headings */
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 0.3em;
  font-size: 1.15em;
}
