/*=========================================================
LUMIXA ACADEMY
Common Website Styles
Premium UI v2
=========================================================*/

:root{

    --primary:#0D47A1;
    --primary-light:#1976D2;
    --primary-dark:#08306B;

    --success:#16A34A;
    --warning:#F59E0B;
    --danger:#EF4444;

    --white:#ffffff;

    --bg:#F8FAFC;
    --bg-light:#F1F5F9;

    --text:#1F2937;
    --text-light:#6B7280;

    --border:#E5E7EB;

    --radius:22px;
    --radius-sm:12px;

    --shadow-sm:0 8px 24px rgba(15,23,42,.05);
    --shadow:0 15px 40px rgba(15,23,42,.08);
    --shadow-lg:0 25px 60px rgba(13,71,161,.18);

    --transition:.35s ease;

}

/*=========================================================
RESET
=========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:var(--bg);

    color:var(--text);

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

section{

    position:relative;

}

main{

    min-height:60vh;

}

/*=========================================================
TOP BAR
=========================================================*/

.top-bar{

    background:#0A2540;

    color:#fff;

    padding:10px 0;

    font-size:14px;

}

.top-bar i{

    color:#FFD54F;

    margin-right:6px;

}

.top-bar a{

    color:#fff;

    font-weight:500;

    margin-left:18px;

}

.top-bar a:hover{

    color:#FFD54F;

}

.top-bar span{

    opacity:.4;

    margin:0 12px;

}

/*=========================================================
NAVBAR
=========================================================*/

.navbar{

    background:#fff!important;

    padding:16px 0;

    box-shadow:0 10px 35px rgba(15,23,42,.06);

    z-index:999;

}

.navbar-brand img{

    height:38px;

}

.navbar-nav .nav-link{

    color:var(--text);

    font-weight:600;

    margin:0 8px;

    position:relative;

    transition:var(--transition);

}

.navbar-nav .nav-link:hover{

    color:var(--primary);

}

.navbar-nav .nav-link.active{

    color:var(--primary);

}

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:3px;

    border-radius:10px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--primary-light)
    );

    transition:.3s;

}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{

    width:100%;

}

.navbar .form-control{

    border-radius:30px;

    border:1px solid var(--border);

    height:46px;

    min-width:230px;

}

.navbar .form-control:focus{

    border-color:var(--primary-light);

    box-shadow:0 0 0 .2rem rgba(25,118,210,.15);

}

.navbar .btn-primary{

    border:none;

    border-radius:30px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    padding:10px 24px;

    box-shadow:0 10px 25px rgba(13,71,161,.18);

}

.navbar .btn-primary:hover{

    transform:translateY(-2px);

}

/*=========================================================
DROPDOWN
=========================================================*/

.dropdown-menu{

    border:none;

    border-radius:18px;

    padding:12px 0;

    box-shadow:var(--shadow);

}

.dropdown-item{

    padding:12px 22px;

    font-weight:500;

}

.dropdown-item:hover{

    background:#EAF4FF;

    color:var(--primary);

}

.newbgcolor{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    ) !important;

}

/*=========================================================
PAGE HEADER
=========================================================*/

.page-header{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:#fff;

    padding:90px 0;

    text-align:center;

}

.page-header h1{

    font-size:48px;

    font-weight:700;

    margin-bottom:15px;

}

.page-header p{

    font-size:18px;

    opacity:.92;

}

/*=========================================================
FOOTER
=========================================================*/

.footer-section{

    background:#0A2540;

    color:#D6E4F0;

    padding:80px 0 25px;

    margin-top:80px;

}

.footer-section h5{

    color:#fff;

    font-weight:700;

    margin-bottom:22px;

}

.footer-section p{

    color:#B8C5D1;

    line-height:1.9;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:#C9D5E0;

    transition:.3s;

}

.footer-links a:hover{

    color:#fff;

    padding-left:8px;

}

.social-links a{

    width:46px;

    height:46px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    margin-right:10px;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.social-links a:hover{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    transform:translateY(-5px);

}

.footer-section hr{

    border-color:rgba(255,255,255,.12);

}

/*=========================================================
BACK TO TOP
=========================================================*/

#backToTop{

    position:fixed;

    right:30px;

    bottom:30px;

    width:54px;

    height:54px;

    border-radius:50%;

    display:none;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:#fff;

    border:none;

    z-index:9999;

    box-shadow:0 15px 35px rgba(13,71,161,.25);

    transition:.3s;

}

#backToTop:hover{

    transform:translateY(-5px);

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

.navbar-nav{

    margin-top:15px;

}

.navbar .d-flex{

    flex-direction:column;

    gap:12px;

}

.navbar .form-control{

    min-width:100%;

}

.page-header{

    padding:70px 0;

}

.page-header h1{

    font-size:38px;

}

.footer-section{

    text-align:center;

}

.social-links{

    margin-bottom:25px;

}

}

@media(max-width:768px){

.top-bar{

    text-align:center;

}

.top-bar .col-md-6:first-child{

    display:none!important;

}

.page-header{

    padding:60px 0;

}

.page-header h1{

    font-size:30px;

}

.page-header p{

    font-size:16px;

}

}

@media(max-width:576px){

.navbar-brand img{

    height:32px;

}

.page-header{

    padding:50px 0;

}

.page-header h1{

    font-size:26px;

}

#backToTop{

    width:46px;

    height:46px;

}

}

/*=========================================
Hero Section
=========================================*/

