/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background-color: #1e1e1e;
  overflow-x: hidden;
}

/* Main Section */
.main {
  background-color: #1e1e1e;
  padding: 10px 0;
  margin-top: -60px; /* Consider removing if not required */
}

/* Audit/Contact Section */
.Audit {
  background: url('../images/Extra/crown.png') center/cover no-repeat;
  color: white;
}

/* Footer */
.footer {
  background-color: #1e1e1e;
  color: white;
  padding: 15px 20px;
  margin: 10px 0 -40px 0; /* top spacing + remove duplication */
  text-align: center; /* default center alignment for better responsiveness */
}

.footer p {
  margin-bottom: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
}

.social-icon {
  margin: 0 8px;
  font-size: 16px;
  color: white;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #ccc;
}

@media (min-width: 769px) {
  .footer {
    text-align: left; /* desktop aligns left */
  }
}

/* Card */
.card {
  background: black url('../images/Extra/frame 2608408.png') center/cover no-repeat;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 0.5rem;
  background-color: #1e1e1e;
}

.btn-primary {
  border-radius: 0.5rem;
}

.text-small {
  font-size: 0.9rem;
}

.logo {
  height: 80px;
  margin: 60px auto 30px;
  display: block;
}

/* Marquee */
.marqueeajust {
  width: 100%;
  margin-left: -11%;
}

.marqueeajustright {
  width: 100%;
  margin-left: 13%;
}

.marquee-wrapper {
  max-width: 1140px;
  width: 100%;
  transform: translateY(-10px);
  margin: 0 auto;
  z-index: 1000;
}

.marquee-text-container {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.marquee-text-track {
  display: flex;
  animation: scroll-loop 20s linear infinite;
}

.marquee-text {
  flex-shrink: 0;
  color: white;
  padding-right: 100px;
  display: flex;
  align-items: center;
}

@keyframes scroll-loop {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}
