*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'Montserrat', sans-serif;
    background:#000;
    overflow-x:hidden;
    color:#fff;
}

/* =======================
BACKGROUND EFFECT
======================= */

.main-wrapper{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    background:
    radial-gradient(circle at top left,#ff8c00 0%,transparent 30%),
    radial-gradient(circle at bottom right,#00c853 0%,transparent 30%),
    #000;
}

.main-wrapper::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:rgba(255,140,0,0.08);
    border-radius:50%;
    top:-200px;
    left:-150px;
    filter:blur(50px);
}

.main-wrapper::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,200,83,0.08);
    border-radius:50%;
    bottom:-180px;
    right:-100px;
    filter:blur(50px);
}

/* =======================
TOP BAR
======================= */

.topbar{
    position:relative;
    z-index:10;
    padding:15px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
}

.top-contact{
    display:flex;
    align-items:center;
    gap:25px;
    justify-content:end;
    flex-wrap:wrap;
}

.top-contact a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.top-contact a:hover{
    color:#ff9800;
}

/* =======================
HERO SECTION
======================= */

.hero-section{
    position:relative;
    z-index:2;
    padding:80px 0;
    min-height:calc(100vh - 80px);
    display:flex;
    align-items:center;
}

.logo-box{
    margin-bottom:25px;
}

.logo-box h1{
    font-size:85px;
    font-weight:900;
    line-height:1;
    text-transform:uppercase;
}

.logo-box h1 span{
    color:#ff9800;
}

.logo-box h1 .green{
    color:#00c853;
}

.tagline{
    display:inline-block;
    background:#ff9800;
    padding:12px 25px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
}

.opening{
    font-size:22px;
    font-weight:600;
    color:#ccc;
    margin-bottom:10px;
}

.big-title{
    font-size:75px;
    font-weight:900;
    line-height:1.1;
    margin-bottom:20px;
}

.big-title span{
    color:#ff9800;
}

.desc{
    font-size:18px;
    color:#d8d8d8;
    line-height:1.8;
    margin-bottom:35px;
    max-width:650px;
}

/* =======================
COUNTDOWN
======================= */

.countdown{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.time-box{
    width:120px;
    height:120px;
    border-radius:25px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transition:0.4s;
}

.time-box:hover{
    transform:translateY(-10px);
    border-color:#ff9800;
}

.time-box h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:5px;
    color:#fff;
}

.time-box p{
    margin:0;
    font-size:14px;
    font-weight:600;
    color:#ff9800;
    text-transform:uppercase;
    letter-spacing:1px;
}

/* =======================
BUTTONS
======================= */

.hero-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-main{
    padding:16px 34px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    transition:0.4s;
    font-size:15px;
    letter-spacing:1px;
}

.btn-orange{
    background:#ff9800;
    color:#fff;
    box-shadow:0 10px 25px rgba(255,152,0,0.3);
}

.btn-orange:hover{
    background:#fff;
    color:#000;
    transform:translateY(-5px);
}

.btn-outline-custom{
    border:2px solid #fff;
    color:#fff;
}

.btn-outline-custom:hover{
    background:#fff;
    color:#000;
    transform:translateY(-5px);
}

/* =======================
RIGHT SIDE CARD
======================= */

.image-card{
    position:relative;
    border-radius:40px;
    overflow:hidden;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    padding:18px;
    box-shadow:0 30px 80px rgba(0,0,0,0.6);
}

.image-card img{
    width:100%;
    border-radius:25px;
}

.floating-card{
    position:absolute;
    background:#fff;
    color:#000;
    padding:18px 22px;
    border-radius:20px;
    font-weight:700;
    box-shadow:0 15px 40px rgba(0,0,0,0.4);
}

.card1{
    top:20px;
    left:-40px;
}

.card2{
    bottom:40px;
    right:-30px;
}

.floating-card i{
    color:#ff9800;
    margin-right:8px;
}

/* =======================
SOCIAL
======================= */

.social-area{
    margin-top:45px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.social-area a{
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    transition:0.4s;
    text-decoration:none;
}

.social-area a:hover{
    background:#ff9800;
    transform:translateY(-7px) rotate(360deg);
}

/* =======================
FLOATING BUTTON
======================= */

.float-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:999;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.float-btn a{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
    animation:pulse 2s infinite;
}

.call-btn{
    background:#ff9800;
}

.whatsapp-btn{
    background:#00c853;
}

@keyframes pulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
    100%{
        transform:scale(1);
    }
}

/* =======================
RESPONSIVE
======================= */

@media(max-width:1200px){

.logo-box h1{
    font-size:65px;
}

.big-title{
    font-size:58px;
}

}

@media(max-width:991px){

.hero-section{
    text-align:center;
    padding:70px 0;
}

.countdown{
    justify-content:center;
}

.hero-btns{
    justify-content:center;
}

.social-area{
    justify-content:center;
}

.image-card{
    margin-top:0px;
}

.card1{
    left:10px;
}

.card2{
    right:10px;
}

}

@media(max-width:768px){

.logo-box h1{
    font-size:48px;
}

.big-title{
    font-size:40px;
}

.desc{
    font-size:16px;
}

.time-box{
    width:90px;
    height:90px;
}

.time-box h2{
    font-size:30px;
}

.tagline{
    font-size:13px;
}

.top-contact{
    justify-content:center;
}

.floating-card{
    position:relative;
    margin-top:15px;
    display:inline-block;
}

.card1,
.card2{
    top:auto;
    bottom:auto;
    left:auto;
    right:auto;
}

}

@media(max-width:480px){

.logo-box h1{
    font-size:40px;
}

.big-title{
    font-size:32px;
}

.hero-btns .btn-main{
    width:100%;
    text-align:center;
}

.countdown{
    gap:10px;
}

.time-box{
    width:75px;
    height:75px;
    border-radius:18px;
}

.time-box h2{
    font-size:24px;
}

.time-box p{
    font-size:11px;
}

}