/* =====================================================
   SKILLPRIME ACADEMY
   STYLE.CSS - PART 1
===================================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#08111f;
    color:#fff;
    overflow-x:hidden;

}

/* Scrollbar */

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:#6C63FF;
    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#111827;

}

/* Container */

.container{

    width:90%;
    max-width:1300px;
    margin:auto;

}

/* Links */

a{

    text-decoration:none;
    color:white;

}

ul{

    list-style:none;

}

img{

    width:100%;
    display:block;

}

/* Buttons */

.btn,
.primary-btn{

    display:inline-block;
    padding:15px 35px;
    border-radius:50px;
    background:#6C63FF;
    color:#fff;
    font-weight:600;
    transition:.4s;

}

.btn:hover,
.primary-btn:hover{

    transform:translateY(-5px);
    background:#7e76ff;

}

.secondary-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:15px 35px;

    border:2px solid #6C63FF;

    border-radius:50px;

    transition:.4s;

}

.secondary-btn:hover{

    background:#6C63FF;

}

/* Header */

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    backdrop-filter:blur(15px);

    background:rgba(10,15,30,.75);

    border-bottom:1px solid rgba(255,255,255,.08);

}

/* Navbar */

.nav{

    height:85px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo h2{

    color:#fff;

    font-size:32px;

    font-weight:800;

}

nav ul{

    display:flex;

    gap:35px;

}

nav ul li a{

    transition:.4s;

    font-weight:500;

}

nav ul li a:hover{

    color:#6C63FF;

}

.menu{

    display:none;

    font-size:28px;

    cursor:pointer;

}

/* Hero */

.hero{

    padding-top:170px;

    padding-bottom:120px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.tag{

    display:inline-block;

    background:rgba(108,99,255,.15);

    color:#8ea2ff;

    padding:10px 20px;

    border-radius:50px;

    margin-bottom:25px;

}

.hero h1{

    font-size:58px;

    line-height:1.2;

    margin-bottom:25px;

    font-weight:800;

}

.hero p{

    color:#c9d0df;

    font-size:18px;

    line-height:1.9;

}

.hero-buttons{

    margin-top:40px;

    display:flex;

    gap:20px;

}

.hero-box{

    display:flex;

    gap:30px;

    margin-top:60px;

}

.hero-box div{

    background:#111827;

    padding:25px;

    border-radius:20px;

    min-width:140px;

    text-align:center;

    transition:.4s;

}

.hero-box div:hover{

    transform:translateY(-8px);

}

.hero-box h3{

    font-size:32px;

    color:#6C63FF;

}

.hero-right img{

    width:100%;

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0);

}

}
/*=========================================
    TRUST SECTION
=========================================*/

.trust{

    padding:80px 0;

}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.trust-card{

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    transition:.4s;

}

.trust-card:hover{

    transform:translateY(-10px);

    border-color:#6C63FF;

    box-shadow:0 20px 40px rgba(108,99,255,.20);

}

.trust-card i{

    font-size:42px;

    color:#6C63FF;

    margin-bottom:20px;

}

.trust-card h3{

    font-size:22px;

    margin-bottom:10px;

}

.trust-card p{

    color:#cbd5e1;

}



/*=========================================
      SECTION TITLE
=========================================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#6C63FF;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title h2{

    font-size:46px;

    margin-top:15px;

    margin-bottom:20px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#cbd5e1;

    line-height:1.8;

}



/*=========================================
        PRICING SECTION
=========================================*/

.pricing{

    padding:100px 0;

}

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}



/*=========================================
        PRICE CARD
=========================================*/

.price-card{

    position:relative;

    background:#111827;

    border-radius:25px;

    padding:35px;

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

    overflow:hidden;

}

.price-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(108,99,255,.25);

    border-color:#6C63FF;

}

.price-card h3{

    font-size:28px;

    margin-bottom:15px;

}

.price-card h1{

    font-size:55px;

    color:#6C63FF;

    margin-bottom:10px;

}

