body{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

:root{
    --primary-color:#ff7a00;
    --primary-dark:#e56d00;
}

/* some stylings */
.btn-primary{
    background:var(--primary-color) ;
    color:#fff;
    border-radius:50px;
    border:none ;
    transition:.3s;
}
.btn-primary:hover{
    background:var(--primary-dark) ;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(255,122,0,0.3);
}


.custom-navbar{
    background:#fff;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    padding:14px 0;
}

.logo-img{
    height:55px;
    width:auto;
}


.navbar-nav .nav-link{
    color:#333;
    font-weight:600;
    padding:10px 16px ;
    position:relative;
    transition:all .3s ease;
}


.navbar-nav .nav-link:hover{
    color:var(--primary-color);
}


.navbar-nav .nav-link.active{
    color:var(--primary-color);
}

.navbar-nav .nav-link.active::after, .navbar-nav .nav-link:hover::after{
    width:70%;
}

.navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:4px;
    transform:translateX(-50%);
    width:0;
    height:3px;
    background:var(--primary-color);
    border-radius:50px;
    transition:all .3s ease;
}


.btn-login{
    border:2px solid var(--primary-color);
    color:var(--primary-color);
    padding:10px 22px;
    font-weight:600;
    border-radius:50px;
    transition:.3s;
}

.btn-login:hover{
    background:var(--primary-dark);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(255,122,0,0.3);
}

.btn-register{
    background-color:var(--primary-color);
    color:#fff ;
    padding:10px 24px;
    font-weight:600;
    border-radius:50px;
    transition:.3s;
}

.btn-register:hover{
    background:var(--primary-dark);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(255,122,0,0.3);
}

/* Mobile */
@media (max-width:991px){

    .navbar-nav{
        padding-top:20px;
    }

    .navbar-nav .nav-link{
        padding:12px 0 ;
    }

    .btn-login,
    .btn-register{
        width:100%;
    }
}
/* Hero Section */
.hero{
    width: 100%;
    min-height: 100vh;
     background-image: url("../images/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content{
    max-width: 600px;
}

.hero-content h1{
    font-size: 60px;
    font-weight: bold;
}
.hero-content p{
    font-size: 20px;
    margin: 20px 0;
}

/* Hero Section  Responsive*/
@media (max-width: 992px){

    .hero{
        text-align: center;
    }

    .hero-content{
        margin: auto;
    }

    .hero-content h1{
        font-size: 45px;
    }
}
@media (max-width: 576px){

    .hero{
        min-height: 90vh;
    }

    .hero-content h1{
        font-size: 32px;
    }

    .hero-content p{
        font-size: 16px;
    }
}

/* About Us Section */
.about-section{
    background:#f8f9fa;
}

.section-tag{
    display:inline-block;
    background:rgba(255,122,0,.12);
    color:#ff7a00;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.about-title{
    font-size:32px;
    font-weight:700;
    line-height:1.3;
    color:#222;
    margin-bottom:20px;
}

.about-text{
    color:#666;
    line-height:1.9;
    margin-bottom:15px;
}

.about-image-wrapper{
    overflow:hidden;
    border-radius:24px;
}

.about-main-image{
    width:100%;
    border-radius:24px;
    object-fit:cover;
    transition:.4s ease;
}

.about-image-wrapper:hover .about-main-image{
    transform:scale(1.05);
}

.about-feature{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    color:#333;
}

.about-feature{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    color:#333;
}

.about-feature i{
    color:#ff7a00;
    font-size:18px;
}



@media (max-width:991px){

    .about-title{
        font-size:32px;
    }

}



/* course section */
.courses-section{
    background:#f8f9fa;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#222;
}

.section-description{
    max-width:700px;
    margin:15px auto 0;
    color:#666;
    line-height:1.8;
}

.course-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:.4s ease;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.course-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.course-image{
    overflow:hidden;
}

.course-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s ease;
}

.course-card:hover .course-image img{
    transform:scale(1.08);
}

.course-content{
    padding:25px;
}

