
body{
    font-family: 'Segoe UI',sans-serif;
}

/* Navbar */
.logo_img{
    width: 100%;
}
.navbar{
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.navbar-brand{
    font-size:28px;
    font-weight:700;
    color:#c62828 !important;
}

.navbar-brand span{
    color:#0d47a1;
}

.nav-link{
    color:#222 !important;
    font-weight:600;
    margin:0 8px;
    position:relative;
    transition:.3s;
}

.nav-link:hover,
.nav-link.active{
    color:#c62828 !important;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:3px;
    background:#c62828;
    transition:.3s;
    border-radius:20px;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.btn-enroll{
    background:#c62828;
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.btn-enroll:hover{
    background:#0d47a1;
    color:#fff;
}

.navbar-toggler{
    border:none;
}

.navbar-toggler:focus{
    box-shadow:none;
}

@media(max-width:991px){

.navbar-nav{
    margin-top:15px;
}

.nav-link{
    padding:12px 0;
}

.btn-enroll{
    width:100%;
    margin-top:15px;
    text-align:center;
}

}
.hero-section{
    margin-top:0;
}

.carousel-item{
    height:90vh;
    min-height:650px;
    position:relative;
}

.carousel-item img{
    height:100%;
    width:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.60);
}

.carousel-caption{
    bottom:50%;
    transform:translateY(50%);
    text-align:left;
    left:10%;
    right:auto;
    max-width:650px;
    z-index:2;
}

.carousel-caption h1{
    font-size:58px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.carousel-caption p{
    font-size:20px;
    margin-bottom:30px;
    color:#eee;
}

.carousel-caption .btn{
    padding:14px 35px;
    border-radius:40px;
    font-weight:600;
}

.carousel-indicators [data-bs-target]{
    width:12px;
    height:12px;
    border-radius:50%;
}

.carousel-control-next,
.carousel-control-prev{
    width:6%;
}

@media(max-width:991px){

.carousel-item{
    height:75vh;
}

.carousel-caption{
    left:7%;
    right:7%;
    text-align:center;
}

.carousel-caption h1{
    font-size:38px;
}

.carousel-caption p{
    font-size:17px;
}

}

@media(max-width:576px){

.carousel-item{
    height:70vh;
}
.navbar-brand{
    width: 80%;
}
.carousel-caption h1{
    font-size:28px;
}

.carousel-caption p{
    font-size:15px;
}

.carousel-caption .btn{
    width:100%;
    margin-bottom:12px;
}

}
.about-section{
    background:#f8f9fa;
}

.section-subtitle{
    color:#c62828;
    font-weight:700;
    letter-spacing:1px;
}

.section-title{
    font-size:42px;
    font-weight:700;
}

.section-desc{
    max-width:850px;
    color:#666;
    line-height:1.9;
    font-size:17px;
}

.counter-box{
    background:#fff;
    border-radius:15px;
    padding:35px 20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.counter-box:hover{
    transform:translateY(-8px);
}

.counter-box h2{
    color:#c62828;
    font-size:40px;
    font-weight:700;
    margin-bottom:10px;
}

.counter-box p{
    margin:0;
    font-weight:600;
    color:#555;
}

.about-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.about-card:hover{
    transform:translateY(-10px);
}

.about-card i{
    font-size:48px;
    color:#c62828;
    margin-bottom:20px;
}

.about-card h5{
    font-weight:700;
    margin-bottom:15px;
}

.about-card p{
    color:#666;
    margin-bottom:0;
    line-height:1.7;
}

@media(max-width:768px){

.section-title{
    font-size:32px;
}

.section-desc{
    font-size:16px;
}

}
.cta-section{

    position:relative;

    padding:120px 0;

    background:url('https://picsum.photos/1920/1080?random=20') center center;

    background-size:cover;

    background-repeat:no-repeat;

    background-attachment:fixed;

    overflow:hidden;

}

.cta-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(13,71,161,.82),
        rgba(198,40,40,.82)
    );

}

.cta-section .container{
    position:relative;
    z-index:2;
}

.cta-badge{

    display:inline-block;

    padding:10px 22px;

    background:rgba(255,255,255,.15);

    color:#fff;

    border:1px solid rgba(255,255,255,.25);

    border-radius:50px;

    font-weight:600;

    margin-bottom:20px;

}

.cta-section h2{

    color:#fff;

    font-size:48px;

    font-weight:700;

    margin-bottom:25px;

    line-height:1.3;

}

.cta-section p{

    color:#f5f5f5;

    font-size:18px;

    line-height:1.8;

    max-width:750px;

    margin:auto;

}

.cta-section .btn{

    padding:15px 38px;

    border-radius:50px;

    font-weight:600;

}

.btn-outline-light:hover{

    background:#fff;
    color:#0d47a1;

}

@media(max-width:991px){

.cta-section{

    padding:90px 0;

    background-attachment:scroll;

}

.cta-section h2{

    font-size:34px;

}

}

@media(max-width:576px){

.cta-section{

    padding:70px 0;

}

.cta-section h2{

    font-size:28px;

}

.cta-section p{

    font-size:16px;

}

.cta-section .btn{

    width:100%;
    margin-bottom:15px;

}

}
.courses-section{
    background:#ffffff;
}

.course-card{

    background:#fff;

    border-radius:18px;

    padding:35px 30px;

    height:100%;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    border-top:4px solid #c62828;

}

.course-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.course-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#0d47a1;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:35px;

    margin-bottom:25px;

    transition:.3s;

}

.course-card:hover .course-icon{

    background:#c62828;

    transform:rotate(8deg);

}

.course-card h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}