.price-text{

    color:#cbd5e1;

    margin-bottom:25px;

}



/*=========================================
      COURSE LIST
=========================================*/

.price-card ul{

    margin-top:25px;

}

.price-card ul li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

    color:#ffffff;

}

.price-card ul li i{

    color:#22c55e;

}



/*=========================================
        BUY BUTTON
=========================================*/

.buy-btn{

    display:block;

    text-align:center;

    margin-top:30px;

    padding:16px;

    border-radius:50px;

    background:#6C63FF;

    color:white;

    font-weight:700;

    transition:.4s;

}

.buy-btn:hover{

    background:#7c73ff;

    transform:translateY(-5px);

}



/*=========================================
      BADGES
=========================================*/

.badge{

    position:absolute;

    top:20px;

    right:20px;

    background:#6C63FF;

    color:#fff;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

}



/*=========================================
      POPULAR PACKAGE
=========================================*/

.popular{

    border:2px solid #6C63FF;

    transform:scale(1.03);

}

.popular:hover{

    transform:scale(1.05);

}

.popular-tag{

    position:absolute;

    top:18px;

    left:-42px;

    width:180px;

    text-align:center;

    background:#f59e0b;

    color:#fff;

    font-size:13px;

    font-weight:700;

    transform:rotate(-45deg);

    padding:8px;

}



/*=========================================
         PRIME CARD
=========================================*/

.prime{

    background:linear-gradient(135deg,#111827,#1e293b);

}

.vip{

    position:absolute;

    top:20px;

    right:20px;

    background:#f59e0b;

    color:#fff;

    padding:8px 18px;

    border-radius:40px;

    font-weight:700;

}



/*=========================================
      BUTTON COLORS
=========================================*/

.beginner-btn{

    background:#16a34a;

}

.beginner-btn:hover{

    background:#15803d;

}

.pro-btn{

    background:#2563eb;

}

.pro-btn:hover{

    background:#1d4ed8;

}

.elite-btn{

    background:#9333ea;

}

.elite-btn:hover{

    background:#7e22ce;

}

.prime-btn{

    background:#f59e0b;

}

.prime-btn:hover{

    background:#d97706;

}
/*==================================================
      VIDEO SECTION
==================================================*/

.video-section{

    padding:100px 0;
    background:#0b1324;

}

.video-box{

    max-width:1000px;
    margin:auto;

    border-radius:20px;
    overflow:hidden;

    border:2px solid rgba(255,255,255,.08);

    box-shadow:0 20px 60px rgba(0,0,0,.35);

}

.video-box video{

    width:100%;
    display:block;

}


/*==================================================
      EARNING PROOF
==================================================*/

.proof{

    padding:100px 0;

}

.proof-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

..proof-grid img{
    width:100%;
    height:auto;
    object-fit:contain;
    border-radius:18px;
    cursor:pointer;
    transition:.4s;
    border:2px solid transparent;
}
}

.proof-grid img:hover{

    transform:scale(1.05);

    border-color:#6C63FF;

    box-shadow:0 20px 50px rgba(108,99,255,.35);

}


/*==================================================
      FEATURES
==================================================*/

.features{

    padding:100px 0;

    background:#0f172a;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.feature-card{

    background:#111827;

    padding:35px;

    border-radius:20px;

    text-align:center;

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:#6C63FF;

}

.feature-card i{

    font-size:48px;

    color:#6C63FF;

    margin-bottom:20px;

}

.feature-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.feature-card p{

    color:#cbd5e1;

    line-height:1.8;

}


/*==================================================
      TESTIMONIALS
==================================================*/

.testimonials{

    padding:100px 0;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:#111827;

    border-radius:20px;

    padding:35px;

    transition:.4s;

    border:1px solid rgba(255,255,255,.08);

}

.testimonial-card:hover{

    transform:translateY(-10px);

    border-color:#6C63FF;

    box-shadow:0 20px 50px rgba(108,99,255,.25);

}

