: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;
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent);
  z-index: -1;
}

.hero h1, .hero p {
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero img {
  width: 350px;
}

.hero img:hover {
  transform: scale(1.5);

}

/* Buttons */
.btn-primary, .btn-outline-primary, .btn-outline-secondary {
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
  font-weight: 500;
  transition: all var(--transition-speed) ease;
}

.btn-primary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
  border: 1px solid var(--accent);
  color: var(--text-primary);
}

.btn-outline-primary:hover {
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.btn-outline-secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--text-primary);
}

.btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Text */
h1, h2, h3, h4, h5, .lead {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.text-muted {
  color: var(--text-muted) !important;
}

/* Cards */
.card-title {
  color: var(--text-primary);
}

.card-text {
  color: var(--text-secondary);
}

/* Form Focus */
.form-control:focus, .form-select:focus {
  border-color: var(--info);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(74, 99, 255, 0.25);
}

/* Section Headers */
section h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

/* Hover Animations */
a:hover {
  transition: all var(--transition-speed) ease;
}

.interactive {
  position: relative;
  overflow: hidden;
}

.interactive::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.interactive:hover::before {
  width: 300px;
  height: 300px;
}

/* Shimmer Loading */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.shimmer {
  background: linear-gradient(to right, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.3) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }
  .service-card {
    margin-bottom: 1.5rem;
  }
  #how .border {
    margin-bottom: 1.5rem;
  }
}
/* About Us Section */
/* About Us Section */
#about-us {
  padding: 5rem 0;
  color: var(--text-primary);
}

/* Section heading */
#about-us h2 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

#about-us p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Image */
#about-us img {
  border-radius: var(--border-radius);
  box-shadow: var(--medium-shadow);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Stats Boxes */
#about-us .stats-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--border-radius);
  padding: 2rem 1rem;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  box-shadow: var(--light-shadow);
}

#about-us .stats-box h3 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

#about-us .stats-box p {
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}

/* Stats Boxes Hover Effect */
#about-us .stats-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--medium-shadow);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  #about-us .stats-box {
    padding: 1.5rem 1rem;
  }
}
#qualities {
  padding: 1rem 1rem;
  display: flex;
  justify-content: center;
}

.qualities-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  max-width: 1250px;
  width: 100%;
}

.quality-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 0.5rem 0.5rem;
  text-align: center;
  color: var(--text-primary);
  backdrop-filter: blur(10px);
  box-shadow: var(--medium-shadow);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.quality-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--heavy-shadow);
}

.quality-icon {
  font-size: 2.5rem;
  color: var(--accent);
  transition: color var(--transition-speed);
}

.quality-card:hover .quality-icon {
  color: var(--success);
}

.quality-card p {
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-primary);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #qualities {
    padding: 2rem 1rem;
  }

  .quality-card {
    padding: 1.5rem 1rem;
  }
}
/* Partners Section */
.partners-section {
  padding: 1rem 1rem;
  background: linear-gradient(180deg, #f0850ccd, #0c0f66, #0c0f66, rgba(0, 0, 0, 0.807));
  color: var(--text-primary);
  text-align: center;
  overflow: hidden;
}

.partners-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.partners-carousel {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  animation: scroll-left 15s linear infinite;
}

.partner-logo {
  flex: 0 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  box-shadow: var(--light-shadow);
  min-width: 180px;
}

.partner-logo img {
  max-height: 60px;
  object-fit: contain;
  display: block;
}

.partner-logo:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--medium-shadow);
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* 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);
}

/* === Services Section === */
#services {
  color: white;
  position: relative;
  overflow: hidden;
}

#services h2 {
  font-weight: 700;
}

#services .services-intro {
  font-weight: 600;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

/* Card Style */
#services .card-body {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 1rem;
  box-shadow: var(--light-shadow);
  backdrop-filter: blur(10px);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

#services .card-body:hover {
  transform: translateY(-6px);
  box-shadow: var(--medium-shadow);
}

/* Service Icons */
#services .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.15);
}

/* Text inside cards */
#services .card-title {
  font-weight: 600;
  font-size: bold;
  color: var(--text-primary);
}

#services .card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: bold;
}

#services .list-unstyled li {
  margin-bottom: 0.4rem;
  color: white;
  font-size: 0.9rem;
  font-weight: bolder;
}

/* Button Style */
#services .btn-primary {
  background: linear-gradient(
    90deg,
    var(--primary-gradient-start),
    var(--primary-gradient-mid)
  );
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--medium-shadow);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

#services .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--heavy-shadow);
}