body {
  font-family: 'Poppins', sans-serif;
  background-color: #000000;
  color: #fff;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar a.nav-link {
  color: #8c00ff !important;
  transition: 0.3s;
  font-weight:600;
}

.navbar a.nav-link:hover {
  color: #fff !important;
  text-shadow: 0 0 10px #8c00ff;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(-45deg, #001276, #010000, #1b2a60, #0a0f2c);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
}

/* Animated Gradient */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Overlay for subtle darkness */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 0, 65, 0.55);
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeUp 1.5s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #8c00ff;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 15px 0 30px;
  color: #ccc;
}

.btn-primary {
  background: #8c00ff;
  color: #0a0f2c;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #8c00ff;
  transform: translateY(-3px);
}

/* Particle Canvas */
#particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}


/* Section Titles */
.section-title {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Service Cards */
.service-card {
  background: #10131a;
  border: 1px solid #1f2833;
  border-radius: 14px;
  transition: all 0.4s ease;
}

.card p {
  color: #ccc;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 6px 25px rgba(39, 240, 224, 0.25);
  background: #131722;
}

/* Partner Logos */
.grayscale-hover {
  filter: grayscale(100%);
  transition: all 0.3s;
}

.grayscale-hover:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Footer */
footer p {
  font-size: 0.9rem;
  color: #ccc;
}

footer ul li {
  color: #bbb;
  margin-bottom: 6px;
  transition: color 0.3s;
}

footer ul li:hover {
  color: #8c00ff;
}

/* Buttons */
.btn-info {
  background-color: #8c00ff !important;
  border: none;
  transition: 0.3s;
}

.btn-info:hover {
  background-color: #8c00ff !important;
  transform: translateY(-2px);
}


.why-choose-section {
  background: #0b0f19;
  color: #fff;
  padding: 80px 20px;
}

.why-choose-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.image-container {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.image-container img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 188, 212, 0.3);
}

.content-container {
  flex: 1;
  min-width: 320px;
}

.content-container h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #8c00ff;
}

/* Accordion styles */
/* Section Layout */
.why-choose-section {
  background: #0b0f19;
  color: #fff;
  padding: 80px 20px;
}

.why-choose-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Image Styling */
.image-container {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.image-container img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 188, 212, 0.25);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-container img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(0, 188, 212, 0.4);
}

/* Content */
.content-container {
  flex: 1;
  min-width: 320px;
}

.content-container h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #8c00ff;
  position: relative;
}

.content-container h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #8c00ff;
  margin-top: 10px;
  border-radius: 2px;
}

/* Accordion Styling */
.accordion {
  text-align: left;
}

.accordion-item {
  background: #141b2d;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-2px);
}

.accordion-header {
  background: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.accordion-header::after {
  content: "\25BC";
  position: absolute;
  right: 24px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(180deg);
}

.accordion-header:hover {
  background: #1c243b;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #101624;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
  padding: 0 24px;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  opacity: 1;
}

.accordion-content p {
  color: #ccc;
  padding: 16px 0;
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
  .why-choose-section .container {
    flex-direction: column;
    text-align: center;
  }

  .content-container {
    text-align: left;
  }
}


/* TESTIMONIAL SECTION */
.testimonials-section {
  background: radial-gradient(circle at center, #0a0f2c, #141a40);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #8c00ff;
  margin-bottom: 10px;
}

.testimonials-section .subtitle {
  color: #ccc;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

/* Grid layout for testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

/* Testimonial card design */
.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: fadeIn 1.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.25);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-text {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 25px;
  line-height: 1.6;
  font-style: italic;
}

/* Client info layout */
.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #00d9ff;
}

.client-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #fff;
}

.client-info span {
  font-size: 0.9rem;
  color: #8c00ff;
}


/* CONTACT SECTION */
.contact-section {
  background: linear-gradient(135deg, #0a0f2c, #141a40);
  color: #fff;
  padding: 80px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info, 
.contact-details {
  flex: 1 1 45%;
  min-width: 300px;
}

/* Left container */
.contact-info h2 {
  font-size: 2.5rem;
  color: #8c00ff;
  margin-bottom: 10px;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
}

.contact-info span {
  color: #8c00ff;
  font-weight: 600;
}

/* Right container */
.contact-details {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.15);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.contact-details:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.3);
}

.contact-details h2 {
  font-size: 2rem;
  color: #8c00ff;
  margin-bottom: 25px;
}

.contact-details p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 15px;
}

.contact-details a {
  color: #8c00ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-details {
    width: 100%;
  }
}

.text-start {
    text-align: justify !important;
}

.text-info {
    --bs-text-opacity: 1;
    color: #8c00ff !important;
}