
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&family=Poppins:wght@300;400;500&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top, #0b1c2d, #050b14 70%);
    color: #ffffff;
    overflow-x: hidden;
    padding-top: 90px;
   
   
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

.section {
    padding: 100px 10%;
    
}

.glow-text {
    color: #00eaff;
    text-shadow: 0 0 10px #00eaff, 0 0 20px #0088ff;
}

.btn-glow {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #00eaff;
    color: #00eaff;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
    margin-bottom: 20px;
    background-color: #000;
}

.btn-glow:hover {
    background: #00eaff;
    color: #000;
    box-shadow: 0 0 20px #00eaff;
}

.card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,234,255,0.3);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin: 20px 0;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0,234,255,0.4);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 10%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00eaff;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #00eaff;
}

.custom-form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem; /* Matches typical Bootstrap padding */
  font-size: 1rem;
  line-height: 1.5;
  color: #495057; /* Matches typical Bootstrap text color */
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da; /* Matches typical Bootstrap border color */
  border-radius: 0.25rem; /* Matches typical Bootstrap border radius */
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Style for when the input is focused */
.custom-form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff; /* Blue border on focus */
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); /* Blue glow on focus */
}

/* Style for placeholders */
.custom-form-control::placeholder {
  color: #6c757d;
  opacity: 1; /* Override Firefox's default opacity */
}

/* Style for disabled inputs (optional) */
.custom-form-control:disabled,
.custom-form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 5%;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 15px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }

    .nav-links a {
        margin: 10px 0;
    }

    nav.active .nav-links {
        display: flex;
    }
}
