@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");

body {
    margin: 0px !important;
    padding: 0px;
    overflow-y: auto;
    font-family: 'Poppins', sans-serif;
    background-color: black;
    overflow-x: hidden;
}

header {
    position: relative;
    height: auto; /* Keep header dynamic */
    overflow: hidden; /* Hide any overflow */
}

nav {
    width: 100%;
    height: 80px; /* Set height for the nav */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10; /* Keep nav on top */
    background-color: #333333cc;
}

header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 0;
    margin: 0;
    height: 100%;
    align-items: center; /* Align items vertically in the nav */
}

header nav ul li {
    margin-right: 20px;

}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 22px;
    padding: 0 10px;
}

header nav ul li a:hover {
    background-color: #555;
    font-size: 40px;
    border-radius: 10px;
}


header nav ul li img {
    width: 70px;
    height: auto;
    opacity: 1;
    background-color: #ffffff4f;
    padding: 10px;
    border-radius: 10px;
}

header .slider {
    overflow: hidden;
    width: 100%;
    margin-top: 0px;
}

header .slider-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

header .slider-inner .slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
    height: 600px;
}

 
header .slider-inner .slide img {
    width: 100%;
    height: 100%;
    opacity: .6;
}

.slide h1 {
    position: absolute;
top: 50%;
left: 30%;
font-size: 50px;
    color: white;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
background-color: #55555575;
    padding: 20px;
border-radius: 30px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

border-radius: 10px;}
/* ========================================================================================== */





.page{
    padding: 40px 0px 250px 30px;
}

.page h1{
    margin-left: 40%;
    color: #fff;
    font-size: 40px;
    color: rgb(218, 164, 27);
    font-weight: 900;
       background-color: #55555550;
    padding: 14px; 
width: fit-content;
border-radius: 20px;
}



.page hr{
    width: 10%;
    padding: 3px;
    border: none;
    border-radius: 10px;
    background-color: white;
    margin-left: 45%;
    display: none;
}


.page .top{
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 100px 30px;
margin-top: 50px;
}


.page .top .left {
    width: 70%;
    margin-left: 1%;
}
.page .top .right{
    width: 50%;
    margin-right: 5%;
}


.page .top .right{
font-size: 20px;
color: #fff;
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 40px;
    }

    .page .top .right h2{
        font-size: 35px;
        color: rgb(218, 164, 27);
        font-weight: 900;
           background-color: #555;
        padding: 10px; 
    width: fit-content;
border-radius: 20px;
}


    .page .top .right p{
    font-size: 15px;
    color: #fff;
    opacity: .5;
        }


.page .contnet{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    padding: 30px 80px;
    margin-left: 30px;
    margin-top: 100px;
}




