/* =========================================
   GLOBAL BASE
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #0b0b1b, #1a0936);
  color: #fff;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(12, 10, 25, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: 0.3s ease-in-out;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

.header-inner {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo {
  height: 48px;
  width: auto;
  margin-right: 10px;
  border-radius: 12px;
  background: transparent;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 600;
  background: linear-gradient(45deg, #7d5fff, #6f00ff, #ff8c42);
  -webkit-background-clip: text;
  color: transparent;
}

.navbar a {
  text-decoration: none;
  color: #fff;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}
.navbar a:hover {
  color: #ff8c42;
  transform: scale(1.1);
}

/* =========================================
   HERO
========================================= */
.hero {
  padding-top: 200px;
  padding-bottom: 180px;
  background: radial-gradient(circle at 50% 20%, #3e0066, #0b0b1b);
  text-align: center;
  overflow: hidden;
}

.hero h2 {
  font-size: 2.6rem;
  margin-bottom: 15px;
  animation: fadeInDown 1.2s ease forwards;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #ff8c42;
  animation: fadeIn 1.6s ease forwards;
}

.btn-primary {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(45deg, #7d5fff, #ff8c42);
  box-shadow: 0 4px 20px rgba(255, 140, 66, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 140, 66, 0.6);
}

/* =========================================
   SECTIONS
========================================= */
.section {
  padding: 120px 0;
  text-align: center;
}

.section.dark {
  background: linear-gradient(180deg, #1a0936, #0b0b1b);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}
.section h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #7d5fff, #ff8c42);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* =========================================
   SERVICES
========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 140, 66, 0.05);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
}

.service-icon {
  font-size: 2.4rem;
  color: #ff8c42;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #ff8c42;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* =========================================
   COUNTERS
========================================= */
.counter-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.counter h3 {
  font-size: 2.6rem;
  background: linear-gradient(45deg, #7d5fff, #ff8c42);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.counter p {
  font-size: 1rem;
  opacity: 0.8;
}

/* =========================================
   TESTIMONIALS
========================================= */
.testimonials {
  max-width: 900px;
  margin: 0 auto;
}

blockquote {
  font-style: italic;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-left: 5px solid #ff8c42;
  border-radius: 12px;
  margin-bottom: 30px;
}
blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  color: #bbb;
}

/* =========================================
   CONTACT
========================================= */
.contact-info {
  margin-bottom: 30px;
  text-align: center;
}

.contact-info p {
  margin: 8px 0;
  font-size: 1rem;
  color: #ddd;
}
.contact-info i {
  color: #ff8c42;
  margin-right: 10px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}

/* =========================================
   FOOTER
========================================= */
.footer {
  background: #0b0b1b;
  text-align: center;
  padding: 25px 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* =========================================
   ANIMATIONS
========================================= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; }
  .navbar { margin-top: 10px; }
  .hero h2 { font-size: 1.9rem; }
  .hero { padding-top: 150px; padding-bottom: 120px; }
  .services-grid { gap: 25px; }
}
/* ================================
   COMPLAINTS PAGE STYLING
================================ */
.btn-complaints {
  padding: 8px 16px;
  border-radius: 20px;
  background: linear-gradient(45deg, #ff8c42, #6f00ff);
  color: #fff !important;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-complaints:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 140, 66, 0.5);
}

.btn-complaints.active {
  box-shadow: 0 0 20px rgba(255, 140, 66, 0.5);
}

.complaint-section {
  text-align: left;
  background: linear-gradient(180deg, #0b0b1b, #1a0936);
}

.complaint-section h2 {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 25px;
  color: #ff8c42;
}

.complaint-section h3 {
  margin-top: 40px;
  color: #ff8c42;
}

.complaint-section h4 {
  margin-top: 30px;
  color: #ff8c42;
  font-weight: 600;
}

.complaint-section p,
.complaint-section ul {
  line-height: 1.7;
  color: #ddd;
}

.complaint-section ul {
  margin-left: 25px;
  list-style-type: disc;
}
