
* {
    margin: 0;
    padding: 0;
    -moz-box-sizing: content-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}


header {
    background-color: #040234;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: relative;
}

header .logo img {
    max-width: 100%;
    height: auto;
}
 

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
 
header nav ul li a {
    color: white; 
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
 
header nav ul li a:hover {
    color: #6c5ce7; 
}

nav {
    
    text-align: center;
    padding-top: 60px;
    
}

.textnav {
    color: white;
}
 
/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
 
/* Search Bar */
.search {
    padding-top: 25px;

}

.textsearch {
    color: white;
    text-align:left;
}

 
/* Filter Buttons */
.filter-container {
    text-align: center;
    margin-bottom: 20px;
}
 
.filter-btn {
    padding: 10px 20px;
    background-color: #6c5ce7;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    transition: background-color 0.3s ease;
}

 
.filter-btn:hover {
    background-color: #5a4bb7;
}
 
/* Cards */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
 
.card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}
 
.card:hover {
    transform: translateY(-5px);
}
 
.card img {
    width: 100%;
    height: auto;
}
 
.card-content {
    padding: 10px;
}
 
.card h2 {
    color: #2d3e50;
    font-size: 1.5em;
    margin-bottom: 15px;
}
 
.card p {
    color: #666;
    font-size: 1em;
    margin-bottom: 15px;
    line-height: 1.4;
}
 
 
.card a {
    display: inline-block;
    color: #6c5ce7;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    position: relative;
}
 
.card a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #a29bfe;
    transition: width 0.3s ease;
}
 
.card a:hover::after {
    width: 100%;
}
 

footer{
    background-color: #040234;
    color: white;
    height: 120px;
    display: flex;
    text-align: center;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.footertext {
    font-family: Arial, sans-serif;
    font-weight: bold;
    margin-top: auto;
    margin-bottom: auto;
    margin-left:15px ;
}

.logo_footer {
    margin-top: auto;
    margin-bottom: auto;
}

.imgfooter{
    margin-top: auto;
    margin-bottom: auto;
    margin-left:auto;
    margin-right: 15px;
}