.container {
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.gallery {
  max-width: 600px;
  margin: auto;
}
.gallery .big-img {
  width: 600px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 20px;
  opacity: 1;
  transition: opacity 0.8s ease-in-out; /* Adding fade transition */
}
.fade-out {
  opacity: 1; /* Hide the image */
}
.gallery .small-img {
  width: 12%;
  height: 100px;
  opacity: 0.4;
  border-radius: 20px;
  cursor: pointer;
  transition: opacity 0.1s ease;
}

.small-img-card{
    width: 1200px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;

}
.small-img.active {
  opacity: 1;
}




/* ========================================================================================== */


.footer{
    background:#55555580;
    padding:30px 0px;
    font-family: 'Play', sans-serif;
    text-align:center;
    }
    
    .footer .row{
    width:100%;
    margin:1% 0%;
    padding:0.6% 0%;
    color:gray;
    font-size:0.8em;
    }
    

    .footer .row a{
    text-decoration:none;
    color:gray;
    transition:0.5s;
    font-size: 20px;
    font-weight: 900;
    }
    
    .footer .row a:hover{
    color:#fff;
    }
    
    .footer .row ul{
    width:100%;
    }
    
    .footer .row ul li{
    display:inline-block;
    margin:0px 30px;
    }
    
    .footer .row a i{
    font-size:2em;
    margin:0% 1%;
    color: #fff;
    }
    





    
    @media(min-width:768px) and (max-width:1200px){
       
        body{
            margin: 0px !important;
            overflow-y: auto;
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        width: 100% !important;
        }


        body, html {
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden; /* Ensures no horizontal scrolling */
        }
        


        * {
            box-sizing: border-box;
        }
        


        header {
            position: relative;
            height: auto; /* Keep header dynamic */
            overflow: hidden; /* Hide any overflow */
            overflow: hidden;

        }
        
        nav {
            overflow: hidden;

            width: 110%;
            height: 10%; /* Set height for the nav */
            position: fixed;
            top: 0;
            left: 0;
            z-index: 10; /* Keep nav on top */
            background-color: #333333cc;
            margin-left: -4%;
            margin-right: 30%;
        }
        
        header nav ul {
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4%;
            padding: 0;
            margin-left:3%;
            height: 100%;
            align-items: center; /* Align items vertically in the nav */
        }
        
        header nav ul li {
            margin-right: 0px;
            margin-left: 0px;
        
        }
        
        header nav ul li a {
            text-decoration: none;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 20px;
            padding: 0 0px;
        }
        
        header nav ul li a:hover {
            background-color: #555;
        }
        
        header nav ul li img {
            width: 90px;
            height: auto;
            opacity: 1;
            background-color: #ffffff4f;
            padding: 10px;
            border-radius: 10px;
        }
        
        header .slider {
            overflow: hidden;
            width: 100%;
            margin-top: 0px;
        }
        
        header .slider-inner {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        header .slider-inner .slide {
            min-width: 100%;
            box-sizing: border-box;
            position: relative;
            height: 600px;
        }
        
         
        header .slider-inner .slide img {
            width: 100%;
            height: 70%;
            opacity: .6;
        }
        
        .slide h1 {
            position: absolute;
        top: 30%;
        left: 30%;
        font-size: 40px;
            color: white;
            text-transform: uppercase;
            font-family: 'Poppins', sans-serif;
        background-color: #55555575;
            padding: 20px;
        border-radius: 30px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        
        border-radius: 10px;}





.page{
    padding: 10px 0px 10px 30px;
    margin-top: -10%;
}

.page h1{
    margin-left:15%;
    color: #fff;
    font-size: 30px;
    color: rgb(218, 164, 27);
    font-weight: 800;
    padding: 10px; 
width: fit-content;
border-radius: 20px;
}



.page hr{
    width: 20%;
    padding: 3px;
    border: none;
    border-radius: 10px;
    background-color: white;
    margin-left: 35%;
}


.page .top{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 30px 50px 10px;
margin-top: 15%;
}


.page .top .left {
    width: 100%;
    margin-left: 1%;
order: 2; 
padding: 10%;

}
.page .top .right{
    width: 100%;
order: 1; 
    margin-right: 5%;
}


.page .top .right{
font-size: 20px;
color: #fff;
display: flex;
flex-direction: column;
gap: 10px;
margin-top: -10%;

order: 1; 
    }

    .page .top .right h2{
        font-size: 20px;
        color: rgb(218, 164, 27);
        font-weight: 900;
        padding: 10px; 
    width: fit-content;
border-radius: 20px;
display: none;}


    .page .top .right p{
    font-size: 14px;
    color: #fff;
    opacity: .5;
        }


.page .contnet{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 30px 80px;
    margin-left: 30px;
    margin-top: -100px;
}




.container {
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  
}


.gallery {
  max-width: 100%;
  height: auto;
  margin: auto;
}
.gallery .big-img {
    margin-left: -14%;
  width: 120%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 20px;
  opacity: 1;
  transition: opacity 0.8s ease-in-out; /* Adding fade transition */
}
.fade-out {
  opacity: 1; /* Hide the image */
}
.gallery .small-img {
  width: 23%;
  height: auto;
  opacity: 0.4;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.1s ease;
}

.small-img-card{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;

}
.small-img.active {
  opacity: 1;
}





/* ========================================================================================================== */



.footer{
    background:#55555580;
    padding:30px 0px;
    font-family: 'Play', sans-serif;
    text-align:center;
    }
    
    .footer .row{
    width:100%;
    margin:1% 0%;
    padding:0.6% 0%;
    color:gray;
    font-size:0.8em;
    }
    

    .footer .row a{
    text-decoration:none;
    color:gray;
    transition:0.5s;
    font-size: 20px;
    font-weight: 900;
    }
    
    .footer .row a:hover{
    color:#fff;
    }
    
    .footer .row ul{
    width:100%;
    }
    
    .footer .row ul li{
    display:inline-block;
    margin:0px 30px;
    }
    
    .footer .row a i{
    font-size:2em;
    margin:0% 1%;
    color: #fff;
    }
    
    @media (max-width:720px){
    .footer{
    text-align:left;
    padding:5%;
    }
    .footer .row ul li{
    display:block;
    margin:10px 0px;
    text-align:left;
    }
    .footer .row a i{
    margin:0% 3%;
    }
    }
    

}






    
    @media(min-width:480px) and (max-width:768px){
       
        body{
            margin: 0px !important;
            overflow-y: auto;
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        width: 100% !important;
        }


        body, html {
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden; /* Ensures no horizontal scrolling */
        }
        


        * {
            box-sizing: border-box;
        }
        


        header {
            position: relative;
            height: auto; /* Keep header dynamic */
            overflow: hidden; /* Hide any overflow */
            overflow: hidden;

        }
        
        nav {
            overflow: hidden;

            width: 110%;
            height: 6%; /* Set height for the nav */
            position: fixed;
            top: 0;
            left: 0;
            z-index: 10; /* Keep nav on top */
            background-color: #333333cc;
            margin-left: -4%;
            margin-right: 30%;
        }
        
        header nav ul {
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4%;
            padding: 0;
            margin-left:3%;
            height: 100%;
            align-items: center; /* Align items vertically in the nav */
        }
        
        header nav ul li {
            margin-right: 0px;
            margin-left: 0px;
        
        }
        
        header nav ul li a {
            text-decoration: none;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 12px;
            padding: 0 0px;
        }
        
        header nav ul li a:hover {
            background-color: #555;
        }
        
        header nav ul li img {
            width: 60px;
            height: auto;
            opacity: 1;
            background-color: #ffffff4f;
            padding: 10px;
            border-radius: 10px;
        }
        
        header .slider {
            overflow: hidden;
            width: 100%;
            margin-top: 0px;
        }
        
        header .slider-inner {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        header .slider-inner .slide {
            min-width: 100%;
            box-sizing: border-box;
            position: relative;
            height: 600px;
        }
        
         
        header .slider-inner .slide img {
            width: 100%;
            height: 50%;
            opacity: .6;
        }
        
        .slide h1 {
            position: absolute;
        top: 20%;
        left: 25%;
        font-size: 20px;
            color: white;
            text-transform: uppercase;
            font-family: 'Poppins', sans-serif;
        background-color: #55555575;
            padding: 20px;
        border-radius: 30px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        
        border-radius: 10px;}





.page{
    padding: 20px 0px 10px 30px;
    margin-top: -40%;
}

.page h1{
    margin-left:15%;
    color: #fff;
    font-size: 30px;
    color: rgb(218, 164, 27);
    font-weight: 800;
    padding: 10px; 
width: fit-content;
border-radius: 20px;
}



.page hr{
    width: 20%;
    padding: 3px;
    border: none;
    border-radius: 10px;
    background-color: white;
    margin-left: 35%;
}


.page .top{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 40px 50px 40px;
margin-top: 15%;
}


.page .top .left {
    width: 100%;
    margin-left: 1%;
order: 2; 

}
.page .top .right{
    width: 100%;
order: 1; 
    margin-right: 5%;
}


.page .top .right{
font-size: 20px;
color: #fff;
display: flex;
flex-direction: column;
gap: 10px;
margin-top: -10%;

order: 1; 
    }

    .page .top .right h2{
        font-size: 20px;
        color: rgb(218, 164, 27);
        font-weight: 900;
        padding: 10px; 
    width: fit-content;
border-radius: 20px;
display: none;}


    .page .top .right p{
    font-size: 10px;
    color: #fff;
    opacity: .5;
        }


.page .contnet{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 30px 80px;
    margin-left: 30px;
    margin-top: -100px;
}




.container {
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}


.gallery {
  max-width: 90%;
  height: auto;
  margin: auto;
}
.gallery .big-img {
    margin-left: -14%;
  width: 120%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 20px;
  opacity: 1;
  transition: opacity 0.8s ease-in-out; /* Adding fade transition */
}
.fade-out {
  opacity: 1; /* Hide the image */
}
.gallery .small-img {
  width: 20%;
  height: auto;
  opacity: 0.4;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.1s ease;
}

.small-img-card{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;

}
.small-img.active {
  opacity: 1;
}





/* ========================================================================================================== */



.footer{
    background:#55555580;
    padding:30px 0px;
    font-family: 'Play', sans-serif;
    text-align:center;
    }
    
    .footer .row{
    width:100%;
    margin:1% 0%;
    padding:0.6% 0%;
    color:gray;
    font-size:0.8em;
    }
    

    .footer .row a{
    text-decoration:none;
    color:gray;
    transition:0.5s;
    font-size: 20px;
    font-weight: 900;
    }
    
    .footer .row a:hover{
    color:#fff;
    }
    
    .footer .row ul{
    width:100%;
    }
    
    .footer .row ul li{
    display:inline-block;
    margin:0px 30px;
    }
    
    .footer .row a i{
    font-size:2em;
    margin:0% 1%;
    color: #fff;
    }
    
    @media (max-width:720px){
    .footer{
    text-align:left;
    padding:5%;
    }
    .footer .row ul li{
    display:block;
    margin:10px 0px;
    text-align:left;
    }
    .footer .row a i{
    margin:0% 3%;
    }
    }
    

}




  
    

    @media(min-width:0px) and (max-width:480px){
       
        body{
            margin: 0px !important;
            overflow-y: auto;
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        width: 100% !important;
        }


        body, html {
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden; /* Ensures no horizontal scrolling */
        }
        


        * {
            box-sizing: border-box;
        }
        


        header {
            position: relative;
            height: auto; /* Keep header dynamic */
            overflow: hidden; /* Hide any overflow */
            overflow: hidden;

        }
        
        nav {
            overflow: hidden;

            width: 110%;
            height: 6%; /* Set height for the nav */
            position: fixed;
            top: 0;
            left: 0;
            z-index: 10; /* Keep nav on top */
            background-color: #333333cc;
            margin-left: -4%;
            margin-right: 30%;
        }
        
        header nav ul {
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4%;
            padding: 0;
            margin-left:3%;
            height: 100%;
            align-items: center; /* Align items vertically in the nav */
        }
        
        header nav ul li {
            margin-right: 0px;
            margin-left: 0px;
        
        }
        
        header nav ul li a {
            text-decoration: none;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 12px;
            padding: 0 0px;
        }
        
        header nav ul li a:hover {
            background-color: #555;
        }
        
        header nav ul li img {
            width: 60px;
            height: auto;
            opacity: 1;
            background-color: #ffffff4f;
            padding: 10px;
            border-radius: 10px;
        }
        
        header .slider {
            overflow: hidden;
            width: 100%;
            margin-top: 0px;
        }
        
        header .slider-inner {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        header .slider-inner .slide {
            min-width: 100%;
            box-sizing: border-box;
            position: relative;
            height: 600px;
        }
        
         
        header .slider-inner .slide img {
            width: 100%;
            height: 50%;
            opacity: .6;
        }
        
        .slide h1 {
            position: absolute;
        top: 20%;
        left: 25%;
        font-size: 20px;
            color: white;
            text-transform: uppercase;
            font-family: 'Poppins', sans-serif;
        background-color: #55555575;
            padding: 20px;
        border-radius: 30px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        
        border-radius: 10px;}





.page{
    padding: 10px 0px 10px 30px;
    margin-top: -70%;
}

.page h1{
    margin-left:13%;
    color: #fff;
    font-size: 30px;
    color: rgb(218, 164, 27);
    font-weight: 800;
    padding: 10px; 
width: fit-content;
border-radius: 20px;
}



.page hr{
    width: 20%;
    padding: 3px;
    border: none;
    border-radius: 10px;
    background-color: white;
    margin-left: 35%;
}


.page .top{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 30px 50px 10px;
margin-top: 50px;
}


.page .top .left {
    width: 100%;
    margin-left: 1%;
order: 2; 

}
.page .top .right{
    width: 100%;
order: 1; 
    margin-right: 5%;
}


.page .top .right{
font-size: 20px;
color: #fff;
display: flex;
flex-direction: column;
gap: 10px;
margin-top: -10%;

order: 1; 
    }

    .page .top .right h2{
        font-size: 20px;
        color: rgb(218, 164, 27);
        font-weight: 900;
        padding: 10px; 
    width: fit-content;
border-radius: 20px;
display: none;
}


    .page .top .right p{
    font-size: 10px;
    color: #fff;
    opacity: .5;
        }


.page .contnet{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 30px 80px;
    margin-left: 30px;
    margin-top: -100px;
}




.container {
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}


.gallery {
  max-width: 90%;
  height: auto;
  margin: auto;
}
.gallery .big-img {
    margin-left: -14%;
  width: 120%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 20px;
  opacity: 1;
  transition: opacity 0.8s ease-in-out; /* Adding fade transition */
}
.fade-out {
  opacity: 1; /* Hide the image */
}
.gallery .small-img {
  width: 22%;
  height: auto;
  opacity: 0.4;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.1s ease;
}

.small-img-card{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;

}
.small-img.active {
  opacity: 1;
}





/* ========================================================================================================== */



.footer{
    background:#55555580;
    padding:30px 0px;
    font-family: 'Play', sans-serif;
    text-align:center;
    }
    
    .footer .row{
    width:100%;
    margin:1% 0%;
    padding:0.6% 0%;
    color:gray;
    font-size:0.8em;
    }
    

    .footer .row a{
    text-decoration:none;
    color:gray;
    transition:0.5s;
    font-size: 20px;
    font-weight: 900;
    }
    
    .footer .row a:hover{
    color:#fff;
    }
    
    .footer .row ul{
    width:100%;
    }
    
    .footer .row ul li{
    display:inline-block;
    margin:0px 30px;
    }
    
    .footer .row a i{
    font-size:2em;
    margin:0% 1%;
    color: #fff;
    }
    
    @media (max-width:720px){
    .footer{
    text-align:left;
    padding:5%;
    }
    .footer .row ul li{
    display:block;
    margin:10px 0px;
    text-align:left;
    }
    .footer .row a i{
    margin:0% 3%;
    }
    }
    

}