:root {
  /* Color Palette from Logo */
  --primary-gradient-start: #f7931e;   /* Orange */
  --primary-gradient-mid: #210098;     /* Deep Blue */
  --primary-gradient-end: #0c0f66;     /* Dark Indigo */

  --glass-bg: rgba(27, 43, 163, 0.2);
  --glass-border: rgba(255, 255, 255, 0.25);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.65);

  --accent: #f7931e;   /* Lightning Bolt Orange */
  --success: #ffb347;  /* Lighter orange highlight */
  --info: #4a63ff;     /* Bright blue accent */

  /* Spacing */
  --border-radius: 16px;
  --transition-speed: 0.3s;

  /* Shadows */
  --light-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --medium-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  --heavy-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

body {
  background: linear-gradient(135deg, 
    var(--primary-gradient-start), 
    var(--primary-gradient-mid), 
    var(--primary-gradient-end));
  background-size: 400% 400%;
  animation: gradientShift 7s ease infinite;
  min-height: 100vh;
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--text-primary);
  overflow-x: hidden;
  margin: 0;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Glass Effect */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  box-shadow: var(--light-shadow);
  transition: all var(--transition-speed) ease;
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid var(--glass-border) !important;
  transition: all var(--transition-speed) ease;
}

.navbar:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

.navbar-brand, .nav-link {
  color: var(--text-primary) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-speed) ease;
}

.nav-link:hover {
  color: var(--text-primary) !important;
  transform: translateY(-2px);
}

.nav-link.active {
  font-weight: 800;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}
/* Footer Section */
.footer {
  background: #fff;
  color: #222;
  padding: 4rem 2rem 2rem;
  position: relative;
  font-size: 0.95rem;
  box-shadow: var(--light-shadow);
}

/* Footer Container Layout */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Company Info */
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-gradient-mid);
}

.footer-about p {
  color: #555;
  line-height: 1.6;
}

/* Links Section */
.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--primary-gradient-mid);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  text-decoration: none;
  color: #444;
  transition: color var(--transition-speed);
}

.footer-links ul li a:hover {
  color: var(--accent);
}

/* Contact Section */
.footer-contact p {
  margin: 0.5rem 0;
  color: #444;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--accent);
}

/* Newsletter */
.footer-newsletter p {
  color: #666;
  margin-bottom: 0.5rem;
}

.footer-newsletter form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-newsletter input[type="email"] {
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: var(--border-radius);
  border: 1px solid #ddd;
  outline: none;
  background: #f9f9f9;
  color: #222;
}

.footer-newsletter button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: background var(--transition-speed);
}

.footer-newsletter button:hover {
  background: var(--success);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-top: 0.5rem;
}

/* Social Icons */
.social-icons {
  margin-bottom: 0.8rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0 0.3rem;
  border-radius: 50%;
  background: #f1f1f1;
  color: #333;
  border: 1px solid #ddd;
  transition: transform var(--transition-speed), background var(--transition-speed), color var(--transition-speed);
}

.social-icons a:hover {
  transform: translateY(-5px);
  background: var(--accent);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 1rem 1.5rem;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
  }
}
:root {
  /* Color Palette from Logo */
  --primary-gradient-start: #f7931e;   /* Orange */
  --primary-gradient-mid: #210098;     /* Deep Blue */
  --primary-gradient-end: #0c0f66;     /* Dark Indigo */

  --glass-bg: rgba(27, 43, 163, 0.1);
  --glass-border: rgba(255, 255, 255, 0.25);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.65);

  --accent: #f7931e;   /* Lightning Bolt Orange */
  --success: #ffb347;  /* Lighter orange highlight */
  --info: #4a63ff;     /* Bright blue accent */

  /* Spacing */
  --border-radius: 16px;
  --transition-speed: 0.3s;

  /* Shadows */
  --light-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --medium-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
  --heavy-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.intro {
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--medium-shadow);
}

.intro h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: white;
}

.intro p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

/* Services Grid */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
}

.services .card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--light-shadow);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.services .card:hover {
  transform: translateY(-8px);
  box-shadow: var(--medium-shadow);
}

.services img {
  max-width: 60px;
  margin-bottom: 1rem;
}

.services h3 {
  font-size: 1.5rem;
  color: var(--primary-gradient-mid);
  margin-bottom: 0.5rem;
}

.services p {
  color: #555;
  font-size: 1rem;
}

/* Call to Action */
.cta {
  background: linear-gradient(135deg, var(--primary-gradient-mid), var(--primary-gradient-end));
  color: var(--text-primary);
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--border-radius);
  margin: 1rem;
  box-shadow: var(--medium-shadow);
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.cta a {
  display: inline-block;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition-speed);
}

.cta a:hover {
  background: var(--success);
}

/* Responsive */
@media (max-width: 768px) {
  .intro h1 {
    font-size: 2rem;
  }
  .services {
    grid-template-columns: 1fr;
  }
}