/* ============================================
   PegaGuide Premium Theme v1
============================================ */

:root{

    --primary:#0d6efd;
    --secondary:#FFC107;
    --success:#198754;
    --danger:#dc3545;
    --dark:#212529;
    --light:#f8f9fa;

    --body:#555;
    --heading:#1d1d1d;

    --radius:14px;

    --shadow:

        0 12px 35px rgba(0,0,0,.08);

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:#fafafa;

    color:var(--body);

    line-height:1.7;

    overflow-x:hidden;

}

a{

    text-decoration:none;

    transition:.3s;

}

img{

    max-width:100%;

}

section{

    padding:80px 0;

}

h1,h2,h3,h4,h5,h6{

    color:var(--heading);

    font-weight:700;

}

.container{

    max-width:1240px;

}

.btn{

    border-radius:50px;

    padding:12px 28px;

    font-weight:600;

    transition:.35s;

}

.btn:hover{

    transform:translateY(-3px);

    box-shadow:var(--shadow);

}

.btn-warning{

    background:#FFC107;

    border:none;

    color:#222;

}

.btn-dark{

    border:none;

}

.card{

    border:none;

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

    box-shadow:var(--shadow);

}

.card:hover{

    transform:translateY(-8px);

}

.card img{

    transition:.4s;

}

.card:hover img{

    transform:scale(1.04);

}

.hero{

    background:

    linear-gradient(135deg,#0d6efd,#4f8cff);

    color:#fff;

    padding:130px 0;

}

.hero h1{

    color:#fff;

    font-size:56px;

}

.hero p{

    color:#f3f3f3;

    font-size:20px;

}

.hero img{

    animation:float 5s ease infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

.navbar{

    background:#fff;

    box-shadow:

    0 5px 20px rgba(0,0,0,.05);

}

.navbar-brand{

    font-size:28px;

    font-weight:700;

}

.nav-link{

    font-weight:600;

    color:#333;

    margin:0 8px;

}

.nav-link:hover{

    color:#0d6efd;

}

.stats-card{

    text-align:center;

    padding:35px;

    border-radius:18px;

    background:#fff;

    box-shadow:var(--shadow);

}

.stats-card h2{

    color:#0d6efd;

    font-size:44px;

}

.learning-card{

    transition:.35s;

}

.learning-card:hover{

    background:#0d6efd;

    color:#fff;

}

.learning-card:hover h4,

.learning-card:hover p{

    color:#fff;

}



footer{

    background:#1b1b1b;

    color:#ddd;

    padding:60px 0;

}

footer a{

    color:#bbb;

}

footer a:hover{

    color:#FFC107;

}

@media(max-width:991px){

.hero{

padding:90px 0;

}

.hero h1{

font-size:40px;

}

}

@media(max-width:768px){

.hero h1{

font-size:34px;

}

section{

padding:60px 0;

}

}

/* ==========================================
   Fade Animation
========================================== */

.fade-up{

opacity:0;

transform:translateY(40px);

transition:all .8s ease;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}

/* Active Navigation */

.navbar .nav-link.active{

color:#0d6efd !important;

font-weight:700;

}

/* Back To Top */

#backToTop{

display:none;

transition:.3s;

}

#backToTop:hover{

transform:scale(1.1);

}

/* ==========================================
   Footer
========================================== */

.footer{

background:#111827;

color:#d1d5db;

padding:70px 0 30px;

}

.footer-title{

color:#fff;

font-size:32px;

margin-bottom:20px;

}

.footer h5{

color:#fff;

margin-bottom:20px;

}

.footer p{

color:#cbd5e1;

}

.footer-links{

list-style:none;

padding:0;

margin:0;

}

.footer-links li{

margin-bottom:12px;

}

.footer-links a{

color:#cbd5e1;

text-decoration:none;

transition:.3s;

}

.footer-links a:hover{

color:#FFC107;

padding-left:6px;

}

.footer-divider{

border-color:#374151;

margin:40px 0 25px;

}

.social-links{

display:flex;

gap:15px;

margin-top:25px;

}

.social-links a{

width:45px;

height:45px;

display:flex;

align-items:center;

justify-content:center;

background:#1f2937;

border-radius:50%;

color:#fff;

font-size:18px;

transition:.3s;

}

.social-links a:hover{

background:#FFC107;

color:#111;

transform:translateY(-4px);

}

.footer .form-control{

border:none;

height:48px;

}

.footer .btn{

border-radius:0 8px 8px 0;

}

@media(max-width:768px){

.footer{

text-align:center;

}

.social-links{

justify-content:center;

}

}