.hero-section{

position:relative;

padding:110px 0;

background:linear-gradient(135deg,#0d47a1 0%,#1565c0 45%,#1976d2 100%);

overflow:hidden;

color:#fff;

}

/* Background Shapes */

.hero-section::before{

content:"";

position:absolute;

width:500px;

height:500px;

background:rgba(255,255,255,.06);

border-radius:50%;

top:-180px;

right:-150px;

}

.hero-section::after{

content:"";

position:absolute;

width:320px;

height:320px;

background:rgba(255,255,255,.04);

border-radius:50%;

bottom:-120px;

left:-120px;

}

/* Small Badge */

.hero-tag{

display:inline-block;

padding:10px 22px;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.15);

border-radius:50px;

backdrop-filter:blur(12px);

font-size:14px;

font-weight:600;

letter-spacing:.5px;

margin-bottom:28px;

}

/* Heading */

.hero-title{

font-size:62px;

font-weight:700;

line-height:1.15;

margin-bottom:25px;

}

/* Description */

.hero-description{

font-size:19px;

line-height:1.9;

opacity:.92;

max-width:620px;

margin-bottom:40px;

}

/* Buttons */

.hero-buttons{

display:flex;

gap:15px;

margin-bottom:55px;

flex-wrap:wrap;

}

.hero-buttons .btn{

padding:14px 34px;

border-radius:12px;

font-weight:600;

font-size:16px;

transition:.35s;

}

.hero-buttons .btn-primary{

background:#fff;

color:#0d6efd;

border:none;

}

.hero-buttons .btn-primary:hover{

transform:translateY(-3px);

box-shadow:0 18px 35px rgba(0,0,0,.18);

}

.hero-buttons .btn-outline-light:hover{

background:#fff;

color:#0d6efd;

}

/* Statistics */

.hero-stats{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

}

.stat-box{

background:rgba(255,255,255,.10);

border:1px solid rgba(255,255,255,.12);

backdrop-filter:blur(15px);

border-radius:18px;

padding:22px 15px;

text-align:center;

transition:.35s;

}

.stat-box:hover{

transform:translateY(-8px);

background:rgba(255,255,255,.15);

}

.stat-box h2{

font-size:34px;

font-weight:700;

margin-bottom:8px;

}

.stat-box span{

font-size:14px;

opacity:.92;

}

/* Image */

.hero-image-wrapper{

position:relative;

text-align:center;

}

.hero-image{

max-width:100%;

position:relative;

z-index:5;

}

/* Floating Cards */

.hero-card{

position:absolute;

background:rgba(255,255,255,.94);

color:#1f2937;

border-radius:18px;

padding:18px 22px;

box-shadow:0 20px 45px rgba(0,0,0,.15);

z-index:20;

width:210px;

}

.hero-card h5{

font-size:24px;

font-weight:700;

margin-bottom:6px;

color:#0d6efd;

}

.hero-card p{

margin:0;

font-size:14px;

color:#6b7280;

line-height:1.5;

}

.card1{

top:-10px;

left:-80px;

}

.card2{

top:410px;

right:-20px;

}

.card3{

bottom:20px;

left:20px;

}

/* Responsive */

@media(max-width:992px){

.hero-section{

padding:80px 0;

text-align:center;

}

.hero-title{

font-size:42px;

}

.hero-description{

margin:auto;

margin-bottom:35px;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

grid-template-columns:repeat(2,1fr);

margin-bottom:50px;

}

.hero-card{

display:none;

}

}

@media(max-width:576px){

.hero-title{

font-size:34px;

}

.hero-description{

font-size:16px;

}

.hero-stats{

grid-template-columns: 1fr 1fr;

gap:12px;

}

.stat-box{

padding:18px 12px;

}

.stat-box h2{

font-size:26px;

}

}

/*=========================================
Category Section
=========================================*/

.category-section{

padding:100px 0;

background:#f8fbff;

}

.section-badge{

display:inline-block;

padding:8px 20px;

background:#eaf2ff;

color:#0d6efd;

font-weight:600;

border-radius:50px;

font-size:14px;

}

.section-title{

font-size:46px;

font-weight:700;

color:#1f2937;

margin-bottom:18px;

}

.section-description{

font-size:18px;

color:#6b7280;

max-width:760px;

margin:auto;

line-height:1.8;

}

/* Card */

.category-card{

background:#fff;

border-radius:18px;

padding:30px;

height:100%;

border:1px solid #eef2f7;

transition:.35s;

position:relative;

overflow:hidden;

}

.category-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:4px;

height:0;

background:#0d6efd;

transition:.35s;

}

.category-card:hover{

transform:translateY(-10px);

box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.category-card:hover::before{

height:100%;

}

.category-top{

display:flex;

justify-content:flex-end;

margin-bottom:30px;

}

.category-count{

background:#eef5ff;

color:#0d6efd;

padding:6px 14px;

border-radius:50px;

font-size:13px;

font-weight:600;

}

.category-card h4{

font-size:24px;

font-weight:700;

color:#222;

margin-bottom:18px;

line-height:1.4;

}

.category-card p{

color:#6b7280;

font-size:15px;

line-height:1.8;

margin-bottom:30px;

min-height:55px;

}

.category-link{

font-weight:600;

color:#0d6efd;

display:flex;

align-items:center;

}

.category-link i{

font-size:22px;

margin-left:6px;

transition:.3s;

}

.category-card:hover .category-link i{

margin-left:12px;

}

/* Responsive */

@media(max-width:991px){

.section-title{

font-size:36px;

}

}

@media(max-width:576px){

.category-section{

padding:70px 0;

}

.section-title{

font-size:30px;

}

.section-description{

font-size:16px;

}

.category-card{

padding:25px;

}

.category-card h4{

font-size:21px;

}

}

/*=========================================
FEATURED COURSES
=========================================*/

.course-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    border:1px solid #edf2f7;
    transition:.35s ease;
    height:100%;
    display:flex;
    flex-direction:column;
    box-shadow:0 8px 25px rgba(15,23,42,.06);
}

