@font-face {
  font-family: 'Conthrax';
  src: url('../fonts/conthrax-semibold-webfont.woff2') format('woff2'),
       url('../fonts/conthrax-semibold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family:'Ubuntu Condensed';
    src:url('../fonts/UbuntuCondensed-Regular.ttf') format('ttf'),
    url('../fonts/ubuntucondensed-regular-webfont.woff2') format('woff2'),
    url('../fonts/ubuntucondensed-regular-webfont.woff') format('woff');
}@font-face{
  font-family: 'RobotoCondensed';
  src: url('../fonts/robotocondensed-italic-variablefont_wght-webfont.woff') format('woff'),
  url('../fonts/robotocondensed-variablefont_wght-webfont.woff2') format('woff2'),
  url('../fonts/robotocondensed-variablefont_wght-webfont.woff') format('woff'),
  url('../fonts/robotocondensed-variablefont_wght-webfont.woff2') format('woff2');
}
/* General body settings */
body {
  background-color: #121212; /* Darker background for a more cohesive dark theme */
  color: #e0e0e0; /* Lighter text for better readability */
  font-family: 'RobotoCOndensed',sans-serif; /* Ensure the correct font family is used */
  font-weight: 400;
  font-style: bold;
  font-size:22px;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;

}
page_content{
  z-index: 100;
}
/* Retained original h1 style */
h1 {
  font-size: 55px !important;
  font-family: 'Conthrax',sans-serif;
}
h2{
  font-size: 32px !important;
  color:#fff;
}
.card-heading{
  font-size: 24px;
  font-weight: 900;
  
}
/* Wrapper for background gradient animations */
.wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  filter: blur(300px);
  z-index: -99;
  transform: translateZ(-1px); /* Forces it to the back */
  
}




/* Gradient animation styles */
.gradient {
  position: absolute;
  border-radius: 100%;
  opacity: 0.41;
  mix-blend-mode: screen;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.4, 0.9, 0.6, 1);
}

.gradient-1 {
  background: rgb(143, 55, 237);
  width: 100%;
  height: 100%;
  animation-duration: 15s;
  opacity: 0.41;
  left: 60%;
  top: 40%;
  z-index: -2;
  animation-name: animation-gradient-1;
}

.gradient-2 {
  background: rgb(188, 53, 217);
  width: 100%;
  height: 100%;
  animation-duration: 15s;
  opacity: 0.15;
  left: 40%;
  top: 60%;
  z-index: -1;
  animation-name: animation-gradient-2;
}

.gradient-3 {
  background: rgba(34, 120, 186);
  width: 100%;
  height: 100%;
  animation-duration: 15s;
  opacity: 0.15;
  left: 50%;
  top: 50%;
  z-index: -3;
  animation-name: animation-gradient-3;
}
/* Keyframes for gradient animations */
@keyframes animation-gradient-1 {
  0% {
    transform: translateY(-50%) translateX(-50%) rotate(-20deg) translateX(20%);
  }
  50% {
    transform: translateY(-50%) translateX(-50%) rotate(180deg) translateX(25%);
  }
  100% {
    transform: translateY(-50%) translateX(-50%) rotate(340deg) translateX(20%);
  }
}

@keyframes animation-gradient-2 {
  0% {
    transform: translateY(-50%) translateX(-50%) rotate(40deg) translateX(-20%);
  }
  50% {
    transform: translateY(-50%) translateX(-50%) rotate(210deg) translateX(-35%);
  }
  100% {
    transform: translateY(-50%) translateX(-50%) rotate(400deg) translateX(-20%);
  }
}

