.topbar{
    background: #0B2E83;
    color: #fff;
    font-size: 14px;
}

.topbar span{
    margin-right: 15px;
}

.topbar a{
    color: #fff;
    text-decoration: none;
}

.social-icon{
    margin-left: 12px;
    font-size: 16px;
}

.navbar-brand{
    font-size: 28px;
    color: #D93A32 !important;
}

.nav-link{
    font-weight: 500;
    margin-left: 10px;
}

.nav-link:hover,
.nav-link.active{
    color: #D93A32 !important;
}





/* footer */

.footer{
    background:#0B2E83;
    color:#fff;
    padding:70px 0 20px;
}

.footer h4{
    color:#F2D24B;
    margin-bottom:20px;
    font-weight:700;
}

.footer p{
    line-height:1.8;
    margin-bottom:10px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#F2D24B;
}

.footer-social{
    margin-top:20px;
}

.footer-social a{
    width:40px;
    height:40px;
    background:#F2D24B;
    color:#0B2E83;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    margin-right:10px;
    transition:.3s;
}

.footer-social a:hover{
    background:#D93A32;
    color:#fff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.2);
    margin-top:40px;
    padding-top:20px;
    display: flex;
    justify-content: space-between;
    text-align:center;
}
.brand-shish{
    color: white;
    font: bold;
}
.footer-bottom p{
    margin:0;
}
















