 body { 
    font-family: 'Inter', sans-serif; 
    background-color: #f8fafc; /* Slate-50 */
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #5325b4;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo1 {
    text-decoration: none;
    display: flex;
    align-items: center;
    order: 1;
}

.logo1 img {
    height: 40px;
    width: auto;
}

#menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    order: 3;
}

.navbar1 {
    display: flex;
    align-items: center;
    gap: 2rem;
    order: 2;
}

.navbar1 > a {
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar1 > a:hover {
    color: #A49AF7;
}

#myUL {
    list-style: none;
    margin: 0;
    padding: 0;
}

#myUL > li {
    display: inline-block;
    position: relative;
    cursor: pointer;
    color: var(--bg-color);
    font-weight: 500;
}

#myUL > li > span {
    margin-left: 5px;
}

#myUL > li.active > span {
    transform: rotate(180deg);
}

.nested {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 180px;
    margin-top: 10px;
    list-style: none;
    z-index: 100;
}

#myUL > li.active .nested {
    display: block;
}

.nested li {
    display: block;
    padding: 0.5rem 1.5rem;
}

.nested a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
}

.nested a:hover {
    color: #5325b4;
}

.btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}  

/* Login Forms */
.login-form-container,
.login-form-container11 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.login-form-container.active,
.login-form-container11.active {
    display: flex;
}

.login-form-container form,
.login-form-container11 form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    position: relative;
}

.login-form-container .fas,
.login-form-container11 .fas {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.login-form-container h3,
.login-form-container11 h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}
        
/* Subtle Gradient Animation for Hero */
.hero-bg {
    background: #5325b4;;
    position: relative;
    overflow: hidden;
}
        
/* Job Card Hover Effect */
.job-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    border-color: #6366f1;
}

/* Filter Button Active State */
.filter-btn.active {
    background-color: #4f46e5; /* brand-600 */
    color: white;
    border-color: #4f46e5;
}

/* Fade Animation for filtering */
.fade-in {
    animation: fadeIn 0.4s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CTA Section */
.containerxx0{
	width: 55%;
	padding: 0px 0px 60px 0px;
	text-align: center;
    align-items: center;
	background-image: url(../pictures/background.png);
	box-shadow: 10px 10px 25px rgba(1, 1, 1, .5);
	border-radius: 20px;
	position: relative;
	z-index: 9;
	top: 5rem; left: 18rem; right: 0rem;
}

.containerxx0 h1{
	font-size: 3rem;
    padding-top: 3rem;
	width: 100%;
}

.containerxx0 p{
	font-size: 2rem;
	font-weight: 600;
	width: 100%;
	padding: 2rem 0rem;
}

/* Footer */
.mainback {
    background: #5325b4;
    color: white;
    padding: 10rem 5% 2rem 5%;
}

.low {
    /* max-width: 1400px; */
    display: flex;
    display: inline-block;
    width: 100%;
}

.logo{
	display: inline-block;
	padding: 10px 0px 0px 0px;
}

.logotext{
	display: inline-block;
	font-size: 1.8em;
	color: #fff;
	padding: 0px 45px 0px 0px;
}

.logotext a img{
	width: 35%;
}

.logotext a {
	font-size: 1em;
	color: #fff;
}

.logo2{
	display: inline-block;
	padding: 0px 0px 0px 12rem;
}

.logotext2{
	display: inline-block;
	font-size: 1.8em;
	color: #fff;
	padding: 0px 5px 0px 0px;
}

.logotext2 a {
	font-size: 1em;
	padding-top: 0px;
	color: #fafafa;
}

.logotext2 p {
	font-size: 0.6em;
	padding-top: 0px;
	padding-bottom: 18px;
	color: #fff;
}

.low{
	background-color: var(--second-color); 
	color: white;
	width: 100%; 
	display: inline-block;
	margin: 20px 0px;
	padding: 20px 0px 0px 30px;
	font-size: 1.5rem;
}

.low2{
	display: inline-block;	
	color: #fff;
	font-size: 0.5rem;
	font-weight: 600;
	text-align: left;
	vertical-align: top;
	padding: 20px 1rem 0rem 0rem;
}

.low2 a{
	text-decoration: none;
	font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.low2 :hover{	
	color:  #fff;
}

.line{
	padding: 20px 0px 20px 0px;
	border-bottom: 0.2px groove rgb(118, 115, 115);
	margin: 0px 60px 0px 0px;
}

.low6{
	margin: 3rem 0rem 3rem 1rem;
	padding: 0rem;	
}

.low6 a{
	font-size: 2rem;
	color: #fff;
	padding: 1rem;
    text-decoration: none;
	margin: 0px 0px 0px 2rem;
}

.low6 a :hover{
	color: #ebe6e6;
}

.back {
    text-align: center;
    padding: 1rem 0;
    margin: 0rem 0rem 0rem 0rem;
}

.subtopic {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.8rem, 1.2vw, 1.2rem);
}



































/* Responsive grid adjustment for main features */
@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .headings {
        font-size: 4.4rem;
        font-weight: 400;
        margin-bottom: 4rem;
        color: var(--bg-color);
        text-align: left;
        float: left;
        width: 46%;
    }

    .headings p {
        font-size: 1.2rem;
        color: var(--bg-color);
        max-width: 600px;
        padding: 3rem 0rem 1rem 0rem;
    }

     .logo2 {
        display: inline-block;
        padding: 0px 0px 0px 15rem;
    }

    .low6 {
        margin: 3rem 0rem 3rem 20rem;
        padding: 0rem;
    }
}