﻿body{
margin:0;
font-family:Segoe UI;
background:#0f0f0f;
color:white;
}

/* HEADER */

.main-header{
background:#111;
padding:15px 0;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.6);
}

.container{
width:90%;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo h2{
margin:0;
color:#C69F54;
font-weight:600;
}

/* NAV */

.nav-menu ul{
display:flex;
gap:30px;
list-style:none;
margin:0;
padding:0;
}

.nav-menu ul li a{
text-decoration:none;
color:#ddd;
font-size:16px;
transition:0.3s;
}

.nav-menu ul li a:hover{
color:#C69F54;
}

/* BUTTONS */

.auth-buttons{
display:flex;
gap:12px;
}

.btn-login{
padding:8px 18px;
border:1px solid #FFD700;
border-radius:30px;
color:#FFD700;
text-decoration:none;
transition:0.3s;
}

.btn-login:hover{
background:#FFD700;
color:#000;
}

.btn-register{
padding:8px 20px;
border-radius:30px;
background:#FFD700;
color:#000;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.btn-register:hover{
background:#e5b96a;
}

/* MOBILE MENU */

.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}

/* FOOTER */

.main-footer{
background:#111;
margin-top:80px;
padding:50px 0 20px;
}

.footer-container{
width:90%;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.footer-col h3{
color:#C69F54;
margin-bottom:15px;
}

.footer-col p{
color:#aaa;
line-height:1.6;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:8px;
}

.footer-col ul li a{
text-decoration:none;
color:#aaa;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#C69F54;
}

.footer-bottom{
text-align:center;
margin-top:30px;
padding-top:15px;
border-top:1px solid #333;
color:#777;
}

/* RESPONSIVE */

@media(max-width:900px){

.nav-menu{
display:none;
position:absolute;
top:70px;
left:0;
background:#111;
width:100%;
}

.nav-menu ul{
flex-direction:column;
padding:20px;
gap:15px;
}

.menu-toggle{
display:block;
}

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.auth-buttons{
display:none;
}

}


.logo img{
height:70px;
width:auto;
display:block;
}

/* Tablet */
@media(max-width:992px){
.logo img{
height:48px;
}
}

/* Mobile */
@media(max-width:600px){
.logo img{
height:40px;
}
}



/*video Section*/


/* HERO VIDEO SECTION */

.hero-section{
width:100%;
height:100vh;
overflow:hidden;
position:relative;
}

/* VIDEO */

.hero-video{
width:100%;
height:83%;
object-fit:cover;
display:block;
}

/* Tablet */

@media (max-width:992px){

.hero-section{
height:80vh;
}

}

/* Mobile */

@media (max-width:600px){

.hero-section{
height:60vh;
}

}

/*About Us*/

.about-section{
padding:100px 0;
background:#0f0f0f;
color:white;
}

.about-container{
width:90%;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:60px;
}

/* IMAGE AREA */

/* SECTION */
.about-section{
    padding:100px 20px;
    background:#0b0b0f;
    color:#fff;
    overflow:hidden;
}

/* CONTAINER */
.about-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    flex-wrap:wrap;
}

/* IMAGE AREA */
.about-images{
    position:relative;
    width:500px;
    height:420px;
}

/* IMAGE BOX */
.img-box{
    position:absolute;
    width:280px;
    height:340px;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.6);
    transition:all .4s ease;
}

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

/* IMAGE POSITIONS (OVERLAY STYLE) */
.img1{
    top:0;
    left:0;
    z-index:2;
}

.img2{
    bottom:0;
    right:0;
}

/* HOVER EFFECT */
.img-box:hover{
    transform:scale(1.05) translateY(-10px);
    box-shadow:0 25px 70px rgba(0,0,0,0.8);
}

/* CONTENT */
.about-content{
    max-width:520px;
}

.about-content h2{
    font-size:36px;
    margin-bottom:20px;
}

.about-content p{
    font-size:16px;
    line-height:1.7;
    color:#cfcfcf;
    margin-bottom:20px;
}

/* BUTTON */
.about-btn{
    display:inline-block;
    padding:12px 28px;
    background:#FFD700;
    color:black;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    background:rgb(229, 185, 106);
}

/* TABLET */
@media (max-width:992px){

.about-container{
    flex-direction:column;
    text-align:center;
}

.about-images{
    width:100%;
    height:auto;
    display:flex;
    justify-content:center;
    gap:20px;
}

.img-box{
    position:relative;
    width:45%;
    height:260px;
}

}

/* MOBILE */
@media (max-width:576px){

.about-images{
    flex-direction:column;
    align-items:center;
}

.img-box{
    width:90%;
    height:240px;
}

.about-content h2{
    font-size:28px;
}

}

.hxtext
{
    color:#FFD700;
}


/*Listing Styles*/

.feature-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px 40px;
    list-style:none;
    padding:0;
}

.feature-list li{
    font-size:16px;
    color:#ddd;
    position:relative;
    padding-left:22px;
}

/* custom bullet */
.feature-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#FFD700;
    font-weight:bold;
}

/* Mobile Responsive */
@media(max-width:600px){
    .feature-list{
        grid-template-columns:1fr;
    }
}



/*Coin Ticker*/ 

/* COIN TICKER SECTION */
.coin-ticker{
    background:#000;
    padding:20px 0;
    overflow:hidden;
}

