/*==============================
 GOOGLE FONT
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f7fb;
    color:#333;
}

/*==============================
 HEADER
==============================*/

.top-header{

background:linear-gradient(135deg,#0d6efd,#198754);

padding:30px 15px;

text-align:center;

color:#fff;

box-shadow:0 10px 25px rgba(0,0,0,.2);

}

.top-header h1{

font-size:42px;

font-weight:700;

text-shadow:2px 2px 10px rgba(0,0,0,.4);

}

.top-header p{

margin-top:10px;

font-size:18px;

letter-spacing:1px;

}

/*==============================
 LIVE CLOCK
==============================*/

#clock{

display:inline-block;

margin-top:20px;

padding:15px 35px;

font-size:28px;

font-weight:bold;

border-radius:12px;

background:#fff;

color:#198754;

border:3px solid #fff;

box-shadow:0 0 15px #fff,
0 0 30px #00ff99,
0 0 50px #00ff99;

animation:glow 1.2s infinite alternate;

}

@keyframes glow{

from{

box-shadow:
0 0 10px #fff,
0 0 20px #00ff99;

}

to{

box-shadow:
0 0 25px #fff,
0 0 50px #00ff99,
0 0 70px #00ff99;

}

}

/*==============================
 NAVBAR
==============================*/

.navbar{

box-shadow:0 5px 15px rgba(0,0,0,.15);

}

.navbar-brand{

font-size:26px;

font-weight:bold;

}

.nav-link{

font-size:17px;

font-weight:500;

margin-left:12px;

transition:.4s;

}

.nav-link:hover{

color:#ffc107!important;

}

/*==============================
 SLIDER
==============================*/

.carousel-item img{

height:520px;

object-fit:cover;

}

/*==============================
 BOXES
==============================*/

.news-box,
.links-box,
.welcome-box{

background:#fff;

padding:20px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.news-box:hover,
.links-box:hover,
.welcome-box:hover{

transform:translateY(-8px);

}

.news-box h4,
.links-box h4{

background:#198754;

color:#fff;

padding:10px;

text-align:center;

border-radius:8px;

margin-bottom:15px;

}

.welcome-box h2{

color:#198754;

font-weight:700;

margin-bottom:20px;

}

.links-box ul{

list-style:none;

padding:0;

}

.links-box li{

margin:12px 0;

}

.links-box a{

text-decoration:none;

color:#0d6efd;

font-weight:600;

transition:.3s;

}

.links-box a:hover{

color:red;

padding-left:8px;

}

/*==============================
 TRADE CARDS
==============================*/

.trade-card{

border:none;

border-radius:20px;

overflow:hidden;

transition:.4s;

box-shadow:0 12px 25px rgba(0,0,0,.12);

}

.trade-card:hover{

transform:translateY(-12px);

}

.trade-card img{

height:220px;

object-fit:cover;

}

.trade-card .card-body{

text-align:center;

}

.trade-card h5{

font-size:24px;

color:#198754;

font-weight:bold;

}

.trade-card p{

margin-bottom:8px;

font-size:15px;

}

.trade-card .btn{

margin-top:10px;

border-radius:50px;

font-weight:bold;

transition:.4s;

}

.trade-card .btn:hover{

background:#0d6efd;

transform:scale(1.05);

}

/*==============================
 VIDEO
==============================*/

iframe{

border-radius:15px;

box-shadow:0 10px 20px rgba(0,0,0,.15);

}

/*==============================
 FOOTER
==============================*/

.footer{

margin-top:80px;

background:#111;

color:#fff;

padding:40px 20px;

}

.footer h4{

font-weight:bold;

margin-bottom:15px;

color:#ffc107;

}

.footer p{

margin:8px 0;

}

/*==============================
 SCROLL BAR
==============================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:#198754;

border-radius:10px;

}

::-webkit-scrollbar-track{

background:#ddd;

}

/*==============================
 RESPONSIVE
==============================*/

@media(max-width:991px){

.carousel-item img{

height:350px;

}

.top-header h1{

font-size:32px;

}

#clock{

font-size:22px;

padding:12px 25px;

}

}

@media(max-width:768px){

.top-header{

padding:20px;

}

.top-header h1{

font-size:28px;

}

.top-header p{

font-size:15px;

}

#clock{

font-size:18px;

padding:10px 20px;

}

.carousel-item img{

height:250px;

}

.trade-card img{

height:180px;

}

.news-box,
.links-box,
.welcome-box{

margin-bottom:25px;

}

}

@media(max-width:576px){

.top-header h1{

font-size:22px;

}

.carousel-item img{

height:180px;

}

.trade-card img{

height:170px;

}

}

/*==============================
 FLOATING WHATSAPP
==============================*/

.whatsapp{

position:fixed;

bottom:20px;

right:20px;

width:65px;

height:65px;

background:#25D366;

color:#fff;

font-size:35px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

text-decoration:none;

box-shadow:0 10px 20px rgba(0,0,0,.3);

z-index:999;

transition:.4s;

}

.whatsapp:hover{

transform:scale(1.15);

background:#128C7E;

}

/*==============================
 SECTION TITLE
==============================*/

section h2{

font-weight:700;

color:#198754;

margin-bottom:30px;

position:relative;

}

section h2::after{

content:"";

width:90px;

height:4px;

background:#ffc107;

display:block;

margin:10px auto;

border-radius:10px;

}