.testimonial-card h3{

    margin-bottom:15px;

    color:#fff;

}

.testimonial-card p{

    margin-top:20px;

    color:#cbd5e1;

    line-height:1.8;

}


/*==================================================
      CONTACT
==================================================*/

.contact{

    padding:100px 0;

    background:#0b1324;

}

.contact-box{

    max-width:750px;

    margin:auto;

    text-align:center;

    padding:50px;

    background:#111827;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

}

.contact-box h3{

    margin-top:20px;

    margin-bottom:10px;

}

.contact-box p{

    color:#cbd5e1;

    margin-bottom:15px;

}


/*==================================================
      FOOTER
==================================================*/

footer{

    background:#050b17;

    padding:45px 0;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

}

footer h2{

    margin-bottom:15px;

    color:#6C63FF;

}

footer p{

    color:#94a3b8;

    margin-top:10px;

    line-height:1.8;

}


/*==================================================
      ANIMATION
==================================================*/

.price-card,
.feature-card,
.trust-card,
.testimonial-card,
.proof-grid img{

    transition:all .35s ease;

}
/* =====================================================
   STYLE.CSS PART 4 (FINAL)
   Responsive + Floating Buttons + Utility Classes
===================================================== */

/* WhatsApp Floating Button */

.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 15px 35px rgba(0,0,0,.35);
    z-index:999;
    transition:.35s;
}

.whatsapp-btn:hover{
    transform:scale(1.12);
}

/* Back To Top */

#topBtn{

    position:fixed;
    right:25px;
    bottom:105px;

    width:55px;
    height:55px;

    border:none;

    border-radius:50%;

    background:#6C63FF;

    color:#fff;

    font-size:20px;

    cursor:pointer;

    display:none;

    z-index:999;

    transition:.35s;

}

#topBtn:hover{

    transform:translateY(-6px);

}

/* Loader */

.loader{

    position:fixed;

    inset:0;

    background:#08111f;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loader::after{

    content:"";

    width:60px;

    height:60px;

    border-radius:50%;

    border:6px solid rgba(255,255,255,.15);

    border-top:6px solid #6C63FF;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

/* Image Hover */

img{

    transition:.35s;

}

img:hover{

    transform:scale(1.02);

}

/* Utility */

.text-center{

    text-align:center;

}

.mt-50{

    margin-top:50px;

}

.mb-50{

    margin-bottom:50px;

}

/* ===========================
      TABLET
=========================== */

@media(max-width:992px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-box{

justify-content:center;

flex-wrap:wrap;

}

.trust-grid{

grid-template-columns:repeat(2,1fr);

}

.pricing-grid{

grid-template-columns:repeat(2,1fr);

}

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

.proof-grid{

grid-template-columns:repeat(2,1fr);

}

nav{

display:none;

}

.menu{

display:block;

}

}

/* ===========================
      MOBILE
=========================== */

@media(max-width:768px){

.hero{

padding-top:140px;

}

.hero h1{

font-size:38px;

}

.section-title h2{

font-size:34px;

}

.hero-buttons{

flex-direction:column;

}

.hero-box{

flex-direction:column;

}

.trust-grid,

.pricing-grid,

.feature-grid,

.testimonial-grid,

.proof-grid{

grid-template-columns:1fr;

}

.price-card{

padding:28px;

}

.video-box{

border-radius:15px;

}

.contact-box{

padding:30px 20px;

}

footer{

padding:35px 15px;

}

}

/* ===========================
      SMALL MOBILE
=========================== */

@media(max-width:480px){

.container{

width:92%;

}

.hero h1{

font-size:30px;

}

.hero p{

font-size:16px;

}

.logo h2{

font-size:26px;

}

.btn,

.primary-btn,

.secondary-btn,

.buy-btn{

width:100%;

text-align:center;

}

.whatsapp-btn{

width:58px;

height:58px;

font-size:26px;

}

#topBtn{

width:50px;

height:50px;

}

}

/* END OF CSS */