

.parent {
    display: flex;
    justify-content: center;  /* Centers horizontally */
    align-items: center;      /* Centers vertically */
    height: 100vh;            /* Full height for centering */
}
.parent2 {
    display: flex;
    justify-content: center;  /* Centers horizontally */
    align-items: center;      /* Centers vertically */
}
.text-container {
    font-weight: bold;
    font-size: 40px;
}


/* navbar */

/* Modernized Navbar CSS */
.navbar {
    background: linear-gradient(45deg, #0f2027, #203a43, #2c5364);
    box-shadow: 0 4px 10px rgba(0, 255, 255, 0.3);
    padding: 15px 20px;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #00e1ff !important;
    transition: transform 0.3s ease-in-out;
}

.navbar-brand:hover {
    transform: scale(1.1);
}

.navbar-nav .nav-link {
    color: #ddd !important;
    font-size: 1rem;
    margin-right: 15px;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #00e1ff !important;
    transform: scale(1.1);
}

.navbar-toggler {
    border: none;
    outline: none;
    background: transparent;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* Dropdown Styling */
.dropdown-menu {
    background-color: #1b2838;
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 255, 255, 0.3);
    border-radius: 10px;
}

.dropdown-item {
    color: #ddd !important;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.dropdown-item:hover {
    background: #00e1ff !important;
    color: #121212 !important;
}


/* global */
/* Global button styling */
button, .btn {
    background: linear-gradient(45deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

button:hover, .btn:hover {
    background: linear-gradient(45deg, #203a43, #2c5364, #0f2027);
    transform: scale(1.05);
}

/* Apply gradient border to all input fields */
input, textarea, select {
    border: 2px solid transparent;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 5px rgba(0, 255, 255, 0.3);
}

input:focus, textarea:focus, select:focus {
    border-image: linear-gradient(45deg, #0f2027, #203a43, #2c5364) 1;
    box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.6);
}

.form-select
{
    
    border: 2px solid transparent;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 5px rgba(0, 255, 255, 0.3);
}

.form-select:focus
{
    background-color:linear-gradient(45deg, #0f2027, #203a43, #2c5364);
}

/* Style the select dropdown */


/* Focus state - applies when dropdown is clicked */
.form-select:focus {
    background: linear-gradient(45deg, #203a43, #2c5364);
    border: 2px solid #0f2027;
    color: white;
    outline: none;
}

/* Change dropdown arrow */
.form-select {
    appearance: none; /* Hide default dropdown */
    -webkit-appearance: none; /* Safari & Chrome */
    -moz-appearance: none; /* Firefox */
    padding-right: 30px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="white" d="M2 5l6 6 6-6H2z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

/* Style the options inside the dropdown */
.form-select option {
    background-color:#1b2838;
    color: white;
    font-size: 16px;
}

/* Hover effect on dropdown options */
.form-select option:hover {
    background: linear-gradient(45deg, #2c5364, #203a43);
}


/* If you want a more defined gradient border */
.gradient-border {
    border: 2px solid;
    border-image-source: linear-gradient(45deg, #0f2027, #203a43, #2c5364);
    border-image-slice: 1;
}

/* Dark Theme - Apply to Full Body */
body {
    background : linear-gradient(45deg, #0f2027, #203a43, #2c5364);
    color: #000000; /* Light text */
}

.heading {
    background: linear-gradient(45deg, #0f2027, #203a43, #2c5364);
    /* -webkit-background-clip: text; */
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    text-align: center;
}