@keyframes animation-gradient-3 {
  0% {
    transform: translateY(-50%) translateX(-50%) translateX(-15%) translateY(10%);
  }
  20% {
    transform: translateY(-50%) translateX(-50%) translateX(20%) translateY(-30%);
  }
  40% {
    transform: translateY(-50%) translateX(-50%) translateX(-25%) translateY(-15%);
  }
  60% {
    transform: translateY(-50%) translateX(-50%) translateX(30%) translateY(20%);
  }
  80% {
    transform: translateY(-50%) translateX(-50%) translateX(5%) translateY(35%);
  }
  100% {
    transform: translateY(-50%) translateX(-50%) translateX(-15%) translateY(10%);
  }
}

/* Main glowing card */
.glowing_card {
  width: 100%;
  height: auto;
  border: 2px solid #9b4dca;
  background-color: #333;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 0 10px rgba(155, 77, 202, 1);
  animation: pulse_glow 2s infinite;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform: rotateY(25deg) rotateX(-10deg); /* Default 3D rotation */
  border-radius: 3%;
}

@keyframes pulse_glow {
  0% {
    box-shadow: 0 0 10px rgba(155, 77, 202, 0.9);
  }
  50% {
    box-shadow: 0 0 20px rgba(155, 77, 202, 0.9);
  }
  100% {
    box-shadow: 0 0 10px rgba(155, 77, 202, 0.9);
  }
}

/* Hover effect: remove 3D rotation */
.glowing_card:hover {
  transform: rotateY(0deg) rotateX(0deg); /* Card becomes flat */
}
/* Navbar centering */
nav{
  z-index: 1;
}
.custom-nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Purple Accent Color */
.btn-purple {
  background-color: #9b4dca; /* Purple background */
  color: white;
  border: none;
}

/* Button hover effect */
.btn-purple:hover {
  background-color: #7e3b9d; /* Slightly darker purple on hover */
  color: white;
}

/* Form Controls */
.form-control {
  background-color: #333; /* Darker input background */
  border: 1px solid #555; /* Lighter border for contrast */
  color: #333; /* White text in input fields */
}

/* Focus State for Input Fields */
.form-control:focus {
  border-color: #9b4dca; /* Purple border on focus */
  box-shadow: 0 0 0 0.2rem rgba(129, 129, 129, 0.25); /* Soft purple glow */
}

/* Hero Section Styling */
section.py-5 {
  padding-top: 100px;
  padding-bottom: 100px;
}

h2.display-4 {
  color: #ffffff; /* White text for headers */
  font-size: 3rem;
  font-weight: bold;
}

/* Adjusting Button Sizes */
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.25rem;
  border-radius: 15px; /* Rounded button corners */
  border-color: #7e3b9d; /* Purple border on focus */
  box-shadow: 0 0 0 0.2rem rgba(155, 77, 202, 0.25); /* Soft purple glow */
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: #dcdcdc; /* Light grey text for paragraph */
}

/* Glass container for a frosted effect */
.glass_container {
  background: white;
  background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
}

/* Drop shadow effect */
.drop_shadow {
  box-shadow: 0 0 10px rgb(71, 57, 81);
}
.hover_shadow:hover{
  box-shadow: 0 0 10px #fff;
}
.light_input{
  background-color: #ffffff !important;
  color:#333;
}

/* Footer Border */
.footer_border {
  border-top: 1px solid rgba(255,255,255,0.2);
}


.text-small{
  font-size: 18px !important;
}


/* Footer link adjustments */
footer a {
  color: #d1d1d1;
  text-decoration: none;
}

footer a:hover {
  color: #9b4dca; /* Purple accent on hover */
}

/* Footer Styling */
footer {
  box-shadow: 0 0 5px rgb(71, 57, 81);
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 10px 0;
  background: linear-gradient(rgba(000,000,000,0.1), rgba(255, 255, 255, 0.05),rgba(000,000,000,0.01));
}

.underline{
  text-decoration: underline !important;
}


.form-check-input {
  width: 1.5rem;
  height: 1.5rem;
}

/* Optional: Adjust the label spacing if needed */
.form-check-label {
  font-size: 1rem;
  margin-left: 0.5rem; /* Space between checkbox and label */
}