.course-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(13,110,253,.18);
}

/*=========================
IMAGE
=========================*/

.course-image{
    position:relative;
    overflow:hidden;
}

.course-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.45s;
}

.course-card:hover .course-image img{
    transform:scale(1.08);
}

/*=========================
BADGES
=========================*/

.discount-badge{
    position:absolute;
    top:18px;
    left:18px;
    background:#ef4444;
    color:#fff;
    padding:7px 14px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    z-index:10;
}

.category-badge{
    position:absolute;
    right:18px;
    top:18px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(12px);
    color:#0d6efd;
    padding:7px 15px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

/*=========================
BODY
=========================*/

.course-body{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.course-level{
    display:inline-block;
    align-self:flex-start;
    background:#eef5ff;
    color:#0d6efd;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

/*=========================
TITLE
=========================*/

.course-title{
    font-size:24px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:15px;
    min-height:68px;
}

.course-title a{
    color:#1f2937;
    text-decoration:none;
    transition:.3s;
}

.course-title a:hover{
    color:#0d6efd;
}

/*=========================
DESCRIPTION
=========================*/

.course-description{
    color:#6b7280;
    font-size:15px;
    line-height:1.8;
    min-height:78px;
    margin-bottom:22px;
}

/*=========================
RATING
=========================*/

.course-rating{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:22px;
}

.stars{
    color:#fbbf24;
    font-size:17px;
}

.rating-number{
    font-weight:700;
    color:#111827;
}

.reviews{
    color:#6b7280;
    font-size:14px;
}

/*=========================
INSTRUCTOR
=========================*/

.course-instructor{
    display:flex;
    align-items:center;
    margin-bottom:24px;
}

.instructor-photo{
    width:42px;
    height:42px;
    border-radius:50%;
    object-fit:cover;
    margin-right:12px;
    border:2px solid #e5e7eb;
}

.course-instructor span{
    font-weight:600;
    color:#374151;
}

/*=========================
INFO
=========================*/

.course-info{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    border-top:1px solid #eef2f7;
    border-bottom:1px solid #eef2f7;
    padding:18px 0;
    margin-bottom:22px;
}

.course-info div{
    font-size:14px;
    color:#6b7280;
}

.course-info i{
    color:#0d6efd;
    margin-right:5px;
}

/*=========================
FOOTER
=========================*/

.course-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:auto;
}

.new-price{
    font-size:28px;
    font-weight:700;
    color:#16a34a;
}

.old-price{
    margin-left:8px;
    color:#9ca3af;
    text-decoration:line-through;
    font-size:15px;
}

/*=========================
BUTTON
=========================*/

.enroll-btn{
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    padding:12px 22px;
    border-radius:12px;
    font-weight:600;
    transition:.35s;
}

.enroll-btn i{
    margin-left:6px;
    transition:.3s;
}

.enroll-btn:hover{
    background:#084298;
    color:#fff;
}

.enroll-btn:hover i{
    margin-left:10px;
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.course-title{
    font-size:22px;
    min-height:auto;
}

.course-description{
    min-height:auto;
}

.course-footer{
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
}

.enroll-btn{
    width:100%;
    text-align:center;
}

}

@media(max-width:576px){

.course-body{
    padding:22px;
}

.course-image img{
    height:220px;
}

.course-title{
    font-size:20px;
}

.new-price{
    font-size:24px;
}

.course-info{
    gap:12px;
}

}

/*=========================================
EXPLORE LEARNING
=========================================*/

.explore-learning{
    position:relative;
    padding:100px 0;
    background:#ffffff;
    overflow:hidden;
}

.explore-learning::before{
    content:"";
    position:absolute;
    width:340px;
    height:340px;
    border-radius:50%;
    background:rgba(13,71,161,.04);
    top:-160px;
    left:-100px;
}

.explore-learning::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(25,118,210,.05);
    right:-80px;
    bottom:-100px;
}

/*=========================
Learning Card
=========================*/

.learning-card{

background:#fff;

padding:40px 35px;

border-radius:24px;

height:100%;

position:relative;

overflow:hidden;

border:1px solid #edf2f7;

box-shadow:0 12px 35px rgba(15,23,42,.06);

transition:.35s;

display:flex;

flex-direction:column;

}

.learning-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(13,71,161,.18);

}

/* Top Border */

.learning-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(
90deg,
#0D47A1,
#1976D2
);

transform:scaleX(0);

transform-origin:left;

transition:.35s;

}

.learning-card:hover::before{

transform:scaleX(1);

}

/*=========================
Icon
=========================*/

.learning-icon{

width:90px;

height:90px;

border-radius:22px;

display:flex;

align-items:center;

justify-content:center;

font-size:38px;

color:#fff;

background:linear-gradient(
135deg,
#0D47A1,
#1976D2
);

box-shadow:0 18px 35px rgba(13,71,161,.25);

margin-bottom:30px;

transition:.35s;

}

.learning-card:hover .learning-icon{

transform:rotate(-8deg) scale(1.08);

}

/*=========================
Heading
=========================*/

.learning-card h3{

font-size:28px;

font-weight:700;

color:#1F2937;

margin-bottom:16px;

}

/*=========================
Description
=========================*/

.learning-card p{

font-size:16px;

line-height:1.9;

color:#6B7280;

margin-bottom:25px;

}

