/* Import Fonts (Move this to the top of the CSS file) */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Lobster&family=Oswald:wght@400;700&display=swap');

/* Dark Mode Styling */
body {
  background-color: #000;
  color: #fff;
  font-family: "Raleway", sans-serif; /* Default font */
}

/* Custom Buttons */
.btn-success {
  background-color: #25d366 !important;
  border-color: #25d366 !important;
}

.text-success {
  color: #25d366 !important;
}

.text-warning {
  color: #e88f2a !important;
}

/* Marquee Styling */
.marquee {
  background-color: #000;
  color: #fff;
  height: 50px;
  overflow: hidden;
  position: relative;
}

.marquee p {
  color: #fff;
  font-size: 15px;
  line-height: 55px;
  white-space: nowrap;
}

.marquee p a {
  color: #fff;
  text-decoration: none;
}

/* Remove underline from all links */
a {
  text-decoration: none;
}

/* Optional: Remove underline only from specific links */
.no-underline {
  text-decoration: none;
}

/* Kurmaiah International Sales & Services - Fancy Font */
.kurmaiah-text {
  font-family: 'Jost', sans-serif !important;
  font-size: 18px !important;  /* Adjust size to fit */
  font-weight: bold !important;
  letter-spacing: 0.2px;  /* Slight spacing for readability */
  white-space: nowrap;  /* Prevents text from breaking into multiple lines */
  overflow: hidden;  /* Ensures no unwanted text wrapping */
  text-overflow: ellipsis;  /* Optional: Adds "..." if text overflows */
}

/* Chaitanya Holdings - Professional Font */
.chaitanya-text {
  font-family: 'Oswald', sans-serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px;
}

/* Blinking Text Animation */
@keyframes blinkColors {
  0% { color: #ff4d4d; }   /* Soft Red */
  33% { color: #3399ff; }  /* Soft Blue */
  66% { color: #ffcc00; }  /* Soft Yellow */
  100% { color: #ff4d4d; } /* Back to Soft Red */
}

.blinking-text {
  animation: blinkColors 2s infinite ease-in-out !important;
  font-weight: bold;
  display: inline-block;
  will-change: color;
}

/* Ensure the blinking effect applies to links */
.blinking-text a {
  color: inherit !important; /* Keeps animation colors */
  text-decoration: none !important;
}