.course-card p{

    color:#666;

    line-height:1.8;

    min-height:75px;

}

.course-card a{

    color:#c62828;

    text-decoration:none;

    font-weight:700;

}

.course-card a:hover{

    color:#0d47a1;

}

@media(max-width:768px){

.course-card{

    padding:30px 20px;

}

.course-card h4{

    font-size:20px;

}

}
.testimonial-section{
    background:#f8f9fa;
}

.testimonial-card{

    position:relative;

    background:#fff;

    padding:35px;

    border-radius:20px;

    height:100%;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.quote-icon{

    width:60px;
    height:60px;

    background:#c62828;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.stars{

    color:#ffc107;

    font-size:22px;

    margin-bottom:25px;

}

.student{

    display:flex;

    align-items:center;

}

.avatar{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#0d47a1;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;

    font-size:20px;

    margin-right:15px;

}

.student h5{

    margin:0;

    font-weight:700;

}

.student span{

    color:#777;

    font-size:14px;

}

@media(max-width:768px){

.testimonial-card{

    padding:25px;

}

}
.contact-section{
    background:#f8f9fa;
}

.contact-box{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.form-control,
.form-select{

    height:55px;

    border-radius:12px;

    border:1px solid #ddd;

}

textarea.form-control{

    height:auto;

}

.form-control:focus,
.form-select:focus{

    border-color:#c62828;

    box-shadow:none;

}

.contact-box .btn{

    padding:14px 35px;

    border-radius:50px;

    font-weight:600;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.info-box{

    background:#fff;

    padding:25px;

    border-radius:15px;

    display:flex;

    align-items:flex-start;

    gap:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.info-box i{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#c62828;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

}

.info-box h5{

    font-weight:700;

    margin-bottom:8px;

}

.info-box p{

    margin:0;

    color:#666;

}

.map-box{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.map-box iframe{

    display:block;

}

@media(max-width:768px){

.contact-box{

    padding:25px;

}

.info-box{

    padding:20px;

}

}
/*==========================
        Footer
===========================*/

.footer{

    background:#08182f;

    color:#d8d8d8;

    padding:70px 0 25px;

}

.footer-logo{

    color:#fff;

    font-size:34px;

    font-weight:700;

    margin-bottom:20px;

}

.footer-logo span{

    color:#c62828;

}

.footer-text{

    color:#b8c2d1;

    line-height:1.8;

    margin-bottom:25px;

}

.footer h5{

    color:#fff;

    margin-bottom:25px;

    font-weight:600;

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#b8c2d1;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#ffffff;

    padding-left:8px;

}

.contact-list{

    list-style:none;

    padding:0;

    margin:0;

}

.contact-list li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:18px;

    color:#b8c2d1;

}

.contact-list i{

    color:#c62828;

    font-size:18px;

    margin-top:3px;

}

.social-links{

    display:flex;

    gap:12px;

}

.social-links a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    text-decoration:none;

    transition:.3s;

    font-size:18px;

}

.social-links a:hover{

    background:#c62828;

    transform:translateY(-5px);

}

.footer-divider{

    margin:50px 0 25px;

    border-color:rgba(255,255,255,.08);

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:10px;

}

.footer-bottom p{

    margin:0;

    color:#aeb8c8;

}

.footer-bottom a{

    color:#ffffff;

    text-decoration:none;

}

.footer-bottom a:hover{

    color:#c62828;

}

@media(max-width:768px){

.footer{

    text-align:center;

}

.contact-list li{

    justify-content:center;

}

.social-links{

    justify-content:center;

}

.footer-bottom{

    flex-direction:column;

    text-align:center;

}

}