.course-category{
    display:inline-block;
    background:rgba(255,122,0,.12);
    color:#ff7a00;
    padding:6px 15px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.course-title{
    font-size:22px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.course-text{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.course-footer{
    display:flex;
    justify-content:space-between;
    border-top:1px solid #eee;
    padding-top:18px;
    color:#555;
    font-weight:500;
}

.course-footer i{
    color:#ff7a00;
    margin-right:6px;
}

@media (max-width:991px){

    .section-title{
        font-size:32px;
    }

}

/* acheivements section */
.achievements-section{
    background:#081c34;
    padding:50px 0;
    position:relative;
    overflow:hidden;
}

.achievement-card{
    padding:0px;
}

.achievement-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    background:rgba(255,122,0,.15);
    display:flex;
    align-items:center;
    justify-content:center;
}

.achievement-icon i{
    color:#ff7a00;
    font-size:34px;
}

.achievement-card h2{
    color:#fff;
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
}

.achievement-card p{
    color:rgba(255,255,255,.75);
    font-size:17px;
    margin:0;
    font-weight:500;
}

@media (max-width:991px){

    .achievement-card h2{
        font-size:40px;
    }

}



/* testimonial section */
.testimonials-section{
    background:#f8f9fa;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    height:100%;
    transition:.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.testimonial-rating{
    margin-bottom:20px;
}

.testimonial-rating i{
    color:#ff7a00;
    margin-right:2px;
}

.testimonial-text{
    color:#666;
    line-height:1.9;
    margin-bottom:25px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:15px;
}

.testimonial-user img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-user h5{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#222;
}

.testimonial-user span{
    color:#777;
    font-size:14px;
}

/* contact us section */
.contact-section{
    background:#f8f9fa;
}

.contact-info-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    display:flex;
    gap:20px;
    align-items:flex-start;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.contact-info-card:hover{
    transform:translateY(-5px);
}

.contact-icon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:rgba(255,122,0,.12);
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-icon i{
    color:#ff7a00;
    font-size:22px;
}

.contact-info-card h5{
    font-size:18px;
    font-weight:700;
    color:#222;
    margin-bottom:8px;
}

.contact-info-card p{
    margin:0;
    color:#666;
    line-height:1.7;
}

.contact-form-wrapper{
    background:#fff;
    padding-top:60px;
    padding-bottom:60px;
    padding-left:40px;
    padding-right:40px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.contact-input{
    border:1px solid #e5e5e5;
    border-radius:14px;
    padding:14px 18px;
    box-shadow:none !important;
}

.contact-input:focus{
    border-color:#ff7a00;
}

.contact-btn{
    background:#ff7a00;
    color:#fff;
    padding:14px 35px;
    border:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.contact-btn:hover{
    background:#e56d00;
    color:#fff;
    transform:translateY(-2px);
}

/* map section */
.map-section{
background:#f8f9fa;
}
.map-wrapper{
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}


/* footer section */
.footer-section{
    background:#081c34;
    color:#fff;
    padding-top:90px;
    position:relative;
}

.footer-section::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#ff7a00;
}

.footer-logo{
    text-decoration:none;
    display:inline-block;
    margin-bottom:20px;
}

.footer-logo h2{
    color:#fff;
    font-size:36px;
    font-weight:800;
    margin:0;
    letter-spacing:1px;
}

.footer-logo h2 span{
    color:#ff7a00;
}
.footer-text{
    color:rgba(255,255,255,.75);
    line-height:1.9;
    margin-bottom:25px;
}

.footer-title{
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    color:#fff;
    position:relative;
}

.footer-title::after{
    content:"";
    width:45px;
    height:3px;
    background:#ff7a00;
    position:absolute;
    left:0;
    bottom:-10px;
    border-radius:20px;
}

.footer-links,
.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    text-decoration:none;
    color:rgba(255,255,255,.75);
    transition:.3s;
}

.footer-links a:hover{
    color:#ff7a00;
    padding-left:8px;
}

.footer-contact li{
    color:rgba(255,255,255,.75);
    margin-bottom:18px;
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.footer-contact i{
    color:#ff7a00;
    margin-top:4px;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#ff7a00;
    transform:translateY(-5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:70px;
    padding:25px 0;
}

.footer-bottom-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer-bottom-content p{
    margin:0;
    color:rgba(255,255,255,.7);
}

.footer-bottom-content a{
    color:#ff7a00;
    text-decoration:none;
    font-weight:600;
}

.footer-bottom-content a:hover{
    color:#fff;
}

.footer-bottom-content .fa-heart{
    color:#ff7a00;
}

@media(max-width:768px){

    .footer-bottom-content{
        flex-direction:column;
        text-align:center;
    }

}


/* login section */
.auth-section{
    background:#f8f9fa;
    min-height:80vh;
    display:flex;
    align-items:center;
}

.auth-card{
    background:#fff;
    padding:45px;
    border-radius:24px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.auth-title{
    font-size:24px;
    font-weight:700;
    color:#222;
}

.auth-card .form-label{
    font-weight:600;
    color:#333;
    margin-bottom:8px;
}

.auth-input{
    height:52px;
    border-radius:14px;
    border:1px solid #e5e5e5;
    padding:12px 18px;
    box-shadow:none;
}

.auth-input:focus{
    border-color:#ff7a00;
    box-shadow:none;
}

.form-check-input:checked{
    background-color:#ff7a00;
    border-color:#ff7a00;
}

.form-check-label{
    color:#666;
}

.auth-link{
    color:#ff7a00;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
}

.auth-link:hover{
    color:#e56d00;
}

.auth-btn{
    background:#ff7a00;
    color:#fff;
    padding:14px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.auth-btn:hover{
    background:#e56d00;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(255,122,0,.3);
}

.auth-footer-text{
    color:#666;
    margin:0;
}

@media(max-width:576px){

    .auth-card{
        padding:30px 20px;
    }

    .auth-title{
        font-size:26px;
    }

}

.otp-input{
    width:45px;
    height:55px;
    text-align:center;
    font-size:22px;
    font-weight:600;
    border-radius:14px;
    border:1px solid #e5e5e5;
    box-shadow:none;
}

.otp-input:focus{
    border-color:#ff7a00;
    box-shadow:none;
}

@media(max-width:576px){

    .otp-input{
        width:38px;
        height:50px;
    }

}