body {
      background-color: #0f111a;
      color: white;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .custom-header {
      background-color: #0f111a;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .logo-img {
      height: 40px;
    }

    .nav-link {
      color: #fff !important;
      font-weight: 500;
      position: relative;
      text-decoration: none;
      padding-bottom: 4px;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: #00d98b !important;
    }

    .nav-link::after {
      content: "";
      display: block;
      height: 2px;
      width: 0%;
      background: #00d98b;
      transition: width 0.3s ease;
      position: absolute;
      bottom: 0;
      left: 0;
    }

    .nav-link:hover::after,
    .nav-link.active-link::after {
      width: 100%;
    }

    .search-input {
      background-color: transparent;
      border: none;
      border-bottom: 1px solid #444;
      padding-right: 30px;
      color: white;
      width: 160px;
    }

    .search-input::placeholder {
      color: #aaa;
      font-weight: 300;
    }

    .search-icon {
      position: absolute;
      right: 10px;
      color: #00d98b;
      pointer-events: none;
    }

    .search-bar {
      position: relative;
      display: flex;
      align-items: center;
    }

    @media (max-width: 991.98px) {
      .search-input {
        width: 100%;
      }
    }
    .hero-section {
  background-color: #0f111a;
  color: white;
  min-height: 100vh;
}

.text-section {
  background-color: #0f111a;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
}

.highlight {
  color: #00d98b;
}

.hero-desc {
  margin-top: 1rem;
  color: #aaa;
  max-width: 500px;
}

.learn-more {
  display: inline-block;
  margin-top: 1.5rem;
  color: #00d98b;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: #00ffae;
}

.hero-image-container {
  overflow: hidden;
  position: relative;
  min-height: 500px;
}

.hero-image-container img.graph-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  pointer-events: none;
}

.price-tag {
  position: absolute;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  z-index: 5;
}

.price-tag.green {
  top: 25%;
  right: 35%;
  background-color: #00d98b;
}

.price-tag.green span {
  font-weight: normal;
  font-size: 12px;
  display: block;
}

.price-tag.red {
  top: 50%;
  right: 10%;
  background-color: #ff3b3b;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .text-section {
    text-align: center;
    padding: 2rem 1rem;
  }

  .hero-desc {
    margin: 1rem auto;
  }

  .hero-image-container {
    min-height: 300px;
  }

  .price-tag {
    font-size: 12px;
    padding: 4px 8px;
  }
}
.graph-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 1;
}

/* Hide graph-line on tablets and smaller (below 992px) */
@media (max-width: 991.98px) {
  .graph-line {
    display: none;
  }
}

.graph-line polyline {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawGraph 2s ease-out forwards;
}

@keyframes drawGraph {
  to {
    stroke-dashoffset: 0;
  }
}

.companies-section {
  background-color: #0f111a;
  position: relative;
}