.hero-section{
    background: linear-gradient(135deg,#fff9d7 0%,#ffffff 50%,#eef4ff 100%);
    padding: 100px 0;
    overflow: hidden;
}

.hero-badge{
    display: inline-block;
    background: #F2D24B;
    color: #0B2E83;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1{
    font-size: 60px;
    font-weight: 800;
    color: #0B2E83;
    margin-bottom: 10px;
}

.hero-content h2{
    color: #D93A32;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p{
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.hero-btns{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom{
    background: #0B2E83;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary-custom:hover{
    background: #D93A32;
    color: #fff;
}

.btn-outline-custom{
    border: 2px solid #0B2E83;
    color: #0B2E83;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline-custom:hover{
    background: #0B2E83;
    color: #fff;
}

.hero-counter{
    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.counter-box{
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    min-width: 150px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.counter-box h3{
    color: #D93A32;
    font-weight: 700;
    margin-bottom: 5px;
}

.counter-box span{
    font-size: 14px;
    color: #666;
}

.hero-image{
    text-align: center;
}

.hero-image img{
    max-width: 100%;
    border-radius: 25px;
}

@media(max-width:991px){

    .hero-section{
        padding: 70px 0;
        text-align: center;
    }

    .hero-content h1{
        font-size: 42px;
    }

    .hero-counter{
        justify-content: center;
    }

    .hero-btns{
        justify-content: center;
    }

    .hero-image{
        margin-top: 40px;
    }
}




#carouselExampleIndicators img{
    height: 560px;
    object-fit: cover;
}

@media(max-width:768px){
    #carouselExampleIndicators img{
        height: 320px;
    }
}




.about-section{
    background:#fff;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.section-tag{
    display:inline-block;
    background:#F2D24B;
    color:#0B2E83;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.about-content h2{
    color:#0B2E83;
    font-size:35px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:20px;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.about-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.highlight-box{
    background:#f8f9fa;
    padding:12px 18px;
    border-radius:12px;
    display:flex;
    align-items:center;
    gap:12px;
    transition:.3s;
}

.highlight-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.highlight-box i{
    font-size:22px;
    color:#D93A32;
}

.highlight-box span{
    font-weight:600;
    color:#0B2E83;
}



@media(max-width:991px){

    .about-content{
        text-align:center;
    }

    .about-content h2{
        font-size:32px;
    }

    .about-highlights{
        grid-template-columns:1fr;
    }
}







.journey-section{
    background:#f8f9ff;
}

.section-tag{
    display:inline-block;
    background:#F2D24B;
    color:#0B2E83;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#0B2E83;
    margin-bottom:15px;
}

.section-desc{
    max-width:700px;
    margin:auto;
    color:#666;
}

.timeline{
    position:relative;
    max-width:1400px;
    margin:40px auto 0;
}

.timeline::before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    background:#F2D24B;
    transform:translateX(-50%);
}

.timeline-item{
    position:relative;
    width:50%;
    padding:20px 40px;
    /* margin-bottom:40px; */
}

.timeline-item:nth-child(odd){
    left:0;
    text-align:right;
}

.timeline-item:nth-child(even){
    left:50%;
}

.timeline-year{
    display:inline-block;
    background:#0B2E83;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-weight:700;
    margin-bottom:15px;
}

.timeline-content{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.timeline-content:hover{
    transform:translateY(-5px);
}

.timeline-content h4{
    color:#D93A32;
    margin-bottom:10px;
    font-weight:700;
}

.timeline-content p{
    color:#666;
    line-height:1.8;
    margin:0;
}

.timeline-item::before{
    content:'';
    position:absolute;
    top:30px;
    width:20px;
    height:20px;
    background:#D93A32;
    border:4px solid #F2D24B;
    border-radius:50%;
    z-index:2;
}

.timeline-item:nth-child(odd)::before{
    right:-10px;
}

.timeline-item:nth-child(even)::before{
    left:-10px;
}

@media(max-width:991px){

    .timeline::before{
        left:20px;
    }

    .timeline-item{
        width:100%;
        left:0 !important;
        text-align:left !important;
        padding-left:60px;
        padding-right:0;
    }

    .timeline-item::before{
        left:10px !important;
    }

    .section-title{
        font-size:32px;
    }
}





.achievement-section{
    background: linear-gradient(135deg,#ffffff,#f8f9ff);
}

.achievement-card{
    background:#fff;
    padding:25px 35px;
    border-radius:20px;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    border-top:5px solid #F2D24B;
}

.achievement-card:hover{
    transform:translateY(-10px);
}

.achievement-icon{
    width:70px;
    height:70px;
    background:#0B2E83;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.achievement-icon i{
    color:#F2D24B;
    font-size:30px;
}

.achievement-card h4{
    color:#0B2E83;
    font-weight:700;
    margin-bottom:15px;
}

.achievement-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}

.achievement-stats{
    background:#0B2E83;
    border-radius:25px;
    padding:30px 20px;
    margin-top:40px;
    display:flex;
    justify-content:space-around;
    flex-wrap:wrap;
    gap:20px;
}

.stat-box{
    text-align:center;
    color:#fff;
}

.stat-box h3{
    font-size:42px;
    font-weight:700;
    color:#F2D24B;
    margin-bottom:5px;
}

.stat-box span{
    font-size:15px;
    font-weight:500;
}









.development-section{
    background:#f8f9ff;
}

.development-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

/* .development-card:hover{
    transform:translateY(-10px);
} */

.development-img{
    overflow:hidden;
}

.development-img img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;
}

.development-card:hover .development-img img{
    transform:scale(1.04);
}

.development-content{
    padding:20px;
}

.development-content h4{
    color:#0B2E83;
    font-weight:700;
    margin-bottom:10px;
}

.development-content p{
    color:#666;
    line-height:1.4;
    margin-bottom:20px;
}

.development-content a{
    color:#D93A32;
    text-decoration:none;
    font-weight:600;
}

.development-content a i{
    transition:.3s;
}

.development-content a:hover i{
    margin-left:5px;
}





.news-section{
    background:#f8f9ff;
}

.news-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

/* .news-card:hover{
    transform:translateY(-10px);
} */

.news-img{
    overflow:hidden;
}

.news-img img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.news-card:hover .news-img img{
    transform:scale(1.04);
}

.news-content{
    padding:15px 20px;
}

.news-date{
    display:inline-block;
    background:#F2D24B;
    color:#0B2E83;
    padding:6px 12px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:10px;
}

.news-content h4{
    color:#0B2E83;
    font-weight:700;
    line-height:1.4;
    margin-bottom:10px;
}

.news-content p{
    color:#666;
    line-height:1.5;
    margin-bottom:10px;
}

.news-content a{
    color:#D93A32;
    text-decoration:none;
    font-weight:600;
}

.news-content a:hover{
    color:#0B2E83;
}















.testimonial-card{
    position: relative;
    background: #fff;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    overflow: hidden;
    transition: .4s;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 4px solid #F2D24B;
}

/* .testimonial-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
} */

.testimonial-card::before{
    content: "❝";
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 100px;
    color: rgba(11,46,131,.05);
    line-height: 1;
}



.rating{
    margin-bottom: 5px;
}

.rating i{
    color: #F2D24B;
    font-size: 15px;
    margin-right: 2px;
}

.testimonial-card p{
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    font-style: italic;
}

.testimonial-user{
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.testimonial-user img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F2D24B;
}

.testimonial-user h5{
    margin: 0;
    color: #0B2E83;
    font-weight: 700;
}

.testimonial-user span{
    color: #D93A32;
    font-size: 14px;
    font-weight: 600;
}

.testimonialSwiper{
    padding-bottom: 40px;
}

.newsSwiper{
    padding-bottom: 40px;
}

.testimonial-pagination .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
}











.video-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.video-card a{
    display:block;
    position:relative;
    overflow:hidden;
}

.video-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.video-card:hover img{
    transform:scale(1.08);
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:75px;
    height:75px;
    border-radius:50%;
    background:#D93A32;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:35px;
}

.play-btn::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:rgba(217,58,50,.4);
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{
        transform:scale(1);
        opacity:1;
    }
    100%{
        transform:scale(1.8);
        opacity:0;
    }
}

.video-content{
    padding:25px;
}

.video-content h4{
    color:#0B2E83;
    font-weight:700;
    margin-bottom:8px;
}

.video-content span{
    color:#D93A32;
    font-weight:600;
}

.youtubeSwiper{
    padding-bottom: 40px;
}











.cta-section{
    position: relative;
}

.cta-wrapper{
    background: linear-gradient(135deg,#0B2E83,#163c9c);
    border-radius: 30px;
    padding: 50px;
    overflow: hidden;
    position: relative;
}

.cta-wrapper::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(242,210,75,.12);
    border-radius:50%;
    top:-120px;
    right:-100px;
}

.cta-wrapper::after{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-100px;
    left:-80px;
}

.cta-tag{
    display:inline-block;
    background:#F2D24B;
    color:#0B2E83;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.cta-content h2{
    color:#fff;
    font-size:35px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:20px;
}

.cta-content p{
    color:rgba(255,255,255,.85);
    line-height:1.5;
    margin-bottom:30px;
}

.cta-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.theme-btn{
    background:#F2D24B;
    color:#0B2E83;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.theme-btn:hover{
    background:#fff;
}

.theme-btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.theme-btn-outline:hover{
    background:#fff;
    color:#0B2E83;
}

.cta-image img{
    max-width:100%;
    max-height:350px;
    object-fit:contain;
    border-radius: 20px;
}

@media(max-width:991px){
    .cta-wrapper{
        padding:40px 25px;
        text-align:center;
    }

    .cta-content h2{
        font-size:30px;
    }

    .cta-btns{
        justify-content:center;
    }

    .cta-image{
        margin-top:30px;
    }
}








.gallery-section{
    background:#f8f9ff;
}

.gallery-item{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}


.gallery-item img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center 30%;
    transition: .5s;
}