/*=========================
List
=========================*/

.learning-list{

list-style:none;

padding:0;

margin:0 0 35px;

}

.learning-list li{

display:flex;

align-items:center;

margin-bottom:14px;

font-size:15px;

color:#374151;

font-weight:500;

}

.learning-list i{

color:#16A34A;

margin-right:10px;

font-size:18px;

}

/*=========================
Button
=========================*/

.learning-btn{

display:inline-flex;

align-items:center;

justify-content:center;

margin-top:auto;

padding:15px 28px;

border-radius:14px;

background:linear-gradient(
135deg,
#0D47A1,
#1976D2
);

color:#fff;

font-weight:600;

text-decoration:none;

transition:.35s;

}

.learning-btn:hover{

color:#fff;

transform:translateY(-3px);

box-shadow:0 15px 35px rgba(13,71,161,.25);

}

.learning-btn i{

transition:.3s;

}

.learning-btn:hover i{

transform:translateX(6px);

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.explore-learning{

padding:80px 0;

}

.learning-card{

padding:35px 30px;

}

.learning-card h3{

font-size:24px;

}

}

@media(max-width:576px){

.learning-card{

padding:30px 25px;

}

.learning-icon{

width:75px;

height:75px;

font-size:30px;

border-radius:18px;

}

.learning-card h3{

font-size:22px;

}

.learning-card p{

font-size:15px;

}

.learning-btn{

width:100%;

}

}

/*=========================================
WHY CHOOSE SECTION
=========================================*/

.why-section{
    position:relative;
    padding:100px 0;
    background:#f7faff;
    overflow:hidden;
}

.why-section::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    background:rgba(13,71,161,.05);
    border-radius:50%;
    top:-180px;
    right:-120px;
}

.why-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(21,101,192,.05);
    border-radius:50%;
    left:-100px;
    bottom:-120px;
}

/*=========================
Section Heading
=========================*/

.section-badge{

display:inline-flex;
align-items:center;
padding:8px 18px;
background:rgba(13,71,161,.08);
color:#0D47A1;
border-radius:50px;
font-size:14px;
font-weight:600;
letter-spacing:.5px;

}

.section-title{

font-size:46px;
font-weight:700;
line-height:1.25;
color:#1F2937;
margin-bottom:20px;

}

.section-description{

font-size:18px;
line-height:1.9;
color:#6B7280;
max-width:620px;

}

/*=========================
Why Card
=========================*/

.why-card{

background:#fff;
border-radius:22px;
padding:35px;
display:flex;
align-items:flex-start;
gap:25px;
height:100%;
border:1px solid #edf2f7;
box-shadow:0 10px 30px rgba(15,23,42,.06);
transition:.35s ease;
position:relative;
overflow:hidden;

}