.company-slider {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.company-card {
  position: relative;
  background-color: #1c1c1c; /* dark card bg */
  padding: 1rem;
  border-radius: 12px;
  overflow: hidden;
  min-width: 240px;
  flex: 0 0 auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.company-card::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  background-image: url('chart-bg.svg'); /* Use your own SVG */
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15;
  pointer-events: none;
}


.company-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(to bottom right, #222437, #161823);
}

.company-logo {
  height: 45px;
  width: 45px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 5px;
}

.company-name {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
}

.company-sector {
  color: #888;
  font-size: 0.8rem;
}

.price-details {
  margin-top: 20px;
}

.price-amount {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.price-change {
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}

.mini-chart img {
  width: 100%;
  max-width: 100px;
  opacity: 0.8;
}

.company-slider {
  scroll-behavior: smooth;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.05);
  border: none;
  color: #00d98b;
  font-size: 24px;
  padding: 10px;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.left-btn {
  left: -10px;
}

.right-btn {
  right: -10px;
}

/* Responsive behavior */
@media (max-width: 992px) {
  .company-card {
    width: 180px;
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .carousel-btn {
    font-size: 20px;
    padding: 8px;
  }
}

.about-section {
  /* Ensure dark background is consistent */
  background-color: #0d1117 !important;
  color: #c9d1d9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #c9d1d9;
}

.about-section h2 .text-success {
  color: #238636;
}

.about-section p.lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #8b949e; /* lighter muted text */
}

.about-section p {
  color: #8b949e;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-section ul {
  padding-left: 0;
}

.about-section ul li {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  color: #8b949e;
}

.about-section ul li i {
  font-size: 1.2rem;
  color: #238636;
  margin-right: 10px;
}

/* Button styling */
.about-section .btn-success {
  background-color: #238636;
  border-color: #238636;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.about-section .btn-success:hover,
.about-section .btn-success:focus {
  background-color: #2ea043;
  border-color: #2ea043;
  color: #fff;
  text-decoration: none;
}

/* Responsive tweak for SVG height */
.about-section svg {
  width: 100%;
  height: auto;
  max-height: 400px;
  display: block;
  margin: 0 auto;
}

/* Margin fix for smaller screens */
@media (max-width: 767.98px) {
  .about-section .col-md-6 {
    margin-bottom: 2rem;
  }
}
.uk-background-muted {
background-color: #111827;
color: #fff;
}
.highlight {
color: #1e87f0;
}
.uk-icon-button {
background-color: #1e87f0;
color: #fff;
}
.uk-icon-button:hover {
background-color: #0f6ab4;
}
.highlight {
color: #1e87f0;
}
.uk-background-muted {
background-color: #111827; /* Dark card background */
}
.uk-card-default {
color: #fff;
border: 1px solid #1e87f0;
}
.uk-text-success {
color: #32d296 !important;
}
.uk-text-danger {
color: #f0506e !important;
}
.bg-dark {
    background-color: rgb(33, 34, 36);
}
.in-highlight {
    color: #0fa55a;
}
.map-wrapper {
    position: relative;
    max-width: 100%;
}
.logo-pin {
    position: absolute;
    width: 36px;
    height: auto;
    border-radius: 50%;
    background: #ffffff;
    padding: 4px;
    box-shadow: 0 0 12px rgba(30,135,240,0.4);
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.count {
    font-weight: bold;
    color: #fff;
}
.bg-deep {
background:rgba(2, 3, 5, 0.9);
}
.highlight {
color: #0fa55a;
}
.uk-text-primary {
color: #0fa55a !important;
}
.uk-overlay-primary {
background: #0fa55a;
color: #fff;
text-align: center;
}
.uk-list-divider > li {
padding: 12px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Bright accent green */
.text-bright-green {
  color: #199646; /* neon green */
  text-shadow: 0 0 8px #32ff7e;
}

.why-choose-us {
  background-color: #0b0f13; /* deeper dark */
  color: #d0d6db;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.why-choose-us .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #d0d6db;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3rem;
}
/* Dark Themed FAQ Section */
.faq-section {
  background-color: #111; /* Dark background */
  color: #f0f0f0; /* Light text */
  padding: 60px 20px;
  border-top: 2px solid #00d98b;
}

.faq-section h2 {
  color: #00d98b; /* Highlighted title */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.faq-section .accordion-item {
  background-color: #1a1a1a; 
  border: 1px solid #333;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.faq-section .accordion-button {
  background-color: #1a1a1a;
  color: #f0f0f0;
  font-weight: 600;
  padding: 18px;
  transition: all 0.3s ease;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-button:hover {
  background-color: #222;
  color: #00d98b;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: #00d98b;
  color: #111;
  font-weight: 700;
}

.faq-section .accordion-body {
  background-color: #151515;
  color: #ddd;
  padding: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.faq-section .accordion-item + .accordion-item {
  margin-top: 10px;
}


/* Glassy card effect */
.feature-card {
  background: rgba(50, 255, 126, 0.12); /* transparent neon green tint */
  border-radius: 16px;
  box-shadow:
    0 8px 32px 0 rgba(50, 255, 126, 0.2),
    inset 0 0 20px rgba(50, 255, 126, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(50, 255, 126, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: #d0d6db;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow:
    0 12px 40px 0 rgba(50, 255, 126, 0.6),
    inset 0 0 40px rgba(50, 255, 126, 0.3);
}

/* Glowing icons */
.icon-glow {
  color: #32ff7e;
  text-shadow:
    0 0 6px #0f883b,
    0 0 12px #0f883b,
    0 0 24px #0f883b,
    0 0 48px #0f883b;
  transition: text-shadow 0.4s ease;
}

.feature-card:hover .icon-glow {
  text-shadow:
    0 0 12px #0f883b,
    0 0 24px #0f883b,
    0 0 48px #0f883b,
    0 0 72px #0f883b;
}

.feature-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #d0d6db;
  letter-spacing: 0.03em;
}

.feature-desc {
  font-size: 1.1rem;
  color: #a8b2bd;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .feature-card {
    max-width: 100%;
    margin: 0 auto 2rem;
  }
}

.custom-footer {
  background-color: #0d1117 !important;
  color: #c9d1d9;
  padding-top: 60px;
  padding-bottom: 30px;
  border-top: 1px solid #30363d;
}

.custom-footer .footer-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.custom-footer p,
.custom-footer li {
  color: #8b949e;
  line-height: 1.7;
}

.custom-footer .uk-icon-button {
  background-color: #21262d;
  color: #c9d1d9;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.custom-footer .uk-icon-button:hover {
  background-color: #58a6ff;
  color: #ffffff;
}

.custom-footer .uk-text-meta {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #6e7681;
}

.footer-logo img {
  filter: brightness(1.2);
}

.p-5{
  padding: 1rem !important;
}
        
