*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Helvetica Neue',Arial,sans-serif;
overflow-x:hidden;
background:black;
color:#f5f5f5;
}

img,video{
max-width:100%;
height:auto;
display:block;
}


#HomeBackground{
position:fixed;
inset:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
pointer-events:none;
}



.navbar{
position:fixed;
top:20px;
width:100%;
display:flex;
justify-content:center;
z-index:1000;
}

.navbar-container{
width:90%;
max-width:1200px;
display:flex;
justify-content:space-between;
align-items:center;
padding:1.2rem 2.5rem;
background:rgba(10,10,40,0.35);
backdrop-filter:blur(20px);
border-radius:50px;
border:1px solid rgba(255,255,255,0.15);
}

.navbar-logo{
font-size:1.7rem;
font-weight:700;
letter-spacing:1px;
color:yellow;
text-decoration:underline;
font-family:Georgia,'Times New Roman',Times,serif;
}

.navbar-menu{
display:flex;
gap:2rem;
list-style:none;
}

.navbar-menu a{
text-decoration:underline;
color:yellow;
text-transform:uppercase;
letter-spacing:1.5px;
font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
font-size:1.05rem;
}



.hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
}

.hamburger span{
width:25px;
height:3px;
background:yellow;
border-radius:3px;
}



.MainHead{
min-height:85vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
font-family:Georgia,'Times New Roman',Times,serif;
opacity:0;
animation:fadeIn 1.5s ease forwards;
}

@keyframes fadeIn{
from{
opacity:0;
transform:translateY(20px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.MainContainer h1{
font-size:clamp(3rem,7vw,6rem);
letter-spacing:8px;
text-transform:uppercase;
font-weight:800;
color:#FFD700;
text-shadow:0 0 25px rgba(255,215,0,0.4);
text-decoration:underline;
}



.about-section{
background:rgba(10,10,40,0.95);
padding:4rem 2rem 6rem;
display:flex;
justify-content:center;
}

.carousel-container{
width:fit-content;
max-width:95vw;
margin:auto;
padding:3rem;
backdrop-filter:blur(25px);
border-radius:25px;
align-items: center;
}

.carousel-container h2{
font-size:clamp(2.5rem,5vw,4rem);
letter-spacing:8px;
text-transform:uppercase;
font-weight:800;
color:#FFD700;
text-shadow:0 0 25px rgba(255,215,0,0.4);
text-decoration:underline;
text-align:center;
margin-bottom:3rem;
}


.design-carousel{
position:relative;
width:100%;
overflow:hidden;
touch-action:pan-y;
}

.carousel-track{
display:flex;
transition:transform 0.6s cubic-bezier(.77,0,.18,1);
align-items:center;
}

.carousel-slide{
min-width:100%;
flex-shrink:0;
text-align:center;
padding:1rem;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
}

.carousel-slide img{
max-height:50vh;
width:auto;
max-width:100%;
margin:0 auto;
display:block;
object-fit:contain;
}

.carousel-slide h3{
margin-top:1.5rem;
color:#FFD700;
letter-spacing:3px;
text-transform:uppercase;
font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
}



.carousel-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:3rem;
background:rgba(0,0,0,0.6);
color:#FFD700;
border:none;
padding:0.8rem 1.2rem;
cursor:pointer;
border-radius:50%;
transition:0.3s ease;
z-index:10;
}

.carousel-arrow:hover{
background:rgba(0,0,0,0.9);
transform:translateY(-50%) scale(1.1);
}

.carousel-arrow.left{
left:20px;
}

.carousel-arrow.right{
right:20px;
}


.footer {
    width: 100%;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    background: rgba(10,10,40,0.35);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-container p {
    color: yellow;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-menu a {
    color: yellow;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-menu a:hover {
    color: #FFD700;
    text-decoration: underline;
}



@media (max-width:900px){

.navbar-container{
padding:1rem 1.5rem;
}

.navbar-menu{
position:absolute;
top:90px;
left:0;
width:100%;
background:rgba(10,10,40,0.95);
backdrop-filter:blur(20px);
flex-direction:column;
align-items:center;
gap:1.5rem;
padding:2rem 0;
display:none;
border-radius:20px;
}

.navbar-menu.active{
display:flex;
}

.hamburger{
display:flex;
}

.MainHead{
min-height:65vh;
}

.MainContainer h1{
letter-spacing:5px;
}

.carousel-container{
padding:1rem;
}

.carousel-slide{
padding:1rem;
}

.carousel-slide img{
max-height:50vh;
}

.carousel-arrow{
font-size:2rem;
padding:0.5rem 0.8rem;
}

.carousel-arrow.left{
left:5px;
}

.carousel-arrow.right{
right:5px;
}


}