.why-card::before{

content:"";
position:absolute;
top:0;
left:0;
width:5px;
height:100%;
background:linear-gradient(180deg,#0D47A1,#1976D2);
transform:scaleY(0);
transform-origin:top;
transition:.35s;

}

.why-card:hover{

transform:translateY(-10px);
box-shadow:0 25px 55px rgba(13,71,161,.18);

}

.why-card:hover::before{

transform:scaleY(1);

}

/*=========================
Icon
=========================*/

.why-icon{

width:78px;
height:78px;
min-width:78px;
border-radius:20px;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
background:linear-gradient(135deg,#0D47A1,#1976D2);
color:#fff;
box-shadow:0 12px 30px rgba(13,71,161,.25);
transition:.35s;

}

.why-card:hover .why-icon{

transform:rotate(-8deg) scale(1.08);

}

/*=========================
Text
=========================*/

.why-card h3{

font-size:24px;
font-weight:700;
color:#1F2937;
margin-bottom:14px;

}

.why-card p{

font-size:16px;
line-height:1.9;
color:#6B7280;
margin-bottom:0;

}

/*=========================
Large Card
=========================*/

.why-large{

padding:45px;

}

.why-large h3{

font-size:28px;

}

.why-large p{

max-width:900px;

}

/*=========================
Button
=========================*/

.why-section .btn-primary{

padding:14px 34px;
border-radius:14px;
background:linear-gradient(135deg,#0D47A1,#1976D2);
border:none;
font-weight:600;
transition:.35s;

}

.why-section .btn-primary:hover{

transform:translateY(-3px);
box-shadow:0 15px 30px rgba(13,71,161,.25);

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.why-section{

padding:80px 0;

}

.section-title{

font-size:36px;

}

.section-description{

font-size:17px;
margin-bottom:25px;

}

.why-card{

padding:30px;

}

}

@media(max-width:576px){

.section-title{

font-size:30px;

}

.why-card{

flex-direction:column;
text-align:center;
align-items:center;

}

.why-icon{

margin-bottom:10px;

}

.why-large{

padding:35px 25px;

}

}

/*=========================================
TESTIMONIAL SECTION
=========================================*/

.testimonial-section{
    position:relative;
    padding:100px 0;
    background:#ffffff;
    overflow:hidden;
}

.testimonial-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(13,71,161,.04);
    top:-160px;
    left:-120px;
}

.testimonial-section::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(25,118,210,.05);
    right:-100px;
    bottom:-120px;
}

/*=========================
Card
=========================*/

.testimonial-card{

background:#fff;
border-radius:22px;
padding:40px 35px;
height:100%;
position:relative;
overflow:hidden;
border:1px solid #edf2f7;
box-shadow:0 12px 35px rgba(15,23,42,.06);
transition:.35s;

}

.testimonial-card:hover{

transform:translateY(-10px);
box-shadow:0 25px 60px rgba(13,71,161,.18);

}

/*=========================
Quote
=========================*/

.quote-icon{

width:70px;
height:70px;
border-radius:20px;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#0D47A1,#1976D2);
color:#fff;
font-size:32px;
margin-bottom:25px;
box-shadow:0 15px 30px rgba(13,71,161,.22);

}

.testimonial-card:hover .quote-icon{

transform:rotate(-10deg);

}

/*=========================
Rating
=========================*/

.rating-badge{

display:inline-block;
padding:8px 18px;
border-radius:50px;
background:#FFF8E5;
color:#F59E0B;
font-size:15px;
font-weight:700;
margin-bottom:22px;

}

/*=========================
Text
=========================*/

.testimonial-text{

font-size:17px;
line-height:1.9;
color:#6B7280;
margin-bottom:35px;
font-style:italic;

}

/*=========================
User
=========================*/

.testimonial-user{

display:flex;
align-items:center;

}

.user-avatar{

width:65px;
height:65px;
border-radius:50%;
background:linear-gradient(135deg,#0D47A1,#1976D2);
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:24px;
font-weight:700;
margin-right:18px;
flex-shrink:0;

}

.testimonial-user h5{

font-size:20px;
font-weight:700;
margin-bottom:4px;
color:#1F2937;

}

.testimonial-user span{

display:block;
color:#6B7280;
font-size:15px;
margin-bottom:8px;

}

/*=========================
Verified
=========================*/

.verified-badge{

display:inline-flex;
align-items:center;
padding:6px 14px;
border-radius:50px;
background:#E8F5EE;
color:#198754;
font-size:13px;
font-weight:600;

}

.verified-badge i{

margin-right:6px;

}

/*=========================
Hover Border
=========================*/

.testimonial-card::before{

content:"";
position:absolute;
left:0;
top:0;
width:5px;
height:100%;
background:linear-gradient(180deg,#0D47A1,#1976D2);
transform:scaleY(0);
transform-origin:top;
transition:.35s;

}

.testimonial-card:hover::before{

transform:scaleY(1);

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.testimonial-section{

padding:80px 0;

}

}

@media(max-width:576px){

.testimonial-card{

padding:30px 25px;

}

.quote-icon{

width:60px;
height:60px;
font-size:28px;

}

.testimonial-text{

font-size:16px;

}

.user-avatar{

width:55px;
height:55px;
font-size:20px;

}

.testimonial-user h5{

font-size:18px;

}

}

/*=========================================
PREMIUM CTA
=========================================*/

.premium-cta{

padding:100px 0;
background:#f7faff;

}

.cta-box{

position:relative;
overflow:hidden;
padding:70px;
border-radius:30px;

background:linear-gradient(
135deg,
#0D47A1 0%,
#1565C0 55%,
#1976D2 100%
);

color:#fff;

box-shadow:0 30px 80px rgba(13,71,161,.28);

}

/* Decorative Circles */

.cta-box::before{

content:"";
position:absolute;
width:320px;
height:320px;
border-radius:50%;
background:rgba(255,255,255,.08);

top:-140px;
right:-80px;

}

.cta-box::after{

content:"";
position:absolute;
width:220px;
height:220px;
border-radius:50%;
background:rgba(255,255,255,.06);

bottom:-90px;
left:-70px;

}

/* Heading */

.cta-box h2{

font-size:48px;
font-weight:700;
line-height:1.25;
margin-bottom:25px;
position:relative;
z-index:2;

}

.cta-box h2 span{

color:#FFD54F;

}

.cta-box p{

font-size:18px;
line-height:1.9;
opacity:.95;
max-width:650px;
margin-bottom:40px;
position:relative;
z-index:2;

}

/* Stats */

.cta-stats{

display:flex;
gap:50px;
position:relative;
z-index:2;

}

.cta-stat h4{

font-size:36px;
font-weight:700;
margin-bottom:5px;

}

.cta-stat span{

font-size:15px;
opacity:.9;

}

/* Buttons */

.cta-primary{

background:#fff;
color:#0D47A1;
padding:16px 34px;
border-radius:14px;
font-weight:700;
margin-right:15px;
transition:.35s;

}

.cta-primary:hover{

background:#FFD54F;
color:#0D47A1;
transform:translateY(-4px);

}

.cta-secondary{

background:transparent;
border:2px solid rgba(255,255,255,.35);
color:#fff;
padding:16px 34px;
border-radius:14px;
font-weight:700;
transition:.35s;

}

.cta-secondary:hover{

background:#fff;
color:#0D47A1;
transform:translateY(-4px);

}

/* Responsive */

@media(max-width:991px){

.cta-box{

padding:50px 35px;
text-align:center;

}

.cta-box h2{

font-size:38px;

}

.cta-stats{

justify-content:center;
margin-bottom:35px;
flex-wrap:wrap;

}

.cta-primary,
.cta-secondary{

display:block;
width:100%;
margin:10px 0;

}

}

@media(max-width:576px){

.cta-box{

padding:40px 25px;

}

.cta-box h2{

font-size:30px;

}

.cta-box p{

font-size:16px;

}

.cta-stat h4{

font-size:28px;

}

}
/*=========================================
PREMIUM NEWSLETTER
=========================================*/

.newsletter-section{

padding:100px 0;
background:#ffffff;

}

.newsletter-box{

position:relative;
overflow:hidden;
padding:60px;
border-radius:30px;

background:linear-gradient(
135deg,
#0D47A1,
#1565C0,
#1976D2
);

color:#fff;

box-shadow:0 30px 70px rgba(13,71,161,.25);

}

/* Decorative */

.newsletter-box::before{

content:"";
position:absolute;
width:280px;
height:280px;
border-radius:50%;
background:rgba(255,255,255,.08);

top:-100px;
right:-70px;

}

.newsletter-box::after{

content:"";
position:absolute;
width:180px;
height:180px;
border-radius:50%;
background:rgba(255,255,255,.05);

left:-60px;
bottom:-60px;

}

/* Heading */

.newsletter-box h2{

font-size:44px;
font-weight:700;
margin-bottom:20px;
position:relative;
z-index:2;

}

.newsletter-box p{

font-size:18px;
line-height:1.8;
opacity:.95;
margin-bottom:30px;
position:relative;
z-index:2;

}

/* Features */

.newsletter-features{

display:flex;
gap:25px;
flex-wrap:wrap;
position:relative;
z-index:2;

}

.newsletter-features span{

font-weight:600;
font-size:15px;

}

.newsletter-features i{

color:#FFD54F;
margin-right:8px;

}

/* Form */

.newsletter-form{

background:#fff;
padding:12px;
border-radius:18px;
display:flex;
gap:12px;
position:relative;
z-index:2;

}

.newsletter-form input{

flex:1;
border:none;
outline:none;
padding:18px;
font-size:16px;
border-radius:12px;

}

.newsletter-form button{

border:none;
background:linear-gradient(
135deg,
#0D47A1,
#1976D2
);

color:#fff;
padding:18px 30px;
border-radius:12px;
font-weight:700;
transition:.35s;

}

.newsletter-form button:hover{

transform:translateY(-3px);

}

/* Responsive */

@media(max-width:991px){

.newsletter-box{

padding:45px 30px;
text-align:center;

}

.newsletter-box h2{

font-size:34px;

}

.newsletter-features{

justify-content:center;
margin-bottom:25px;

}

.newsletter-form{

flex-direction:column;

}

.newsletter-form button{

width:100%;

}

}

@media(max-width:576px){

.newsletter-box{

padding:35px 22px;

}

.newsletter-box h2{

font-size:28px;

}

.newsletter-box p{

font-size:16px;

}

}

/*=========================================
OUR IMPACT
=========================================*/

.impact-section{

padding:100px 0;
background:#f7faff;
position:relative;
overflow:hidden;

}

.impact-section::before{

content:"";
position:absolute;
width:320px;
height:320px;
border-radius:50%;
background:rgba(13,71,161,.04);

top:-140px;
right:-120px;

}

.impact-section::after{

content:"";
position:absolute;
width:250px;
height:250px;
border-radius:50%;
background:rgba(25,118,210,.05);

left:-80px;
bottom:-120px;

}

/*=========================
Card
=========================*/

.impact-card{

background:#fff;
padding:40px 30px;
border-radius:22px;
text-align:center;
height:100%;
border:1px solid #edf2f7;

box-shadow:0 12px 30px rgba(15,23,42,.06);

transition:.35s;

position:relative;
overflow:hidden;

}

.impact-card::before{

content:"";
position:absolute;

left:0;
top:0;

width:100%;
height:5px;

background:linear-gradient(
90deg,
#0D47A1,
#1976D2
);

transform:scaleX(0);

transform-origin:left;

transition:.35s;

}

.impact-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 55px rgba(13,71,161,.18);

}

.impact-card:hover::before{

transform:scaleX(1);

}

/*=========================
Icon
=========================*/

.impact-icon{

width:90px;
height:90px;

margin:auto;
margin-bottom:25px;

border-radius:22px;

display:flex;
align-items:center;
justify-content:center;

background:linear-gradient(
135deg,
#0D47A1,
#1976D2
);

color:#fff;

font-size:38px;

box-shadow:0 15px 35px rgba(13,71,161,.22);

transition:.35s;

}

.impact-card:hover .impact-icon{

transform:rotate(-8deg) scale(1.08);

}

/*=========================
Numbers
=========================*/

.impact-card h3{

font-size:42px;
font-weight:700;

color:#1F2937;

margin-bottom:12px;

}

.impact-card p{

font-size:17px;
color:#6B7280;

margin:0;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.impact-section{

padding:80px 0;

}

}

@media(max-width:576px){

.impact-card{

padding:30px 25px;

}

.impact-icon{

width:75px;
height:75px;
font-size:30px;

}

.impact-card h3{

font-size:34px;

}

}



/*=========================================================
PAGE HERO
=========================================================*/

.bg-primary{

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--primary-light)
    ) !important;

}

