/* =====================================
   Trade Nova Academy
   Premium Black & Gold Theme
===================================== */

@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;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#080808;
    color:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

section{
    padding:100px 8%;
}

/* =========================
   HEADER
========================= */

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 8%;

    background:rgba(0,0,0,.85);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,215,0,.15);

    z-index:1000;

}

.logo img{

    height:65px;

}

nav ul{

    display:flex;
    gap:35px;

}

nav ul li a{

    color:white;

    font-weight:500;

    transition:.3s;

}

nav ul li a:hover{

    color:#FFD700;

}

.header-btn{

    padding:14px 30px;

    background:#FFD700;

    color:#111;

    border-radius:40px;

    font-weight:700;

    transition:.3s;

}

.header-btn:hover{

    background:white;

    transform:translateY(-3px);

}

/* =========================
   HERO
========================= */

.hero{

    min-height:100vh;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

    padding-top:130px;

    background:

    radial-gradient(circle at top right,
    rgba(255,215,0,.18),
    transparent 30%),

    radial-gradient(circle at bottom left,
    rgba(255,215,0,.08),
    transparent 30%),

    linear-gradient(135deg,#050505,#111,#181818);

}

.badge{

    display:inline-block;

    background:rgba(255,215,0,.15);

    color:#FFD700;

    padding:10px 20px;

    border-radius:30px;

    margin-bottom:20px;

    border:1px solid rgba(255,215,0,.3);

}

.hero h1{

    font-size:68px;

    line-height:1.2;

    margin-bottom:25px;

    font-weight:800;

}

.hero h1 span{

    color:#FFD700;

}

.hero p{

    color:#d0d0d0;

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn{

    padding:16px 36px;

    background:#FFD700;

    color:#111;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.btn:hover{

    background:white;

    transform:translateY(-4px);

}

.btn-outline{

    padding:16px 36px;

    border:2px solid #FFD700;

    color:#FFD700;

    border-radius:50px;

    transition:.3s;

}

.btn-outline:hover{

    background:#FFD700;

    color:#111;

}

.hero-right{

    text-align:center;

}

.hero-right img{

    max-width:520px;

    margin:auto;

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-18px);
}

100%{
transform:translateY(0);
}

}

/* =========================
   SECTION TITLE
========================= */

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#FFD700;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;

}

.section-title h2{

    font-size:45px;

    margin:15px 0;

}

.section-title p{

    color:#cfcfcf;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

/* =====================================
   ABOUT SECTION
===================================== */

.about{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.about-image img{

    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.45);

}

.about-content h2{

    font-size:45px;
    color:#FFD700;
    margin-bottom:25px;

}

.about-content p{

    color:#d4d4d4;
    line-height:1.9;
    margin-bottom:35px;

}

.about-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;

}

.about-grid div{

    background:#111;
    padding:25px;
    border-radius:15px;
    border:1px solid rgba(255,215,0,.15);
    transition:.3s;

}

.about-grid div:hover{

    transform:translateY(-8px);
    border-color:#FFD700;

}

.about-grid h3{

    color:#FFD700;
    margin-bottom:12px;

}

/* =====================================
   SERVICES
===================================== */

.services{

    background:#0d0d0d;

}

.service-container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;

}

.service-card{

    background:#151515;
    padding:35px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    border:1px solid rgba(255,215,0,.12);

}

.service-card:hover{

    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(255,215,0,.15);
    border-color:#FFD700;

}

.service-card i{

    font-size:48px;
    color:#FFD700;
    margin-bottom:20px;

}

.service-card h3{

    margin-bottom:15px;
    font-size:24px;

}

.service-card p{

    color:#cfcfcf;
    line-height:1.8;

}

/* =====================================
   WHY CHOOSE US
===================================== */

