/*=====================================================
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;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#08111F;
    color:#E5E7EB;
    overflow-x:hidden;
    line-height:1.7;
}

/*=====================================================
COMMON ELEMENTS
=====================================================*/

a{
    text-decoration:none;
    transition:.35s;
    color:inherit;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

img{
    max-width:100%;
    display:block;
}

.container{
    position:relative;
    z-index:2;
}

section{
    padding:100px 0;
}

/*=====================================================
SCROLLBAR
=====================================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#08111F;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(180deg,#2563EB,#7C3AED);
    border-radius:50px;
}

::-webkit-scrollbar-thumb:hover{
    background:#F97316;
}

/*=====================================================
COMMON TITLES
=====================================================*/

.section-subtitle{

    display:inline-block;

    padding:8px 20px;

    background:rgba(37,99,235,.15);

    color:#60A5FA;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.section-title{

    font-size:48px;

    font-weight:800;

    color:#FFFFFF;

    margin-bottom:20px;

    line-height:1.2;

}

.section-title span{

    color:#F97316;

}

p{

    color:#CBD5E1;

    font-size:16px;

    line-height:1.8;

}/*=====================================================
BUTTONS
=====================================================*/

.btn-main{
    display:inline-block;
    padding:15px 35px;
    border-radius:50px;
    background:linear-gradient(135deg,#2563EB,#7C3AED);
    color:#FFFFFF;
    font-size:16px;
    font-weight:700;
    box-shadow:0 12px 30px rgba(37,99,235,.35);
    transition:.35s;
}

.btn-main:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(37,99,235,.50);
    color:#FFFFFF;
}

.btn-second{
    display:inline-block;
    padding:15px 35px;
    border-radius:50px;
    background:linear-gradient(135deg,#F97316,#EA580C);
    color:#FFFFFF;
    font-size:16px;
    font-weight:700;
    transition:.35s;
}

.btn-second:hover{
    transform:translateY(-5px);
    color:#FFFFFF;
}

/*=====================================================
COMMON CARD
=====================================================*/

.card-box{

    background:#1C2433;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:30px;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

    transition:.35s;

}

.card-box:hover{

    transform:translateY(-10px);

    border-color:#2563EB;

    box-shadow:0 25px 60px rgba(37,99,235,.20);

}

/*=====================================================
COMMON SPACING
=====================================================*/

.mt-100{

    margin-top:100px;

}

.mb-100{

    margin-bottom:100px;

}

.py-100{

    padding:100px 0;

}/*=====================================================
CARDS
=====================================================*/

.card-box{

    background:#1C2433;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:35px;

    transition:.4s;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.card-box:hover{

    transform:translateY(-12px);

    border-color:#2563EB;

    box-shadow:0 25px 60px rgba(37,99,235,.25);

}

/*=====================================================
IMAGE
=====================================================*/

.round-img{

    border-radius:20px;

    overflow:hidden;

}

.round-img img{

    width:100%;

    transition:.5s;

}

.round-img:hover img{

    transform:scale(1.08);

}

/*=====================================================
SPACING
=====================================================*/

.mt-80{

    margin-top:80px;

}

.mb-80{

    margin-bottom:80px;

}

.py-100{

    padding:100px 0;

}

/*=====================================================
TOP BAR
=====================================================*/

.top-bar{

    background:linear-gradient(90deg,#0B1220,#111827);

    padding:10px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.top-contact{

    display:flex;

    align-items:center;

    gap:25px;

}

.top-contact a{

    color:#CBD5E1;

    font-size:14px;

    font-weight:500;

}

.top-contact a:hover{

    color:#F97316;

}

.top-social{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:15px;

}

.top-social a{

    width:38px;

    height:38px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#1C2433;

    color:#FFFFFF;

    transition:.35s;

}

.top-social a:hover{

    background:#2563EB;

    transform:translateY(-5px);

}

/*=====================================================
NAVBAR
=====================================================*/

.custom-navbar{

    position:sticky;

    top:0;

    z-index:9999;

    background:rgba(11,17,32,.92);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

    padding:15px 0;

    transition:.4s;

}

.custom-navbar.scrolled{

    padding:8px 0;

    box-shadow:0 15px 35px rgba(0,0,0,.40);

}/*=========================================
LOGO
=========================================*/

.navbar-brand{
    display:flex;
    align-items:center;
    gap:15px;
}

.navbar-brand img{
    width:72px;
    height:72px;
    border-radius:50%;
    object-fit:cover;
    background:#FFFFFF;
    padding:5px;
    border:3px solid rgba(255,255,255,.12);
    box-shadow:0 10px 25px rgba(0,0,0,.35);
    transition:.4s;
}

.navbar-brand img:hover{
    transform:rotate(6deg) scale(1.08);
}

.logo-text h3{
    margin:0;
    font-size:30px;
    font-weight:800;
    color:#FFFFFF;
    letter-spacing:.5px;
}

.logo-text span{
    display:block;
    color:#F97316;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-top:3px;
}

/*=========================================
MENU
=========================================*/

.navbar-nav{
    margin-left:auto;
    align-items:center;
    gap:10px;
}

.nav-link{
    position:relative;
    color:#CBD5E1 !important;
    font-size:16px;
    font-weight:600;
    padding:12px 18px !important;
    transition:.35s;
}

.nav-link:hover,
.nav-link.active{
    color:#FFFFFF !important;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:18px;
    bottom:6px;
    width:0;
    height:3px;
    background:linear-gradient(90deg,#2563EB,#F97316);
    border-radius:50px;
    transition:.35s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:60%;
}

/*=========================================
REGISTER BUTTON
=========================================*/

.register-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 30px;
    margin-left:15px;
    border-radius:50px;
    background:linear-gradient(135deg,#F97316,#EA580C);
    color:#FFFFFF !important;
    font-size:15px;
    font-weight:700;
    letter-spacing:.5px;
    box-shadow:0 12px 30px rgba(249,115,22,.35);
    transition:.35s;
}

.register-btn:hover{
    transform:translateY(-5px);
    color:#FFFFFF;
    box-shadow:0 20px 40px rgba(249,115,22,.50);
}

/*=========================================
MOBILE MENU
=========================================*/

.navbar-toggler{
    border:none;
    background:#1C2433;
    color:#FFFFFF;
    padding:8px 12px;
    border-radius:10px;
}

.navbar-toggler:focus{
    box-shadow:none;
}

@media(max-width:991px){

    .navbar-nav{
        margin-top:20px;
        background:#111827;
        padding:20px;
        border-radius:15px;
        gap:5px;
    }

    .register-btn{
        margin-top:15px;
        margin-left:0;
        width:100%;
    }

    .logo-text h3{
        font-size:24px;
    }

    .logo-text span{
        font-size:12px;
    }

    .navbar-brand img{
        width:60px;
        height:60px;
    }

}
//*=========================================
HERO SECTION
=========================================*/

.hero-section{
    position:relative;
    overflow:hidden;
}

.hero-section .carousel-item{
    height:95vh;
    position:relative;
}

.hero-section .carousel-item img{
    width:100%;
    height:95vh;
    object-fit:cover;
    animation:heroZoom 10s linear infinite alternate;
}

@keyframes heroZoom{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.08);
    }

}

/* Overlay */

.hero-section .carousel-item::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:linear-gradient(
        rgba(5,10,20,.80),
        rgba(5,10,20,.72)
    );

    z-index:1;

}

/* Hero Content */

.hero-content{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:100%;

    z-index:5;

}

.hero-text{

    max-width:680px;

}

.hero-text h5{

    display:inline-block;

    padding:10px 22px;

    background:rgba(37,99,235,.18);

    color:#60A5FA;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    margin-bottom:25px;

}

.hero-text h1{

    font-size:68px;

    font-weight:800;

    color:#FFFFFF;

    line-height:1.15;

    margin-bottom:25px;

}

.hero-text h1 span{

    color:#F97316;

}

.hero-text p{

    font-size:18px;

    color:#CBD5E1;

    margin-bottom:35px;

}

/* Hero Buttons */

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-buttons .btn-main,

.hero-buttons .btn-second{

    padding:16px 40px;

}

/* Hero Statistics */

.hero-stats{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

    margin-top:60px;

}

.stat-box{

    min-width:170px;

    padding:22px 30px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.12);

}

.stat-box h2{

    font-size:36px;

    font-weight:800;

    color:#FFFFFF;

    margin-bottom:5px;

}

.stat-box p{

    margin:0;

    color:#CBD5E1;

    font-size:15px;

}

/* Slider Buttons */

.carousel-control-prev,

.carousel-control-next{

    width:60px;

    height:60px;

    top:50%;

    transform:translateY(-50%);

    border-radius:50%;

    background:rgba(255,255,255,.12);

    margin:0 20px;

}

.carousel-control-prev:hover,

.carousel-control-next:hover{

    background:#2563EB;

}

/* Indicators */

.carousel-indicators button{

    width:14px;

    height:14px;

    border-radius:50%;

    margin:0 6px;

    opacity:.5;

}

.carousel-indicators .active{

    opacity:1;

    background:#F97316;

}

/* Responsive */

@media(max-width:992px){

.hero-section .carousel-item,
.hero-section .carousel-item img{

    height:75vh;

}

.hero-text{

    text-align:center;

    margin:auto;

}

.hero-text h1{

    font-size:46px;

}

.hero-buttons{

    justify-content:center;

}

.hero-stats{

    justify-content:center;

}

}

@media(max-width:576px){

.hero-section .carousel-item,
.hero-section .carousel-item img{

    height:65vh;

}

.hero-text h5{

    font-size:13px;

}

.hero-text h1{

    font-size:34px;

}

.hero-text p{

    font-size:16px;

}

.hero-buttons{

    flex-direction:column;

}

.hero-buttons a{

    width:100%;

    text-align:center;

}

.stat-box{

    width:100%;

}

}/*=========================================
ABOUT SECTION
=========================================*/

.about-section{
    background:#111827;
    padding:100px 0;
}

.about-img{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.40);
}

.about-img img{
    width:100%;
    height:550px;
    object-fit:cover;
    transition:.6s;
}

.about-img:hover img{
    transform:scale(1.08) rotate(1deg);
}

.about-content{
    padding-left:40px;
}

.about-content h2{
    font-size:48px;
    font-weight:800;
    color:#FFFFFF;
    margin-bottom:20px;
}

.about-content p{
    font-size:17px;
    color:#CBD5E1;
    line-height:1.9;
    margin-bottom:20px;
}

.about-list{
    margin-top:30px;
}

.about-list li{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
    color:#E5E7EB;
    font-size:17px;
}

.about-list i{
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#22C55E;
    color:#FFFFFF;
    font-size:15px;
}

/*=========================================
WHY CHOOSE US
=========================================*/

.why-section{
    background:#0B1120;
    padding:100px 0;
}

.why-card{
    background:#1C2433;
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:.4s;
}

.why-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563EB,#F97316);
    transform:scaleX(0);
    transition:.4s;
}