.display-5{

    font-weight:700;

    letter-spacing:-.5px;

}

.display-5 + p{

    opacity:.92;

}

/*=========================================================
FORMS
=========================================================*/

.form-control,
.form-select{

    height:52px;

    border-radius:14px;

    border:1px solid var(--border);

    transition:var(--transition);

    box-shadow:none;

}

.form-control:focus,
.form-select:focus{

    border-color:var(--primary-light);

    box-shadow:0 0 0 .18rem rgba(25,118,210,.15);

}

.form-label{

    color:var(--text);

    font-weight:600;

    font-size:14px;

    margin-bottom:8px;

}

.input-group-lg .form-control{

    height:60px;

}

/*=========================================================
BUTTONS
=========================================================*/

.btn{

    border-radius:14px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    border:none;

    background:

    linear-gradient(
    135deg,
    var(--primary),
    var(--primary-light)
    );

    box-shadow:

    0 12px 30px rgba(13,71,161,.18);

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:

    0 20px 45px rgba(13,71,161,.25);

}

.btn-outline-primary{

    border:2px solid var(--primary-light);

    color:var(--primary);

}

.btn-outline-primary:hover{

    background:var(--primary);

    border-color:var(--primary);

    color:#fff;

}

.btn-outline-danger{

    border-radius:12px;

}