.why{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.why-right img{

    width:100%;
    border-radius:20px;

}

.why-left h2{

    font-size:45px;
    color:#FFD700;
    margin-bottom:25px;

}

.why-left p{

    color:#d4d4d4;
    line-height:1.9;
    margin-bottom:30px;

}

.why-left ul{

    margin-bottom:35px;

}

.why-left ul li{

    margin-bottom:15px;
    color:#fff;
    font-size:17px;

}

/* =====================================
   STATS
===================================== */

.stats{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

.stat-box{

    background:#151515;
    padding:35px;
    border-radius:18px;
    text-align:center;
    border:1px solid rgba(255,215,0,.12);

}

.stat-box h2{

    color:#FFD700;
    font-size:50px;
    margin-bottom:10px;

}

.stat-box p{

    color:#ccc;
    font-size:17px;

}

/* =====================================
   FEATURES
===================================== */

.features{

    background:#0d0d0d;

}

.feature-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;

}

.feature-card{

    background:#151515;
    padding:35px;
    border-radius:20px;
    transition:.35s;
    text-align:center;

}

.feature-card:hover{

    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(255,215,0,.15);

}

.feature-card i{

    font-size:45px;
    color:#FFD700;
    margin-bottom:20px;

}

.feature-card h3{

    margin-bottom:15px;

}

.feature-card p{

    color:#cfcfcf;
    line-height:1.8;

}

/* ===========================
   TESTIMONIALS
=========================== */

.testimonials{
    background:#0b0b0b;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#151515;
    padding:35px;
    border-radius:20px;
    border:1px solid rgba(255,215,0,.15);
    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:#FFD700;
    box-shadow:0 15px 40px rgba(255,215,0,.18);
}

.testimonial-card p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#FFD700;
}

/* ===========================
   FAQ
=========================== */

.faq{
    background:#101010;
}

.faq-item{
    background:#181818;
    padding:25px;
    margin-bottom:20px;
    border-left:4px solid #FFD700;
    border-radius:12px;
}

.faq-item h3{
    color:#FFD700;
    margin-bottom:10px;
}

.faq-item p{
    color:#ccc;
    line-height:1.8;
}

/* ===========================
   CONTACT
=========================== */

.contact{
    background:#0b0b0b;
}

.contact-form{
    max-width:700px;
    margin:0 auto 40px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    border:none;
    border-radius:10px;
    background:#1b1b1b;
    color:#fff;
    font-size:16px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:2px solid #FFD700;
}

.contact-info{
    text-align:center;
    color:#ddd;
    line-height:2;
}

.contact-info h3{
    color:#FFD700;
    margin-bottom:15px;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#050505;
    padding:50px 20px;
    text-align:center;
}

.footer-content h2{
    color:#FFD700;
    margin-bottom:15px;
}

.footer-content p{
    color:#bbb;
    margin-bottom:20px;
}

.social-links{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:25px;
}

.social-links a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#1b1b1b;
    color:#FFD700;
    font-size:20px;
    transition:.3s;
}

.social-links a:hover{
    background:#FFD700;
    color:#111;
}

.copyright{
    color:#777;
    font-size:14px;
}

/* ===========================
   WHATSAPP BUTTON
=========================== */

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25D366;
    color:#fff;
    padding:14px 22px;
    border-radius:50px;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
    z-index:9999;
    transition:.3s;
}

.whatsapp-btn:hover{
    transform:translateY(-5px);
}

.whatsapp-btn i{
    font-size:24px;
}

/* ===========================
   SCROLL TO TOP
=========================== */

#topBtn{
    position:fixed;
    left:20px;
    bottom:20px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#FFD700;
    color:#111;
    cursor:pointer;
    font-size:18px;
    transition:.3s;
}

#topBtn:hover{
    transform:scale(1.1);
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

.hero,
.about,
.why{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-buttons{
    justify-content:center;
}

.stats{
    grid-template-columns:repeat(2,1fr);
}

header{
    flex-direction:column;
    gap:15px;
}

nav ul{
    gap:20px;
}

}

@media(max-width:768px){

.hero h1{
    font-size:40px;
}

.section-title h2,
.about-content h2,
.why-left h2{
    font-size:32px;
}

.about-grid{
    grid-template-columns:1fr;
}

.stats{
    grid-template-columns:1fr;
}

.whatsapp-btn span{
    display:none;
}

.whatsapp-btn{
    width:60px;
    height:60px;
    justify-content:center;
    border-radius:50%;
    padding:0;
}

#topBtn{
    left:15px;
    bottom:90px;
}

}