/* Ticker Box */
.coin-ticker-box{
    width:100%;
    overflow:hidden;
    position:relative;
}

/* Scrolling Container */
.scrolling-ticker-box{
    display:flex;
    width:200%;
    animation:scrollTicker 30s linear infinite;
}

/* Content */
.scrolling-content{
    display:flex;
    align-items:center;
    gap:40px;
    white-space:nowrap;
}

/* Each Item */
.scrolling-item{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:15px;
    font-weight:500;
}

/* Icon */
.icon-box{
    width:28px;
    height:28px;
}

.icon-box img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* Animation */
@keyframes scrollTicker{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* Responsive */
@media(max-width:768px){

.scrolling-content{
    gap:25px;
}

.scrolling-item{
    font-size:13px;
}

.icon-box{
    width:22px;
    height:22px;
}

}


/*Why Choose use section*/ 

/* SECTION */
.why-section{
    padding:100px 20px;
    background:#0b0b0f;
    color:#fff;
}

/* CONTAINER */
.why-section .container{
    max-width:1200px;
    margin:auto;
}

/* HEADING CENTER */
.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:40px;
    font-weight:700;
    position:relative;
    display:inline-block;
}

/* underline effect */
.section-title h2:after{
    content:'';
    width:70px;
    height:3px;
    background:#FFD700;
    display:block;
    margin:12px auto 0;
    border-radius:3px;
}

/* GRID */
.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* CARD */
.why-card{
    background:#121218;
    padding:35px 25px;
    border-radius:12px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.05);
    transition:all .4s ease;
}

/* ICON */
.why-card .icon{
    font-size:40px;
    margin-bottom:15px;
}

/* TITLE */
.why-card h3{
    font-size:18px;
    margin-bottom:10px;
}

/* TEXT */
.why-card p{
    font-size:14px;
    color:#aaa;
    line-height:1.6;
}

/* HOVER */
.why-card:hover{
    transform:translateY(-10px);
    border-color:#FFD700;
    box-shadow:0 15px 40px #FFD70096;
}

/* TABLET */
@media(max-width:992px){

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */
@media(max-width:576px){

.section-title h2{
    font-size:28px;
}

.why-grid{
    grid-template-columns:1fr;
}

.why-card{
    padding:25px;
}

}


/*Bread Crumb Start*/ 


/* BREADCRUMB SECTION */
.breadcrumb-section {
    position: relative;
    background: url('../images/breadcrumb-bg.png') center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
   
}

/* DARK OVERLAY */
.breadcrumb-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
}

/* CONTAINER */
.breadcrumb-container{
    position:relative;
    max-width:1200px;
    margin:auto;
    z-index:2;
}

/* TITLE */
.page-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

/* BREADCRUMB */
.breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    font-size:16px;
}

/* LINKS */
.breadcrumb a{
    color:#00E5FF;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb a:hover{
    color:#C69F54;
}

/* ACTIVE PAGE */
.breadcrumb .active{
    color:#ddd;
}

/* RESPONSIVE */
@media(max-width:768px){

.page-title{
    font-size:30px;
}

.breadcrumb{
    font-size:14px;
}

.breadcrumb-section{
    padding:90px 20px;
}

}


/*About Section*/

.about-section{
padding:100px 0;
background:#0f0f0f;
color:white;
}

.about-container{
width:90%;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:60px;
}

/* IMAGE AREA */

.about-images{
position:relative;
height:420px;
}

.img-box{
position:absolute;
overflow:hidden;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.6);
transition:0.4s;
}

.img-box img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* Image Positions */

.img1{
width:250px;
height:300px;
top:0;
left:0;
animation:float1 6s ease-in-out infinite;
}

.img2{
width:220px;
height:260px;
bottom:0;
left:120px;
animation:float2 7s ease-in-out infinite;
}

.img3{
width:180px;
height:220px;
top:80px;
right:0;
animation:float3 5s ease-in-out infinite;
}

/* Floating Animation */

@keyframes float1{
0%,100%{transform:translateY(0)}
50%{transform:translateY(-15px)}
}

@keyframes float2{
0%,100%{transform:translateY(0)}
50%{transform:translateY(-20px)}
}

@keyframes float3{
0%,100%{transform:translateY(0)}
50%{transform:translateY(-12px)}
}

/* CONTENT */

.about-content h2{
font-size:36px;
margin-bottom:20px;
color:#fff;
}

.about-content p{
color:#ccc;
line-height:1.7;
margin-bottom:20px;
font-size:16px;
}

.about-btn{
display:inline-block;
padding:12px 28px;
background:#C69F54;
color:black;
text-decoration:none;
border-radius:30px;
font-weight:600;
transition:0.3s;
}

.about-btn:hover{
background:#e4b86a;
}

/* RESPONSIVE */

@media(max-width:992px){

.about-container{
grid-template-columns:1fr;
text-align:center;
}

.about-images{
height:380px;
margin:auto;
}

.img1{
left:40px;
}

.img2{
left:160px;
}

}

@media(max-width:600px){

.about-section{
padding:70px 0;
}

.about-content h2{
font-size:28px;
}

.about-images{
height:320px;
}

.img1{
width:200px;
height:250px;
}

.img2{
width:180px;
height:210px;
left:120px;
}

.img3{
width:150px;
height:180px;
}

}