.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(11,46,131,.75);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s;
}

.gallery-overlay i{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#F2D24B;
    color:#0B2E83;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    transform:scale(.5);
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-item:hover .gallery-overlay i{
    transform:scale(1);
} 


.aaaaaaaa a{
    text-decoration: none;
    color: #e7e2e2;
}







.drk-contact-hero{
    background: linear-gradient(135deg,#0B2E83,#1d4ed8);
    padding:100px 0;
    text-align:center;
    color:#fff;
}

.drk-contact-hero h1{
    font-size:48px;
    margin-bottom:10px;
}

.drk-breadcrumb{
    font-size:15px;
}

.drk-breadcrumb a{
    color:#F2D24B;
    text-decoration:none;
}

.drk-contact-info,
.drk-contact-form{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    height:100%;
}

.drk-contact-info h3,
.drk-contact-form h3{
    color:#0B2E83;
    margin-bottom:20px;
}

.drk-info-item{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.drk-info-item i{
    width:55px;
    height:55px;
    background:#0B2E83;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.drk-social-links{
    margin-top:30px;
}

.drk-social-links a{
    width:45px;
    height:45px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#0B2E83;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    text-decoration:none;
    transition:.3s;
}

.drk-social-links a:hover{
    background:#F2D24B;
    color:#0B2E83;
}

.drk-contact-form .form-control{
    height:55px;
    border-radius:12px;
}

.drk-contact-form textarea.form-control{
    height:auto;
}

.drk-btn{
    background:#0B2E83;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:12px;
    transition:.3s;
}

.drk-btn:hover{
    background:#F2D24B;
    color:#0B2E83;
}

.drk-map-section{
    padding:30px 0;
}

.drk-map-box{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}







/* modal */
.drk-modal{
    border:none;
    border-radius:24px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.drk-modal-header{
    background:linear-gradient(135deg,#0B2E83,#1d4ed8);
    color:#fff;
    padding:22px 25px;
    text-align:center;
    position:relative;
}

.drk-modal-header h4{
    margin:0;
    font-size:24px;
    font-weight:700;
}

.drk-modal-body{
    padding:30px;
}

.drk-modal-text{
    text-align:center;
    color:#666;
    margin-bottom:25px;
    line-height:1.7;
}

.drk-input{
    height:52px;
    border-radius:12px;
    border:1px solid #e5e7eb;
    box-shadow:none !important;
}

.drk-input:focus{
    border-color:#0B2E83;
}

.drk-modal-btn{
    width:100%;
    border:none;
    padding:14px;
    border-radius:12px;
    background:#0B2E83;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.drk-modal-btn:hover{
    background:#F2D24B;
    color:#0B2E83;
}

.modal-backdrop.show{
    opacity:.75;
}








/* sticky btn */
.drk-sticky-buttons{
    position:fixed;
    right:0;
    top:50%;
    transform:translateY(-50%);
    z-index:9999;

    display:flex;
    flex-direction:column;
    gap:8px;
}

.drk-vertical-btn{
    writing-mode:vertical-rl;
    transform:rotate(360deg);

    text-decoration:none;
    color:#fff;

    padding:20px 10px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;

    border-radius:15px 0 0 15px ;

    transition:.3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.drk-contact-btn{
    background:linear-gradient(135deg,#0B2E83,#1d4ed8);
}

.drk-enquiry-btn{
    background:#F2D24B;
    color:#0B2E83;
}

/* .drk-vertical-btn:hover{
    font-weight: 700;
} */

@media(max-width:768px){

    .drk-vertical-btn{
        font-size:12px;
        padding:15px 8px;
    }
}

.top-contact-link{
    text-decoration:none;
    color:inherit;
    transition:.3s;
}

.top-contact-link:hover{
    color:#F2D24B;
}








.form-control{
    height:55px;
    border:1px solid #dfe3eb;
    border-radius:12px;
    padding:12px 18px;
    font-size:15px;
    transition:all .3s ease;
    box-shadow:none;
}

textarea.form-control{
    min-height:140px;
    resize:none;
}

/* Hover Effect */
.form-control:hover{
    border-color:#0B2E83;
    transform:translateY(-2px);
}

/* Focus Effect */
.form-control:focus{
    border-color:#0B2E83;
    box-shadow:0 0 0 4px rgba(11,46,131,.12);
    transform:translateY(-2px);
}

/* Placeholder */
.form-control::placeholder{
    color:#9aa3b2;
}




/* .logo-img img{
    height: 60px;
    width: 100%;
} */

.logo-img img{
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 768px){
    .logo-img img{
        height: 45px;
    }
}

@media (max-width: 576px){
    .logo-img img{
        height: 40px;
    }
}




.drk-info-item a{
    text-decoration: none;
    color: inherit;
}

.drk-info-item a:hover{
    text-decoration: none;
    color: inherit;
}


.drk-info-item a{
    text-decoration: none;
    color: inherit;
}

.drk-info-item a:hover{
    text-decoration: none;
    color: inherit;
}




.form-check-label a {
    color: #1742B8;
    text-decoration: none;
    font-weight: 00;
}

.form-check-label a:hover {
    color: #1742B8;
    text-decoration: underline;
}


.footer-contact p{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}



.footer-contact a{
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
    word-break: break-word;
}

/* .footer-contact a:hover{
    color: #ff6b00;
    text-decoration: none;
} */

@media (max-width: 576px){
    .footer-contact p{
        font-size: 14px;
    }
}






/* Tablet */
@media (max-width: 991px){
    #carouselExampleIndicators .carousel-item img{
        height: 350px;
    }
}

/* Mobile */
@media (max-width: 767px){
    #carouselExampleIndicators .carousel-item img{
        height: 280px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon{
        width: 25px;
        height: 25px;
    }

    .carousel-indicators button{
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }
}

/* Small Mobile */
@media (max-width: 480px){
    #carouselExampleIndicators .carousel-item img{
        height: 180px;
    }
}