*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#111;
    color:white;
}

header{
    background:#8B0000;
    padding:15px 50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo-section{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-section img{
    width:70px;
    height:70px;
    border-radius:50%;
}

.logo-section h1{
    font-size:28px;
    color:white;
}

nav ul{
    list-style:none;
    display:flex;
    gap:25px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

nav ul li a:hover{
    color:#ff4d4d;
}

.slider{
    width:100%;
    height:500px;
    overflow:hidden;
    position:relative;
}

.slide{
    width:100%;
    height:500px;
    position:absolute;
    animation:slideShow 15s infinite;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

@keyframes slideShow{
    0%{opacity:1;}
    33%{opacity:0;}
    66%{opacity:0;}
    100%{opacity:1;}
}

.container{
    width:90%;
    margin:auto;
    padding:50px 0;
}

.section-title{
    text-align:center;
    font-size:40px;
    margin-bottom:40px;
    color:#ff4d4d;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    transition:0.4s;
}

.gallery img:hover{
    transform:scale(1.05);
}

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

.card{
    background:#1a1a1a;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 0 15px rgba(255,0,0,0.3);
    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.card-content h3{
    color:#ff4d4d;
    margin-bottom:10px;
}

.card-content p{
    line-height:1.6;
}

.filter-bar{
    text-align:center;
    margin-bottom:30px;
}

.filter-bar input,
.filter-bar select{
    padding:12px;
    width:250px;
    border:none;
    border-radius:10px;
    margin:10px;
}

.pagination{
    margin-top:40px;
    text-align:center;
}

.pagination a{
    color:white;
    background:#8B0000;
    padding:10px 18px;
    text-decoration:none;
    margin:5px;
    border-radius:8px;
}

.video-card iframe{
    width:100%;
    height:250px;
    border:none;
}

footer{
    background:#8B0000;
    text-align:center;
    padding:20px;
    margin-top:50px;
}