
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: #e4312a !important; /* नया रंग */
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}


.btn.btn.btn-primary:hover {
    background: #e4312a !important;
    color: #e4312a;
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: #e4312a;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: #e4312a !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}

@media (max-width: 350px) {


    .container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm{
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
        
    }
    
    .rounded {
        margin-top: 1rem;
        border-radius: 10px !important;
    }
    
    .sil-1{
        margin-top: 31rem;
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-primary) !important;
    font-size: 17px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #e4312a !important;
}


.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: #e4312a;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 56px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: var(--bs-light) !important;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}
/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/aboutus.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}

.bg-historycrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/history.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}

.bg-contactcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/contact.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
    background-color: #e4312a;
    opacity: 0.8;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    margin-left: 0;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-right: 0;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
    bottom: 30px;
    z-index: 15;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 3px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid #e4312a;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

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

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, 0.4));
    background-size: cover;
    z-index: 10;
    padding: 2rem;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption .text-center {
    max-width: 800px;
    margin: 0 auto;
}

.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-header .carousel-control-prev {
    left: 4px;
}

.carousel-header .carousel-control-next {
    right: 4px;
}

.carousel-header .carousel-control-prev:hover,
.carousel-header .carousel-control-next:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-header .carousel-control-prev-icon,
.carousel-header .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    background-color: #e4312a;
    border-radius: 50%;
}

    


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev,
    .carousel-header .carousel-control-next {
        width: 23px !important;
        height: 22px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .carousel-header .carousel-control-prev {
        left: 20px !important;
    }

    .carousel-header .carousel-control-next {
        right: 20px !important;
    }

    .carousel-header .carousel-control-prev-icon,
    .carousel-header .carousel-control-next-icon {
        width: 18px !important;
        height: 18px !important;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
        bottom: 20px;
    }
    
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        padding: 1rem !important;
    }
}
/*** Carousel Hero Header End ***/


/*** Counter Facts Start ***/
.counter-facts {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, 0.8)), url(../img/breadcrumb.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

.counter-facts .row {
    margin: 0 -15px;
}

.counter-facts .col-6,
.counter-facts .col-md-6,
.counter-facts .col-lg-3 {
    padding: 0 15px;
    margin-bottom: 25px;
}

.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto 20px auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--bs-white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: var(--bs-primary);
    
}
.counter-facts .counter .counter-icon {
    position: relative;
    width: 115px;
    height: 69px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-10px);
    font-size: 50px;
    line-height: 90px;
    color: #e4312a;
    background: rgba(1, 143, 252, 0.5);
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter .counter-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 90px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: rgba(0, 58, 102, 0.5);
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter:hover .counter-icon i {
    transform: rotate(360deg);
    transition: all 0.3s ease;
}
.counter-facts .counter h3 {
    color: var(--bs-primary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 8px 0 6px 0;
}
.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: inline-block;
    color: #e4312a;
    margin-right: 4px;
}

.counter-facts .counter .counter-suffix {
    font-size: 25px;
    font-weight: 600;
    color: #e4312a;
    margin-left: 2px;
    vertical-align: baseline;
}

/* Ensure gap between label and numbers */
.counter-facts .counter .counter-content > .d-flex {
    margin-top: 6px;
    gap: 4px;
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter { margin-bottom: 40px; 
    }
}
/*** Counter Facts End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%; 
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}
/*** Service End ***/


/*** Features Start ***/
.features .feature-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.features .feature-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 58, 102, 0.1);
    z-index: -1;
    transition: 0.5s;
}

.features .feature-item:hover::after {
    height: 100%;
}

.features .feature-item .feature-icon {
    width: 50%;
    height: 103px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon {
    border-radius: 50%;
    
}

.features .feature-item .feature-icon i {
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
    color: #e4312a !important;
    transform: rotate(360deg);
    transition: all 0.5s ease;
}
/*** Features End ***/


/*** Country Start ***/
.country .country-item {
    position: relative;
}

.country .country-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 58, 102, 0.7);
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.country .country-item:hover::after {
    height: 100%;
}