/*=========================================================
CARDS
=========================================================*/

.card{

    border:none;

    border-radius:22px;

    overflow:hidden;

    background:#fff;

    box-shadow:var(--shadow);

}

.card-header{

    background:#fff;

    border-bottom:1px solid var(--border);

    font-weight:700;

    color:var(--text);

    padding:18px 24px;

}

.card-body{

    padding:24px;

}

/*=========================================================
FILTER SIDEBAR
=========================================================*/

.sticky-top{

    top:0px;

    z-index:100;

}

.filter-card{

    border-radius:24px;

    background:#fff;

    box-shadow:var(--shadow);

}

.filter-title{

    font-size:18px;

    font-weight:700;

    margin-bottom:20px;

}

.filter-divider{

    border-top:1px solid var(--border);

    margin:22px 0;

}

/*=========================================================
SEARCH BAR
=========================================================*/

.search-box{

    position:relative;

}

.search-box i{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:var(--text-light);

}

.search-box .form-control{

    padding-left:48px;

}

/*=========================================================
SECTION TITLE
=========================================================*/

.section-title{

    font-size:38px;

    font-weight:700;

    color:var(--text);

}

.section-subtitle{

    color:var(--text-light);

    font-size:17px;

}

/*=========================================================
BADGES
=========================================================*/

.badge{

    padding:8px 14px;

    border-radius:40px;

    font-size:12px;

    font-weight:600;

}

/*=========================================================
COURSE CARD
=========================================================*/

.course-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    position:relative;

    box-shadow:var(--shadow);

    transition:var(--transition);

    height:100%;

}

.course-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.course-thumb{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.45s;

}

.course-card:hover .course-thumb{

    transform:scale(1.08);

}

/*-----------------------------------
Image Overlay
-----------------------------------*/

.course-card::after{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:240px;

    background:linear-gradient(
    to top,
    rgba(0,0,0,.45),
    rgba(0,0,0,0)
    );

    opacity:0;

    transition:.35s;

}

.course-card:hover::after{

    opacity:1;

}

/*-----------------------------------
Body
-----------------------------------*/

.course-body{

    padding:25px;

}

.course-card h5{

    font-size:22px;

    font-weight:700;

    color:var(--text);

    line-height:1.45;

    min-height:68px;

    margin-bottom:15px;

}

/*-----------------------------------
Description
-----------------------------------*/

.course-description{

    color:var(--text-light);

    font-size:15px;

    line-height:1.8;

    margin-bottom:18px;

}

/*-----------------------------------
Meta
-----------------------------------*/

.course-meta{

    display:flex;

    justify-content:space-between;

    margin-bottom:18px;

    font-size:14px;

    color:var(--text-light);

}

.course-meta span{

    display:flex;

    align-items:center;

    gap:6px;

}

/*-----------------------------------
Price
-----------------------------------*/

.course-price{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:20px;

}

.course-price .old{

    color:#9CA3AF;

    text-decoration:line-through;

}

.course-price .new{

    color:var(--success);

    font-size:26px;

    font-weight:700;

}

/*-----------------------------------
Enroll Button
-----------------------------------*/

.course-card .btn{

    width:100%;

}

/*=========================================================
PAGINATION
=========================================================*/

.pagination{

    justify-content:center;

    margin-top:50px;

    gap:8px;

}

.page-item{

    list-style:none;

}

.page-link{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:none;

    border-radius:14px;

    background:#fff;

    color:var(--primary);

    font-weight:600;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.page-link:hover{

    background:var(--primary);

    color:#fff;

}

.page-item.active .page-link{

    background:linear-gradient(
    135deg,
    var(--primary),
    var(--primary-light)
    );

    color:#fff;

}

/*=========================================================
COURSE PLAYER
=========================================================*/

.lesson-link{

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 16px;

    margin-bottom:8px;

    border-radius:14px;

    text-decoration:none;

    color:var(--text);

    font-size:15px;

    transition:var(--transition);

}

.lesson-link:hover{

    background:#EAF4FF;

    color:var(--primary);

}

.lesson-link.active{

    background:linear-gradient(
    135deg,
    var(--primary),
    var(--primary-light)
    );

    color:#fff;

    font-weight:600;

}

.lesson-link.active i{

    color:#fff !important;

}

/*=========================================================
PROGRESS
=========================================================*/

.progress{

    height:12px;

    background:#EAF4FF;

    border-radius:30px;

    overflow:hidden;

}

.progress-bar{

    background:linear-gradient(
    90deg,
    #16A34A,
    #22C55E
    );

    font-size:12px;

}

/*=========================================================
VIDEO
=========================================================*/

.ratio{

    border-radius:22px;

    overflow:hidden;

    background:#000;

}

video{

    width:100%;

    border-radius:22px;

    background:#000;

}

iframe{

    border:none;

}

/*=========================================================
LESSON RESOURCES
=========================================================*/

.resource-box{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px;

    margin-bottom:15px;

    border-radius:16px;

    background:#F8FAFC;

    transition:.3s;

}

.resource-box:hover{

    background:#EAF4FF;

}

/*=========================================================
LESSON NAVIGATION
=========================================================*/

.lesson-navigation .btn{

    min-width:200px;

}

#completeLesson{

    min-width:280px;

    background:linear-gradient(
    135deg,
    #16A34A,
    #22C55E
    );

    border:none;

    font-weight:700;

}

