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

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

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

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

/* Footer */
.footer {
  background-color: #1e1e1e;
  color: white;
  padding: 15px 20px; /* final padding */
  margin: 10px 0 -40px; /* top + bottom spacing */
  text-align: left;
}

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

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

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

@media (max-width: 768px) {
  .footer,
  .footer .row > div {
    text-align: center;
    margin-bottom: 10px;
  }
}

/* Card */
.card {
  background-image: url('../images/Extra/Frame 2608408.png');
  background-size: 100% 100%;
  border-radius: 1rem;
  background-color: black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Forms */
.form-control,
.form-select {
  border-radius: 0.5rem;
  background-color: #1e1e1e;
  color: white;
  border: 1px solid #ccc;
}

.form-control:focus,
.form-select:focus {
  background-color: #1e1e1e;
  color: white;
  border-color: #0A71B9;
  box-shadow: none;
}

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

/* Text Helpers */
.text-small {
  font-size: 0.9rem;
}

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

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

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

/* Marquee Section */
.marquee-wrapper {
  width: 80%;
  transform: translateY(-10px);
  margin-left: 7.5%;
  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%);
  }
}