.why-card:hover::before{
    transform:scaleX(1);
}

.why-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(37,99,235,.25);
}

.why-card i{
    width:90px;
    height:90px;
    line-height:90px;
    border-radius:50%;
    font-size:36px;
    color:#FFFFFF;
    background:linear-gradient(135deg,#2563EB,#7C3AED);
    margin-bottom:25px;
    transition:.4s;
}

.why-card:hover i{
    transform:rotate(360deg);
}

.why-card h3{
    color:#FFFFFF;
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.why-card p{
    color:#CBD5E1;
    font-size:16px;
    line-height:1.8;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.about-content{
    padding-left:0;
    margin-top:40px;
}

.about-content h2{
    font-size:38px;
}

.about-img img{
    height:400px;
}

}

@media(max-width:576px){

.about-section,
.why-section{
    padding:70px 0;
}

.about-content h2{
    font-size:30px;
}

.about-img img{
    height:300px;
}

.why-card{
    padding:30px 20px;
}

.why-card i{
    width:75px;
    height:75px;
    line-height:75px;
    font-size:30px;
}

}
/*=========================================
COURSES SECTION
=========================================*/

.course-section{
    background:#111827;
    padding:100px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-heading h2{
    font-size:48px;
    font-weight:800;
    color:#FFFFFF;
    margin-bottom:15px;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#CBD5E1;
    font-size:17px;
}

.course-card{
    background:#1C2433;
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    overflow:hidden;
    height:100%;
    transition:.4s;
}

.course-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(37,99,235,.25);
}

.course-img{
    overflow:hidden;
    height:240px;
}

.course-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.course-card:hover .course-img img{
    transform:scale(1.08);
}

.course-content{
    padding:30px;
}

.course-content h3{
    font-size:26px;
    color:#FFFFFF;
    margin-bottom:15px;
    font-weight:700;
}

.course-content p{
    color:#CBD5E1;
    margin-bottom:25px;
}

.course-btn{
    display:inline-block;
    padding:12px 30px;
    border-radius:50px;
    background:linear-gradient(135deg,#2563EB,#7C3AED);
    color:#FFFFFF;
    font-weight:700;
    transition:.35s;
}

.course-btn:hover{
    background:linear-gradient(135deg,#F97316,#EA580C);
    color:#FFFFFF;
}

/*=========================================
COUNTER SECTION
=========================================*/

.counter-section{
    background:linear-gradient(135deg,#2563EB,#1E3A8A);
    padding:90px 0;
    position:relative;
    overflow:hidden;
}

.counter-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-200px;
    right:-200px;
}

.counter-box{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    padding:35px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    height:100%;
}

.counter-box:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.12);
}

.counter-box h2{
    font-size:52px;
    color:#FFFFFF;
    font-weight:800;
    margin-bottom:10px;
}

.counter-box p{
    color:#E5E7EB;
    margin:0;
    font-size:18px;
}

/*=========================================
NOTICE SECTION
=========================================*/

.notice-section{
    background:#0B1120;
    padding:100px 0;
}

.notice-card{
    background:#1C2433;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
    box-shadow:0 20px 45px rgba(0,0,0,.30);
}

.notice-card h3{
    color:#FFFFFF;
    font-size:28px;
    margin-bottom:25px;
    font-weight:700;
}

.notice-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.notice-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px;
    background:#111827;
    border-radius:15px;
    transition:.35s;
}

.notice-item:hover{
    background:#1E293B;
    transform:translateX(8px);
}

.notice-item i{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#2563EB;
    color:#FFFFFF;
}

.notice-item h5{
    margin:0;
    color:#FFFFFF;
    font-size:18px;
}

.notice-item span{
    color:#94A3B8;
    font-size:14px;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

    .section-heading h2{
        font-size:40px;
    }

    .counter-box{
        margin-bottom:20px;
    }

}

@media(max-width:576px){

    .course-section,
    .counter-section,
    .notice-section{
        padding:70px 0;
    }

    .section-heading h2{
        font-size:30px;
    }

    .course-content{
        padding:25px;
    }

    .counter-box h2{
        font-size:40px;
    }

}/*=========================================
CALL TO ACTION
=========================================*/

.cta-section{
    background:linear-gradient(135deg,#F97316,#EA580C);
    padding:100px 0;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.cta-section::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    left:-250px;
    bottom:-250px;
}

.cta-section .container{
    position:relative;
    z-index:2;
}

.cta-section h2{
    font-size:52px;
    font-weight:800;
    color:#FFFFFF;
    margin-bottom:20px;
}

.cta-section p{
    max-width:750px;
    margin:0 auto 35px;
    font-size:20px;
    color:#FFFFFF;
    line-height:1.8;
}

.cta-btn{
    display:inline-block;
    padding:18px 45px;
    border-radius:50px;
    background:#FFFFFF;
    color:#2563EB;
    font-size:18px;
    font-weight:700;
    transition:.35s;
}

.cta-btn:hover{
    background:#08111F;
    color:#FFFFFF;
    transform:translateY(-6px);
}

/*=========================================
FOOTER
=========================================*/

.footer{
    background:#050B17;
    padding:90px 0 20px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-title{
    font-size:34px;
    font-weight:800;
    color:#FFFFFF;
    margin-bottom:20px;
}

.footer h4{
    color:#FFFFFF;
    font-size:22px;
    margin-bottom:25px;
}

.footer p{
    color:#CBD5E1;
    line-height:1.8;
}

.footer ul{
    padding:0;
    margin:0;
}

.footer ul li{
    margin-bottom:15px;
}

.footer ul li a{
    color:#CBD5E1;
    transition:.35s;
}

.footer ul li a:hover{
    color:#F97316;
    padding-left:8px;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.footer-social a{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#1C2433;
    color:#FFFFFF;
    border-radius:50%;
    transition:.35s;
}

.footer-social a:hover{
    background:#2563EB;
    transform:translateY(-5px);
}

.footer hr{
    margin:60px 0 25px;
    border-color:rgba(255,255,255,.08);
}

.footer-bottom{
    text-align:center;
}

.footer-bottom p{
    margin:0;
    font-size:15px;
    color:#94A3B8;
}

/*=========================================
WHATSAPP BUTTON
=========================================*/

.whatsapp{
    position:fixed;
    left:25px;
    bottom:25px;
    width:60px;
    height:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#25D366;
    color:#FFFFFF;
    border-radius:50%;
    font-size:28px;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
    z-index:999;
    transition:.35s;
}

.whatsapp:hover{
    transform:scale(1.12);
    color:#FFFFFF;
}

/*=========================================
SCROLL TO TOP
=========================================*/

.scroll-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#2563EB;
    color:#FFFFFF;
    border-radius:50%;
    font-size:22px;
    cursor:pointer;
    transition:.35s;
    z-index:999;
}

.scroll-top:hover{
    background:#F97316;
    transform:translateY(-5px);
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

    .cta-section{
        padding:80px 0;
    }

    .cta-section h2{
        font-size:40px;
    }

    .footer{
        text-align:center;
    }

    .footer-social{
        justify-content:center;
    }

}
.btn-login{
    display:inline-block;
    padding:12px 25px;
    background:linear-gradient(135deg,#2563EB,#7C3AED);
    color:#fff;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.btn-login:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(37,99,235,.4);
    color:#fff;
}

@media(max-width:576px){

    .cta-section h2{
        font-size:30px;
    }

    .cta-section p{
        font-size:17px;
    }

    .cta-btn{
        width:100%;
    }

    .footer-title{
        font-size:28px;
    }

    .whatsapp,
    .scroll-top{
        width:50px;
        height:50px;
        font-size:22px;
    }

}