#completeLesson:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(22,163,74,.25);

}

/*=========================================================
COURSE COMPLETED
=========================================================*/

.alert-success{

    border:none;

    border-left:5px solid #16A34A;

    border-radius:24px;

    background:#F0FDF4;

    padding:45px;

}

.alert-success h3{

    font-size:34px;

    font-weight:700;

}
/*=========================================================
PAYMENT CARD
=========================================================*/

.payment-card{

    background:#fff;

    border:none;

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow-lg);

}

.payment-card img{

    width:100%;

    height:100%;

    min-height:500px;

    object-fit:cover;

}

.payment-card .card-body{

    padding:45px;

}

.payment-card strong{

    display:block;

    font-size:13px;

    color:var(--text-light);

    margin-bottom:6px;

    text-transform:uppercase;

    letter-spacing:.5px;

}

.payment-card h1{

    font-size:48px;

    font-weight:700;

    color:var(--primary);

}

.payment-card h2{

    font-size:38px;

    font-weight:700;

    color:var(--success);

}

.payment-card .btn{

    height:58px;

    font-size:18px;

}

/*=========================================================
PAYMENT SUCCESS
=========================================================*/

.success-card{

    background:#fff;

    border-radius:24px;

    box-shadow:var(--shadow-lg);

    padding:50px;

    text-align:center;

}

.success-icon{

    width:110px;

    height:110px;

    margin:auto;

    border-radius:50%;

    background:#ECFDF5;

    color:#16A34A;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:54px;

    margin-bottom:25px;

}

.success-title{

    font-size:38px;

    font-weight:700;

    color:var(--text);

}

.success-text{

    color:var(--text-light);

    font-size:17px;

}

/*=========================================================
PAYMENT FAILED
=========================================================*/

.failed-card{

    background:#fff;

    border-radius:24px;

    padding:50px;

    text-align:center;

    box-shadow:var(--shadow-lg);

}

.failed-icon{

    width:110px;

    height:110px;

    margin:auto;

    border-radius:50%;

    background:#FEF2F2;

    color:#EF4444;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:54px;

    margin-bottom:25px;

}

/*=========================================================
TABLES
=========================================================*/

.table{

    margin-bottom:0;

}

.table thead{

    background:#F8FAFC;

}

.table th{

    color:var(--text);

    font-weight:700;

    border:none;

    padding:16px;

}

.table td{

    padding:16px;

    vertical-align:middle;

    border-color:#EDF2F7;

}

.table tbody tr{

    transition:.25s;

}

.table tbody tr:hover{

    background:#F8FAFC;

}

/*=========================================================
ALERTS
=========================================================*/

.alert{

    border:none;

    border-radius:18px;

    padding:22px;

}

.alert-success{

    background:#ECFDF5;

    color:#166534;

    border-left:5px solid #16A34A;

}

.alert-danger{

    background:#FEF2F2;

    color:#991B1B;

    border-left:5px solid #EF4444;

}

.alert-warning{

    background:#FFF7ED;

    color:#92400E;

    border-left:5px solid #F59E0B;

}

.alert-info{

    background:#EFF6FF;

    color:#1D4ED8;

    border-left:5px solid #1976D2;

}

/*=========================================================
DISPLAY ICONS
=========================================================*/

.display-1{

    font-size:90px;

    color:var(--primary);

}

/*=========================================================
BADGES
=========================================================*/

.badge{

    border-radius:40px;

    padding:8px 14px;

    font-weight:600;

}

/*=========================================================
ANIMATIONS
=========================================================*/

.course-card,
.card,
.payment-card,
.page-link,
.btn{

    transition:all .35s ease;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:1200px){

.course-thumb{

    height:220px;

}

.payment-card img{

    min-height:380px;

}

}

@media(max-width:992px){

.payment-card .card-body{

    padding:35px;

}

.lesson-navigation .btn{

    width:100%;

    margin-bottom:12px;

}

.payment-card img{

    min-height:300px;

}

}

@media(max-width:768px){

.display-5{

    font-size:2.2rem;

}

.payment-card h1{

    font-size:34px;

}

.payment-card h2{

    font-size:30px;

}

.success-title{

    font-size:30px;

}

.course-thumb{

    height:200px;

}

.lesson-navigation .col-6{

    width:100%;

    text-align:center!important;

}

#completeLesson{

    width:100%;

    min-width:auto;

}

.table-responsive{

    border-radius:16px;

}

}

@media(max-width:576px){

.card-body{

    padding:20px;

}

.payment-card .card-body{

    padding:25px;

}

.payment-card img{

    min-height:240px;

}

.course-thumb{

    height:190px;

}

.display-5{

    font-size:1.9rem;

}

.btn{

    width:100%;

}

.page-link{

    width:42px;

    height:42px;

}

}


/*=============================
Tutorial Card
=============================*/

.tutorial-card{

background:#fff;

border-radius:18px;

overflow:hidden;

transition:.35s;

border:1px solid #e9ecef;

}

.tutorial-card:hover{

transform:translateY(-8px);

box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.tutorial-thumb{

width:100%;

height:220px;

object-fit:cover;

transition:.4s;

}

.tutorial-card:hover .tutorial-thumb{

transform:scale(1.05);

}

.tutorial-card h5{

min-height:28px;

}

.tutorial-card p{

min-height:70px;

}

.tutorial-card .badge{

font-size:12px;

}
.tutorial-card .badge.top-0{

display:none !important;

}

.tutorial-card .btn{

border-radius:30px;

padding:8px 18px;

font-weight:600;

}