.country .country-item .country-flag {
    position: absolute;
    width: 90px; 
    height: 90px; 
    border-radius: 50%;
    top: -45px; 
    left: 50%; 
    transform: translateX(-50%);
    transition: 0.5s;
    z-index: 2;
}

.country .country-item .country-flag img {
    border: 5px solid var(--bs-white);
    transition: 0.5s;
}

.country .country-item:hover .country-flag img {
    border: 5px solid var(--bs-white);
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

.country .country-item .country-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.country .country-item:hover .country-name {
    opacity: 1;
}

.country .country-item img {
    transition: 0.5s;
}

.country .country-item:hover img {
    transform: scale(1.2);
}

.country .country-item .country-name a.fs-4 {
    transition: 0.5s;
}

.country .country-item .country-name a.fs-4:hover {
    color: var(--bs-secondary) !important;
}
/*** Country End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: #e4312a;
}
/*** testimonial end ***/


/*** training Start ***/
.training .training-item .training-inner {
    position: relative;
}

.training .training-item .training-inner .training-title-name {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    display: flex; 
    flex-direction: column;
    justify-content: end;
    text-align: center;
    transition: 0.5s;
}

.training .training-item {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.training .training-item:hover .training-inner .training-title-name {
    background: rgba(0, 58, 102, 0.5);
}

.training .training-item:hover .training-inner .training-title-name a {
    opacity: 0;
}

.training .training-item .training-inner img {
    transition: 0.5s;
}

.training .training-item:hover .training-inner img {
    transform: scale(1.3);
}

.training .training-item .training-content {
    position: absolute;
    width: 100%;
    bottom: -100%;
    left: 0;
    transition: 0.5s;
}

.training .training-item:hover .training-content {
    bottom: 0;
}  
/*** training End ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.office-img img {
    height: 250px;   /* अपनी जरूरत के हिसाब से बढ़ा/घटा सकते हो */
    width: auto;     /* width auto कर देने से proportion सही रहेगा */
    object-fit: cover; /* इमेज को crop करके भी fit कर देगा */
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: #e4312a !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: #e4312a !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-primary);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: #e4312a;
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:  #e4312a !important;
}
/*** copyright end ***/


	/* दोनों इमेज को समान size और alignment देने के लिए */
		.founder-img {
			width: 181px; /* अपनी जरूरत के हिसाब से adjust करें */
			height: 200px;
			object-fit: cover;
		}
		  /* Zoom effect on hover */
        .service-img {
            overflow: hidden; /* Ensure image doesn't overflow container */
            position: relative;
        }

        .service-img img {
            transition: transform 0.5s ease; /* Smooth zoom */
        }

        .service-img:hover img {
            transform: scale(1.1); /* Zoom in */
            filter: brightness(1.1); /* Optional: slightly brighter on hover */
        }

        /* Optional: style for service buttons */
        .service-title-name a.btn {
            transition: 0.3s ease;
        }

        .service-title-name a.btn:hover {
            transform: translateY(-5px);
        }
		 .footer {
        background: #003a66; /* Dark background */
        color: #ccc;
        font-size: 14px;
        line-height: 1.6;
    }
    .footer h5 {
        color: #e4312a; /* Heading color */
        font-weight: 600;
    }
    .footer a {
        color: #ccc;
        text-decoration: none;
        transition: 0.3s;
        display: block;
        margin-bottom: 5px;
    }
    .footer a:hover {
        color: #e4312a; /* Hover accent */
    }
    .footer .footer-item p {
        max-height: 150px; /* Limit text height */
        overflow: hidden;
        text-overflow: ellipsis;
        color: #ccc;
    }
    .footer .social a {
        background: #222;
        color: #ccc;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-right: 6px;
        transition: 0.3s;
    }
    .footer .social a:hover {
        background: #e4312a;
        color: #fff;
    }

/* Footer contact section improvements */
.footer .footer-item h4 {
    color: #e4312a !important;
    font-weight: 600;
    margin-bottom: 1rem !important;
}

.footer .footer-item a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.footer .footer-item a:hover {
    color: #e4312a;
}

/* Social media icons styling */
.footer .d-flex.align-items-center.flex-wrap {
    margin-top: 1rem;
    gap: 0.5rem;
}

.footer .d-flex.align-items-center.flex-wrap .btn {
    background: #222;
    color: #ccc;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    transition: 0.3s;
    margin: 0 !important;
}

.footer .d-flex.align-items-center.flex-wrap .btn:hover {
    background: #e4312a;
    color: #fff;
    transform: translateY(-2px);
}

.footer .fas.fa-share {
    color: #e4312a !important;
    margin-right: 0.75rem !important;
}
    
    /* Carousel images को uniform height और crop करने के लिए */
    #galleryCarousel .carousel-item img {
        height: 480px; /* आप अपनी जरूरत के हिसाब से adjust कर सकते हैं */
        object-fit: cover; /* image box पूरा भर लेगी, distortion नहीं होगा */
        width: 100%;
    }
    
    /* Fixed size lightbox image */
.fixed-lightbox-img {
    width: 800px;
    height: 500px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* Ensure modal is visible */
#imageLightbox.modal {
    z-index: 1055 !important;
}

#imageLightbox.modal.show {
    display: block !important;
}

/* Modal centering for mobile */
@media (max-width: 768px) {
    #imageLightbox .modal-dialog {
        margin: 0 auto !important;
        max-width: 95% !important;
        width: 95% !important;
        /* margin-bottom: 50%; */
    }
    
    #imageLightbox .modal-content {
        width: 100% !important;
        max-height: 90vh !important;
    }
    
    #imageLightbox .modal-body {
        padding: 10px !important;
        text-align: center !important;
        margin-bottom: 50%;
    }
}

/* Close button on modal */
.custom-close {
    position: absolute;
    top: 10px;
    right: 185px;
    width: 35px;
    height: 35px;
    background-color: #e4312a;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    z-index: 10;
}

.custom-close::before {
    content: '×';
}

/* Overlay + button on card */
.overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,0.6);
    color: white;
    font-size: 2rem;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.overlay-btn:hover {
    background-color: rgba(0,0,0,0.8);
}

/* ===== RESPONSIVE DESIGN IMPROVEMENTS ===== */

/* About Section Responsive Fixes */
@media (max-width: 575.98px) {
    /* About section image and text fixes */
    /*.container-fluid .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }*/
    
    /* About section text padding */
    .col-12.col-lg-6 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        margin-top: 1rem !important;
    }
    
    /* About section image container */
    .bg-light.rounded.overflow-hidden {
        width: 121%;
        margin: -15px -2rem !important;
        border-radius: 0.5rem !important;
    }
    
    /* About section image */
    .bg-light.rounded.overflow-hidden img {
        padding: 1rem;
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        border-radius: 0.5rem !important;
    }
    
    /* Typography fixes */
    .display-6 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .display-5 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }
    
    .display-7{
        font-size: 25px
        };    
    
    h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    h4, h5 {
        font-size: 1.1rem !important;
    }
    
    /* Sub-title spacing */
    .sub-title {
        margin-bottom: 1rem !important;
        padding: 1px 0rem 0rem 0rem !important;
    }
    
    /* Paragraph spacing */
    p {
        /*padding: 0 0.5rem !important;*/
        line-height: 1.6 !important;
    }
    
    /* List items spacing */
    .text-primary.h6 {
        padding: 0 0.5rem !important;
        margin-bottom: 0.75rem !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
    
    /* Single row layout for about section */
    .d-flex.flex-wrap .text-primary.h6 {
        white-space: nowrap;
        font-size: 0.9rem !important;
        margin-bottom: 0 !important;
        text-align: left !important;
        display: flex !important;
        align-items: center !important;
    }
    
    /* Button spacing */
    .btn {
        /*margin: 1rem 0.5rem 0 0.5rem !important;*/
        padding: 0.75rem 1.5rem !important;
        font-size: 0.875rem !important;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* About section improvements */
    .col-12.col-lg-6 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    
    .bg-light.rounded.overflow-hidden {
        margin: 0 1.5rem !important;
    }
    
    .sub-title {
        padding: 0 1.5rem !important;
    }
    
    p {
        padding: 0 1rem !important;
    }
    
    .text-primary.h6 {
        padding: 0 1rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Single row layout adjustments */
    .d-flex.flex-wrap .text-primary.h6 {
        font-size: 0.95rem !important;
        white-space: nowrap;
        text-align: left !important;
        display: flex !important;
        align-items: center !important;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .col-12.col-lg-6 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
    
    .bg-light.rounded.overflow-hidden {
        margin: 0 2rem !important;
    }
}

/* Carousel responsive fixes */
@media (max-width: 575.98px) {
    .carousel-header {
        height: 400px !important;
    }
    
    .carousel-header .carousel-inner .carousel-item {
        min-height: 400px !important;
    }
    
    .carousel-caption {
        padding: 1rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .carousel-caption h1 {
        font-size: 1.25rem !important;
    }
    
    .carousel-caption h4, .carousel-caption h5 {
        font-size: 0.9rem !important;
    }
    
    .carousel-caption p {
        font-size: 0.875rem !important;
    }
    
    .carousel-header .carousel-control-prev,
    .carousel-header .carousel-control-next {
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .carousel-header .carousel .carousel-indicators {
        bottom: 20px !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .carousel-header {
        height: 500px !important;
    }
    
    .carousel-header .carousel-inner .carousel-item {
        min-height: 500px !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .carousel-header {
        height: 600px !important;
    }
    
    .carousel-header .carousel-inner .carousel-item {
        min-height: 600px !important;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .carousel-header {
        height: 700px !important;
    }
    
    .carousel-header .carousel-inner .carousel-item {
        min-height: 700px !important;
    }
}

@media (min-width: 1200px) {
    .carousel-header {
        height: 100vh !important;
    }
    
    .carousel-header .carousel-inner .carousel-item {
        min-height: 100vh !important;
    }
}

/* Counter responsive fixes */
.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--bs-white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: var(--bs-primary);
}

.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 90px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-10px);
    font-size: 50px;
    line-height: 90px;
    color: #e4312a;
    background: rgba(1, 143, 252, 0.5);
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter-facts .counter .counter-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 90px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: rgba(0, 58, 102, 0.5);
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter-facts .counter:hover .counter-icon i {
    transform: rotate(360deg);
    transition: all 0.3s ease;
}

.counter-facts .counter h3 {
    color: var(--bs-primary);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 8px 0 6px 0;
    padding-top: 17px;
}

.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: inline-block;
    color: #e4312a;
    margin-right: 5px;
}

.counter-facts .counter .counter-suffix {
    font-size: 25px;
    font-weight: 600;
    color: #e4312a;
    display: inline-block;
}

/* Counter Facts responsive spacing */
@media (max-width: 575.98px) {
    .counter-facts .row {
        margin: 0 -20px;
    }
    
    .counter-facts .col-6 {
        padding: 0 20px !important;
        margin-bottom: 20px !important;
    }
    
    .counter-facts .counter {
        margin: 0 auto 20px auto !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .counter-facts .row {
        margin: 0 -18px;
    }
    
    .counter-facts .col-6 {
        padding: 0 18px !important;
        margin-bottom: 22px !important;
    }
    
    .counter-facts .counter {
        margin: 0 auto 22px auto !important;
    }
}

@media (max-width: 575.98px) {
    .counter-facts .counter {
        width: 140px !important;
        min-height: 180px !important;
        margin-bottom: 2rem !important;
    }
    
    .counter-facts .counter .counter-icon {
        width: 80px !important;
        height: 80px !important;
        font-size: 30px !important;
        line-height: 70px !important;
        transform: translateY(-8px) !important;
    }
    
    .counter-facts .counter .counter-value {
        font-size: 24px !important;
    }
    
    .counter-facts .counter .counter-suffix {
        font-size: 20px !important;
    }
    
    .counter-facts .counter h3 {
        font-size: 14px !important;
        margin: 8px 0 6px 0 !important;
        padding-top: 14px !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .counter-facts .counter {
        width: 180px !important;
        min-height: 200px !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .counter-facts .counter {
        width: 200px !important;
        min-height: 215px !important;
    }
}

/* Founder Section Spacing */
.service .section-title {
    margin-bottom: 1rem !important;
}

.service .section-title h1 {
    margin-bottom: 0.5rem !important;
}

/* Founder Cards Styling */
.founder-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    background: #ffffff !important;
    padding-bottom: 0 !important;
}

.founder-card * {
    visibility: visible !important;
}

.founder-card h6,
.founder-card span {
    opacity: 1 !important;
    display: block !important;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.founder-img-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px !important;
}

.founder-img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin: 0 !important;
}

.founder-card:hover .founder-img {
    transform: scale(1.05);
}

.founder-title {
    background: #003a66 !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    margin: 0 auto 10px auto !important;
    max-width: 200px;
    display: block !important;
}

.founder-title h6 {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    color: #ffffff !important;
    display: block !important;
    visibility: visible !important;
}

.founder-name {
    padding: 5px 0 0 0 !important;
    display: block !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
}

.founder-name span {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #003a66 !important;
    display: block !important;
    visibility: visible !important;
    margin: 0 !important;
    margin-bottom: 1rem !important;
    padding-bottom: 0 !important;
}

/* Founder images responsive */
@media (max-width: 575.98px) {
    .service .section-title {
        margin-bottom: 0.75rem !important;
    }
    
    .service .section-title h1 {
        margin-bottom: 0.25rem !important;
    }
    
    .founder-img {
        width: 116px !important;
        height: 155px !important;
    }
    
    .founder-title {
        max-width: 180px !important;
        padding: 8px 10px !important;
        margin: 0 auto 8px auto !important;
    }
    
    .founder-img-container {
        margin-bottom: 12px !important;
    }
    
    .founder-title h6 {
        font-size: 0.8rem !important;
        color: #ffffff !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .founder-name span {
        font-size: 0.9rem !important;
        color: #003a66 !important;
        display: block !important;
        visibility: visible !important;
        padding-bottom: 8px !important;
        margin-bottom: 0 !important;
    }
    
    .founder-card {
        padding-bottom: 0 !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .founder-img {
        width: 140px !important;
        height: 140px !important;
    }
    
    .founder-title {
        max-width: 190px !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .founder-img {
        width: 150px !important;
        height: 150px !important;
    }
}

/* About section image full width */
.about .col-12.col-lg-6 img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    display: block !important;
}

.about .bg-light.rounded.overflow-hidden {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Gallery section spacing */
.service .section-title {
    margin-bottom: 3rem !important;
}

.service .section-title h1 {
    margin-bottom: 0.5rem !important;
}

.service .section-title p {
    margin-bottom: 0.5rem !important;
}

/* About section responsive full width */
@media (max-width: 575.98px) {
    .about .col-12.col-lg-6 img {
        width: 100% !important;
        height: 250px !important;
        object-fit: cover !important;
    }
    
    .about .bg-light.rounded.overflow-hidden {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .about .col-12.col-lg-6 img {
        width: 100% !important;
        height: 300px !important;
        object-fit: cover !important;
    }
}

/* Gallery carousel responsive */
@media (max-width: 575.98px) {
    .service .section-title {
        margin-bottom: 0.75rem !important;
    }
    
    .service .section-title h1 {
        margin-bottom: 0.25rem !important;
    }
    
    .service .section-title p {
        margin-bottom: 0.25rem !important;
    }
    
    #galleryCarousel .carousel-item img {
        height: 250px !important;
    }
    
    .fixed-lightbox-img {
        width: 100% !important;
        height: 300px !important;
        max-width: 100% !important;
        max-height: 80vh !important;
        object-fit: cover !important;
    }
    
    .custom-close {
        right: 13px !important;
        top: 16px !important;
        width: 24px !important;
        height: 24px !important;
        z-index: 1000 !important;
        display: flex;
        justify-content: center;
    }
    
    .overlay-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.5rem !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    #galleryCarousel .carousel-item img {
        height: 300px !important;
    }
    
    .fixed-lightbox-img {
        width: 90% !important;
        height: 400px !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    #galleryCarousel .carousel-item img {
        height: 400px !important;
    }
    
    .fixed-lightbox-img {
        width: 80% !important;
        height: 450px !important;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    #galleryCarousel .carousel-item img {
        height: 450px !important;
    }
    
    .fixed-lightbox-img {
        width: 70% !important;
        height: 500px !important;
    }
}

@media (min-width: 1200px) {
    #galleryCarousel .carousel-item img {
        height: 480px !important;
    }
    
    .fixed-lightbox-img {
        width: 800px !important;
        height: 500px !important;
    }
}

/* Navigation responsive */
@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid #eee;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin-top: 0 !important;
        background-color: #f8f9fa !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem !important;
        text-align: center;
    }
}

/* Hindi text spacing fixes */
.carousel-caption h1,
.carousel-caption h4,
.carousel-caption h5,
.carousel-caption p {
    letter-spacing: normal !important;
    word-spacing: normal !important;
    white-space: normal !important;
}

.carousel-caption .text-white {
    letter-spacing: 0 !important;
    word-spacing: normal !important;
}

/* General responsive improvements */
@media (max-width: 575.98px) {
    /* Container padding */
    /*.container, .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }*/
    
    /* Button improvements */
    .btn {
        /*padding: 0.5rem 0rem !important;*/
        font-size: 0.875rem !important;
    }
    
    /* Feature icons */
    .feature-icon i {
        font-size: 2rem !important;
    }
    
    /* Training cards */
    .training-content {
        padding: 1rem !important;
    }
    
    /* Footer */
    .footer-item h4 {
        font-size: 1.1rem !important;
    }
    
    .footer-item a {
        font-size: 0.875rem !important;
    }
    
    /* Section spacing */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .py-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1.5rem !important;
    }
    
    /* Flex improvements */
    .d-flex.flex-column.flex-sm-row {
        flex-direction: column !important;
    }
    
    .d-flex.flex-column.flex-sm-row .btn {
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Grid improvements */
    .row.g-4 {
        --bs-gutter-x: 1rem !important;
        --bs-gutter-y: 1rem !important;
    }
    
    .row.g-5 {
        --bs-gutter-x: 1rem !important;
        --bs-gutter-y: 1rem !important;
    }
    
    /* Text responsiveness */
    .very-small-heading {
        font-size: 1.25rem !important;
    }
    
    .very-small-para {
        font-size: 0.875rem !important;
    }
    
    /* Image responsiveness */
    .img-fluid {
        max-width: 100% !important;
        /*height: auto !important;*/
    }
    
    img {
        max-width: 100% !important;
        /*height: auto !important;*/
    }
}


@media (max-width: 390px) {
    .features .feature-item .feature-icon {
        width: 35%;
        height: 100px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: var(--bs-light);
        transition: 0.5s;
    }
	

}


    
    