
/*** 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: white;
    color: black !important;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: rgb(255, 255, 255) !important;
    color: white;
    border: 1px solid #002147;
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: white;
}


/*** 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 #002147 !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 #002147 !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #07436c;
    font-family: 'Josefin Sans', sans-serif;
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid #07436c !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  #07436c !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: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Josefin Sans', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #002147!important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    text-transform: uppercase;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: #002147!important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #002147!important;
}

.navbar-light .navbar-brand img {
    max-height: 110px;
    transition: .5s;
    /* margin-top: 10px;
    margin-bottom: 10px; */
}

.sticky-top .navbar-light .navbar-brand img {
   max-height: 100px;
    ;
}

.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: #002147;
    color: #ffffff;
}

.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 #002147 !important;
        color: #002147;
    }

    .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: #002147 !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 60px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background:#ffffff!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/breadcrumb.png);
    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: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.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: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.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, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}
/*** 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.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

.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: 100px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-20px);
    font-size: 50px;
    line-height: 90px;
    color: var(--bs-secondary);
    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: 0 0 5px 0;
}
.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--bs-secondary);
}

@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: #000000;
    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 #ffffff;
}

.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;
    background-color: #e0e0e0;
}

.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: 120px; 
    height: 120px;
    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%;
    background: black !important;
}

.features .feature-item .feature-icon i {
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
    color: #d2a025 !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: #000000;
}

.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: var(--bs-secondary);
}
/*** 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;
}

.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: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: #ffffff;
}
.footer .footer-item a {
    line-height: 30px;
    color:#000000;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    /* letter-spacing: 2px; */
    color: #000000;
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #002147!important;
    color:white;
}
/*** copyright end ***/


#slider{
    width:100%;
    margin:0 auto;
    position:relative;
    overflow:hidden;
    box-shadow:2px 5px 10px rgba(0,0,0,0.4);;
  }
  
  .slide{
    width:100%;
    
    display:none;
    animation-name:fade;
    animation-duration:1s;
    
  }
  img{
   width:100%; 
  }
  @keyframes fade{
    from{opacity:0.5;}
    to{opacity:1;}
  }
  
  .controls{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:1.5em;
    padding:15px 10px;
    border-radius:5px;
    
  }
  
  .controls:hover{
    /* background:#07436c; */
    color:white;
    transition:0.3s;
  }
  
  .controls:active{
    color:rgb(255, 255, 255);
  }
  
  #left-arrow{
    left:10px;
    margin-top:150px;
  }
  
  #right-arrow{
    right:10px;
    margin-top:150px;
  }
@media (max-width: 768px) {
  #left-arrow {
    top: 30px;
    left:-5px;
  }
  #right-arrow {
       top: 30px;
        /* left:15px; */
  }
}
  
  @media (max-width:576px){
    #slider{width:100%;
    
    }
    
    .controls{
      font-size:1em;
    }
    
    #dots-con{
      display:none;
    }
  }
  .gallery-wrapper {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	overflow-x: hidden;
    background-color: rgb(255, 255, 255);;
}

.gallery-wrapper img {
	max-width: 100%;
	transition: all 0.2s ease-in-out;
}

.gallery-wrapper .gallery-img img {
	cursor: pointer;
    border-radius: 10px;
}

.gallery-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem;
	z-index: 2;
	position: relative;
   
}
.gallery-wrapperr {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem;
	z-index: 2;
	position: relative;
}

.gallery-popup.active + .gallery-overlay {
	content: "";
	position: fixed;
	width: 100%;
	height: 100%;
	inset: 0;
	background-color: rgb(0 0 0 / 75%);
	z-index: 5;
	overflow: hidden;
}

.gallery-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: max-content;
	height: max-content;
	padding: 0px;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 6;
	animation: showPopUp 0.45s linear;
}

.gallery-popup .close,
.gallery-popup .next,
.gallery-popup .prev {
	position: absolute;
	top: 0;
	right: 2rem;
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-popup img {
	width: auto;
	max-height: 100%;
	object-fit: contain;
}

.gallery-popup .close {
	width: 30px;
	height: 30px;
	cursor: pointer;
	top: 0px;
	right: 0;
}

.gallery-popup .next {
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 20px;
	font-size: 20px;
	cursor: pointer;
	padding: 10px;
	background-color: rgb(255 255 255 / 75%);
}

.gallery-popup .prev {
	left: 0px;
	right: auto;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 20px;
	font-size: 20px;
	cursor: pointer;
	padding: 10px;
	background-color: rgb(255 255 255 / 75%);
}

.gallery-wrapper .gallery-inner {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(4, 1fr);
	position: relative;
	z-index: 4;
    margin-top: -50px;
}

@keyframes showPopUp {
	0% {
		opacity: 0;
		visibility: hidden;
	}
	50% {
		opacity: 0.5;
		visibility: visible;
	}
	100% {
		opacity: 1;
		visibility: visible;
	}
}

@keyframes imgTransitionNext {
	0% {
		transform: translateX(100vw);
		opacity: 0;
	}
	
	5% {
		transform: translateX(95vw);
		opacity: 0.15
	}
	
	10% {
		transform: translateX(90vw);
		opacity: 0.1;
	}
	
	15% {
		transform: translateX(85vw);
		opacity: 0.20
	}
	
	20% {
		transform: translateX(80vw);
		opacity: 0.2;
	}
	
	25% {
		transform: translateX(75vw);
		opacity: 0.20
	}
	
	30% {
		transform: translateX(70vw);
		opacity: 0.3;
	}
	
	35%{
		transform: translateX(75vw);
		opacity: 0.35;
	}
	
	40% {
		transform: translateX(60vw);
		opacity: 0.4;
	}
	
	45%{
		transform: translateX(55vw);
		opacity: 0.45;
	}
	
	50% {
		transform: translateX(50vw);
		opacity: 0.5;
	}
	
	55%{
		transform: translateX(45vw);;
		opacity: 0.55;
	}
	
	60% {
		transform: translateX(40vw);
		opacity: 0.6;
	}
	
	65%{
		transform: translateX(65vw);
		opacity: 0.65;
	}
	
	70% {
		transform: translateX(30vw);
		opacity: 0.7;
	}
	
75%{
		transform: translateX(25vw);
		opacity: 0.75;
	}
	
	80% {
		transform: translateX(20vw);
		opacity: 0.8;
	}
	
	85%{
		transform: translateX(15vw);
		opacity: 0.85;
	}
	
	90% {
		transform: translateX(10vw);
		opacity: 0.9;
	}
	
	95%{
		transform: translateX(5vw);
		opacity: 0.95;
	}
	
	100%{
		transform: translateX(0vw);
		opacity: 1;
	}
}


@keyframes imgTransitionPrev {
	0% {
		transform: translateX(-100vw);
		opacity: 0;
	}
	
	5% {
		transform: translateX(-95vw);
		opacity: 0.15
	}
	
	10% {
		transform: translateX(-90vw);
		opacity: 0.1;
	}
	
	15% {
		transform: translateX(-85vw);
		opacity: 0.20
	}
	
	20% {
		transform: translateX(-80vw);
		opacity: 0.2;
	}
	
	25% {
		transform: translateX(-75vw);
		opacity: 0.20
	}
	
	30% {
		transform: translateX(-70vw);
		opacity: 0.3;
	}
	
	35%{
		transform: translateX(-75vw);
		opacity: 0.35;
	}
	
	40% {
		transform: translateX(-60vw);
		opacity: 0.4;
	}
	
	45%{
		transform: translateX(-55vw);
		opacity: 0.45;
	}
	
	50% {
		transform: translateX(-50vw);
		opacity: 0.5;
	}
	
	55%{
		transform: translateX(-45vw);
		opacity: 0.55;
	}
	
	60% {
		transform: translateX(-40vw);
		opacity: 0.6;
	}
	
	65%{
		transform: translateX(-65vw);
		opacity: 0.65;
	}
	
	70% {
		transform: translateX(-30vw);
		opacity: 0.7;
	}
	
75%{
		transform: translateX(-25vw);
		opacity: 0.75;
	}
	
	80% {
		transform: translateX(-20vw);
		opacity: 0.8;
	}
	
	85%{
		transform: translateX(-15vw);
		opacity: 0.85;
	}
	
	90% {
		transform: translateX(-10vw);
		opacity: 0.9;
	}
	
	95%{
		transform: translateX(-5vw);
		opacity: 0.95;
	}
	
	100%{
		transform: translateX(0vw);
		opacity: 1;
	}
}

@media only screen and (max-width: 1280px) {
	.gallery-wrapper .gallery-inner {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media only screen and (max-width: 768px) {
	.gallery-wrapper .gallery-inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery-popup .next {
		right: 0px;
	}
	.gallery-popup .prev {
		left: 0px;
	}
	
	.gallery-popup {
		top: 60px !important;
		left: 50% !important;
		transform: translate(-50%, 0%);
		height: calc(350px - 60px)
	}
}

@media only screen and (max-width: 600px) {
	.gallery-wrapper .gallery-inner {
		grid-template-columns: repeat(1, 1fr);
	}
}


/* Shakti */
/* ........................... */


/* about section */

.about-image {
    position: relative;
   
}

.about-image img {
    width: 100%;
    height: 350px;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background: rgba(0, 0, 0, 0.6);  */
    color: #d6a326;
    padding: 20px 40px;
    text-align: center;
    border-radius: 5px;
}

.image-overlay h5 {
    margin: 0;
    font-size: 34px;
    font-weight: bold;
    /* color: #d6a326; */
}

  
.sub-title1{
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #fffdfd;
    font-family: 'Josefin Sans', sans-serif;
}
.sub-title1::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid #d6a326 !important;
}

.sub-title1::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid  #002147 !important;
}


.containerxxx {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 50px 10px;
}

.card {
    border: 2px solid #002147;
    border-radius: 15px;
    padding: 20px;
    width: 630px;
    text-align: center;
    position: relative;
}

.card h5 {
    font-size: 32px;
    margin-bottom: 15px;
}

.btn {
background-color: #ffffff;
    color: #07436c;
    font-size: 14px;
    font-weight: bold;
    border: none;
    padding: 3px -5px;    cursor: pointer;
    border-radius: 8px;
}

.btn:hover {
   background-color: #ffffff;
    color: #002147;
}


.btnn {
background-color:#002147;
    color: white;
    font-size: 20px;
    font-weight: bold;
    border: none;
    /* padding: 3px -5px;    */
     cursor: pointer;
         text-align: center;
    border-radius: 8px;
        width: 32px;
    height: 32px;
}

.btnn:hover {
   background-color:#002147;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .card {
        width: 90%;
    }
}

/* ........................... */
/* our mission  */

.containers {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 20px;
    background: rgb(0, 0, 0);
}

.cards {
    background: rgb(255, 255, 255);
    border: 2px solid #b8860b;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.3);
    padding: 30px;
    width: 650px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.cards:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 15px rgba(255, 215, 0, 0.5);
}

.cards i {
    font-size: 60px;
    color: #b8860b;
    margin-bottom: 15px;
}

.cards h5 {
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
}

.cards p {
    font-size: 16px;
    line-height: 1.6;
    color: rgb(88, 83, 83);
}

/* Responsive Design */

@media (max-width: 1200px) {
    .containers {
        flex-direction: row;
        flex-wrap: nowrap; 
        justify-content: center;
    }
    .cards {
        width: 50%; 
    }
}

@media (max-width: 1024px) {
    .containers {
        flex-direction: row; 
        flex-wrap: nowrap; 
        justify-content: center; 
    }
    .cards {
        width: 50%; 
    }
}

@media (max-width: 768px) {
    .containers {
        flex-direction: column; 
        align-items: center;
    }
    .cards {
        width: 90%;
    }
}



/* ........................... */
/* Gallery Container */

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 10px;
}
.gallery-item {
    flex-basis: 32.7%;
    margin-bottom: 6px;
    opacity: .85;
    cursor: pointer;
}
.gallery-item:hover {
    opacity: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.gallery-content {
    font-size: .8em;
}

.lightbox {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;              
    overflow: auto;
    top: 0;
    left: 0;
}
.lightbox-content {
    position: relative;
    width: 70%;
    height: 70%;
    margin: 5% auto;
}
.lightbox-content img {
    border-radius: 7px;
    box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 7px;
    top: 45%;
    cursor: pointer;
}
.lightbox-prev {
    left: 0;
}
.lightbox-next {
    right: 0;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: .8;
}

@media (max-width: 767px) {
    .gallery-container {
        width: 100%;
    }
    .gallery-item {
        flex-basis: 49.80%;
        margin-bottom: 3px;
    }
    .lightbox-content {
        width: 80%;
        height: 60%;
        margin: 15% auto;
    }
}
@media (max-width: 480px) {
    .gallery-item {
        flex-basis: 100%;
        margin-bottom: 1px;
    }
    .lightbox-content {
        width: 90%;
        margin: 20% auto;
    }
}



/* ........................... */
/* Contact Section */



.contact-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100vh;
    width: 100%;
    background-size: cover;
    color: #000000;
   
}

/* Sidebar with Social Icons */
.social-sidebar {
    /* position: absolute; */
    left: 235px;
    top: 50%;
    /* transform: translateY(-50%); */
    background: #e7e7e7;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-sidebar a {
    display: block;
    color: white;
    font-size: 18px;
    margin: 20px 0;
    transition: 0.3s;
}

.social-sidebar a:hover {
    color: #d9a520;
}

/* Contact Box */
.contact-box {
    background: #07436c;
    color: black;
    padding: 50px;
    width: 410px;
    height: 550px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
  
}

.contact-box h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: bold;
    color:white
   
    
}

.contact-box hr {
    border: none;
    height: 1px;
    background: rgb(255 255 255 / 40%);
    margin-bottom: 45px;
}

/* Contact Item */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.contact-item h3{
    /* font-family: 'Poppins', sans-serif; */
    font-size: 22px;
    font-weight: bold;
    color:white;
}
.contact-item p{
    /* font-family: 'Poppins', sans-serif; */
color: rgb(255, 255, 255);
  
}

.contact-item i {
    font-size: 24px;
    background: rgb(255, 255, 255);
    color:#07436c;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0; /* Prevent icons from shrinking */
}

.shrink{
   flex-shrink: 0;
}
/* Map Section */
.map-section {
    width: 480px;
    height: 370px;
    overflow: hidden;
}

/* ======= Mobile Responsive Changes (Only for Mobile Devices) ======= */
@media (max-width: 768px) {
    .contact-container {
        display: flex;
        flex-direction: column; /* Reverse order */
        align-items: center;
        justify-content: center;
        text-align: center;
        height: auto;
        padding: 20px;
    }

    /* Map should appear first */
    .map-section {
        width: 100%;
        max-width: 480px;
        height: 250px;
        /* margin-bottom: 20px; */
        order: -2;
    }

    /* Contact Box in Full Width */
    .contact-box {
        width: 90%;
        height: auto;
        padding: 30px;
        margin-bottom: 20px;
        order: -1;
    }
    .contact-item {
    display: flex;
    flex-direction: column;
    }

    /* Social Sidebar (Now at Bottom and Horizontal) */
    .social-sidebar {
        position: static; /* Remove absolute positioning */
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding: 10px;
        background: black;
        margin-top: -20px;
    }

    .social-sidebar a {
        font-size: 16px;
        margin: 10px;
        padding: 10px;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .map-section {
        height: 200px; /* Reduce height */
    }

    .contact-box {
        width: 100%;
        padding: 20px;
    }

    .social-sidebar a {
        font-size: 14px;
        margin: 5px;
    }
}


/* 
....... */
.py-15 {
    padding-top: 3rem !important;
    /* padding-bottom: 3rem !important; */
}
.page-header-inner {
    background: rgba(15, 23, 43, .7);
    background-image:url('../img/banners1.png');
    /* background-color: #002147; */


}

/* Home page and About page */

.feature-item {
    width: 100%;
    height: 100%;
    min-height: 250px; /* Adjust as needed */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevent shrinking */
    border-radius: 10px;
    background-color: #f8f9fa; /* Light background for visibility */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow */
}
.feature-icon {
    flex-shrink: 0; /* Ensures icons don't shrink */
}
.feature-content {
    flex-grow: 1; /* Ensures the text expands properly */
    text-align: center;
}


/* service page */


.experience-one {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #07436c;
    background-image: url('../img/bg1.png');
    margin-top: -115px;
}

.ok{
      
    content: '';
    background: url('../img/bg2.png');
   
    background-repeat: no-repeat;

}

@media (max-width: 767px) {
  .ok {
    background-image: none !important;
    /* or to remove all background settings:
       background: none !important;
    */
  }
}

.okk{
     
    background: url('../img/bg3.png');
        background-repeat: no-repeat;
            transform: translateX(-22.8727px);
            background-color: #f7f7f9;
       
   
}

.experience-one__single {
    background-color: #1a1d27;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
}

.experience-one__single:hover {
    background-color: #ffffff;
    transform: translateY(-10px);
}

.experience-one__icon {
    font-size: 40px;
    color: #ff4040;
    margin-bottom: 20px;
}

.experience-one__title {
    font-size:19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.experience-one__title a {
    color: #ffffff;
    text-decoration: none;
    text-align: left;
}

.experience-one__text {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.7;
}



.custom-card {
    display: flex;
    align-items: left
    ;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    color: #fff;
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.icon-left {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #07436c; /* Customize icon bg color */
    border-radius: 50%;
    display: flex;
    align-items: left;
    justify-content: left;
    margin-right: 20px;
}

.icon-left img {
    width: 30px;
    height: 30px;
}

.custom-card .experience-one__content {
    flex: 1;
}

.custom-card .experience-one__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.custom-card .experience-one__title a {
    color: #07436c;
    text-decoration: none;
    font-size: 16px;
    text-align: left !important;
}

.custom-card .experience-one__title a:hover {
    color: #07436c;
}

.custom-card .experience-one__text {
    font-size: 14px;
    color: #000000;
}




.faq-section {
  padding: 60px 0;
  background-color: #121212;
  color: white;
}

.faq-header h6 {
  font-weight: 600;
  color: #07436c;
}

.accordion-button {
  background-color: #07436c;
  color: white;
}

.accordion-button:not(.collapsed) {
  background-color: #07436c;
  color: white;
}

.accordion-item {
  /* background-color: #1e1e1e; */
  border: none;
  margin-bottom: 10px;
}

.accordion-body {
  background-color: #d4d4d4;
  color: #000000;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}


.footers{
      background-image:url('../img/testi-bg.jpg');
}
.feature-list li {
  background: #f8f9fa;
  color: black;
  border-left: 5px solid #07436c;
  padding: 12px 16px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  transition: background 0.3s;
}

.feature-list li:hover {
  background: #e6f0ff;
}

.feature-list li i {
  color: #07436c;
  margin-right: 10px;
  font-size: 18px;
}


/* Container & background */
.counter-section {
  position: relative;
  padding: 60px 20px;
  background-image: url('../img/counter.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  color: #fff;
  overflow: hidden;
}

.counter-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

/* Layout */
.container {
  /* max-width: 1200px; */
  margin: 0 auto;
  position: relative; 
  z-index: 1;
}

.counter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
   align-items: center;
}

.counter-item {
  flex: 1 1 220px;
  min-width: 180px;
  text-align: center;
   position: relative;
  padding: 0 20px;
}
.counter-item + .counter-item {
  border-left: 1px solid rgba(255,255,255,0.6);
}

.number-wrapper {
  display: inline-flex;
  align-items: baseline;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.number {
  display: inline-block;
  min-width: 1ch; /* keep width during animation */
}

.suffix {
  margin-left: 4px;
  font-size: 1.25rem;
  font-weight: 500;
}

.label {
  margin-top: 8px;
  font-size: 1rem;
  text-transform: none;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .counter-section {
    padding: 40px 15px;
  }
  .number-wrapper {
    font-size: 2rem;
  }
  .suffix {
    font-size: 1rem;
  }
  .counter-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .counter-item {
    flex: 1 1 100%;
  }
}

 .verdana-body {
    font-family: Verdana, sans-serif !important;
  }



  /* dotted blue line on top of footer */
.footer {
  position: relative; /* needed for ::before */
  padding-top: 20px; /* ensure space so line isn't cut off */
      border-top: 2px dashed #000000;
}


.py-13{
     padding-top: 2rem !important;
    padding-bottom: 2rem !important
}





.testimonials-wrap {
			padding: 40px 0;
      background-color: #3e8cda;

          padding: 20px 0px 20px;
    background-color: #ffffff;
    /* border-top: 1px dashed #3f91de; */
   background-image: url('../img/bg-shape-7.jpg');
        background-size: cover; 
        background-position: center; 
        background-repeat: no-repeat; 
        background-attachment:fixed; 
        width: 100%;
  
        opacity: 1px;;
        /* background-color: rgb(19, 19, 19); */
		}
		.heading-section {
			text-align: center;
		}
		.sub-heading {
			font-family: 'Lato', sans-serif;
		    font-size: 12px;
		    display: block;
		    font-weight: 600;
		    color: #3e8cda;
		    text-transform: uppercase;
		    letter-spacing: 2px;
		}
		.heading-section h2 {
			font-size: 28px;
		    font-weight: 600;
		    padding-top: 10px;
		    padding-bottom: 15px;
		}
		.testimonial-box {
		    display: block;
		    position: relative;
		    padding: 30px 20px;
		    background: #fff;
		    border: 1px solid rgba(0,0,0,.03);
		    border-radius: 5px;
		    box-shadow: 0 0 20px rgba(0, 0, 0, .08);
		}
		.user-img {
		    width: 80px;
		    height: 80px;
		    border-radius: 50%;
		    position: relative;
			min-width: 80px;
			background-size: 100%;
		}

		.carousel-testimonial .item {
			padding: 30px 10px;
		}
		.quotee {
			position: absolute;
		    top: -23px;
		    color: black;
		    font-size: 27px;
		}
		.name {
			margin-bottom: 0;
		    line-height: 14px;
		    font-size: 17px;
		    font-weight: 500;
		}
		.position {
			color: #adadad;
			font-size: 14px;
		}
		.carousel-testimonial .owl-nav {
			text-align: center;
		}
		.carousel-testimonial .owl-nav button.owl-next, 
		.carousel-testimonial .owl-nav button.owl-prev {
		    padding: 0 12px !important;
		}
		.carousel-testimonial .owl-nav button {
			outline: none;
			padding: 0;
		}
		.carousel-testimonial .owl-nav button.owl-next span, 
		.carousel-testimonial .owl-nav button.owl-prev span {
			display: block;
		    font-size: 40px;
		    width: 25px;
		    height: 25px;
		    vertical-align: 0px;
		    line-height: 16px;
		}
		.carousel-testimonial .owl-nav button.owl-next.disabled, 
		.carousel-testimonial .owl-nav button.owl-prev.disabled {
			opacity: 0.5;
		}
    .custom-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top:10px;
}

.custom-prev,
.custom-next {
    background-color: white;
    color: #3e8cda;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-prev:hover,
.custom-next:hover {
   background-color: white;
    color:  #3e8cda;
}
@media (max-width: 767px) {
  .testimonial-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-box .user-img {
    margin: 0 auto 15px;
  }

  .testimonial-box .text {
    padding-left: 0 !important;
  }

  .quotee {
    position: static;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .carousel-testimonial .item {
    padding: 10px 5px;
  }

  .heading-section h2 {
    font-size: 20px;
  }

  .custom-prev,
  .custom-next {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .testimonial-box {
    padding: 20px 10px;
  }

  .name {
    font-size: 14px;
  }

  .quotee {
    font-size: 20px;
  }
}@media (max-width: 767px) {
  .carousel-testimonial .item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .testimonial-box {
    width: 100% !important;
    max-width: 90%;
    margin: 0 auto;
    display: block;
  }

  .testimonial-box:not(:first-child) {
    display: none !important;
  }
}

.owl-prev, .owl-next {
    font-size: 0 !important;  /* Hides the "prev" and "next" text */
}

.owl-nav button {
    font-size: 0 !important;  /* In case buttons show default text */
}


@media (max-width: 991.98px) {
  #servicesDropdown i {
    display: none !important;
  }
}


.btnx{
    background-color: green;
    padding: 4px 15px;
    color: #fff;
    font-size: 15px;
    transition: all ease 0.4s;
    margin: 1px 7px;
    border-radius: 7px;
    letter-spacing: 0.3px;
}
.btnx1{
        padding: 7px 25px;
    border-radius: 3px;
    width:100px;
}



 .custom-modal .modal-content {
      border-radius: 8px;
      padding: 20px;
      position: relative;
    }

    .custom-modal h5 {
      font-weight: bold;
    }

    .custom-modal .highlight-bar {
      background-color: #0d6efd;
      color: #fff;
      font-weight: 500;
      margin: 10px 0;
      padding: 10px;
      text-align: center;
      border-radius: 5px;
    }

    .custom-modal input {
      margin-bottom: 10px;
    }

    .custom-close {
      position: absolute;
    top: 0px;
    right: 5px;
    font-size: 15px;
    font-weight: bold;
    color: #ff0000;
    cursor: pointer;
    }

    @media (max-width: 576px) {
      .custom-modal .modal-dialog {
        margin: 1rem;
      }
    }


    .wp-button{
	margin-top:14px;
}
.floatw{
	position:fixed;
	width:60px;
	height:60px;
	bottom:120px;
	right:40px;
    /* top:200px; */
	background-color:#25d366;
	color:#FFF;
	text-align:center;
  font-size:35px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.floatph{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#334fff;
	color:#FFFFFF;
	text-align:center;
  font-size:35px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;

}


.my-floatp{
	margin-top:14px;
}


.navs {
  position: relative;
  z-index: 1;
}

.navs::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../img/circuit.png');
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
  opacity: 0.08; /* adjust to make image more or less visible */
  z-index: -1;
  pointer-events: none;
}





    #dots-con {
  display: none !important;
}

/* if Bootstrap’s built-in indicators ever appear, hide them too */
.carousel-indicators {
  display: none !important;
}
  #bannerCarousel {
    position: relative;
  }

  .carousel-item {
    overflow: hidden;
    position: relative;
  }

  .carousel-item img {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
    animation: zoomIn 7s ease-in-out infinite;
    display: block;
  }

  @keyframes zoomIn {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  .overlay {

    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  .carousel-caption {
    z-index: 2;
    bottom: 25%;
    max-width: 90%;
    padding: 0.5rem 1rem;
  }

  .carousel-caption h5 {
    font-size: 2.7rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.3rem;
  }

  .carousel-caption h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.6rem;
  }

  .carousel-caption .btn {
    margin-right: 10px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 6px;
  }

  .btn-light {
    background-color: #ffffff;
    color: #000;
    border: none;
  }

  .btn-warning {
    background-color: #ffc107;
    color: #000;
    border: none;
  }

  /* Hide dots visually but keep markup (if any scripts depend) */
  #dots-con {
    display: none !important;
  }

  /* Responsive adjustments */
  @media (max-width: 992px) {
    .carousel-caption h1 {
      font-size: 2.2rem;
    }
    .carousel-caption h5 {
      font-size: 1rem;
    }
  }

  @media (max-width: 576px) {
    .carousel-caption {
      bottom: 15%;
    }
    .carousel-caption h1 {
      font-size: 1.8rem;
    }
    .carousel-caption h5 {
      font-size: 0.9rem;
    }
    .carousel-caption .btn {
      padding: 8px 16px;
      font-size: 0.85rem;
    }
  }

  .btn-group-row {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;           /* keep them side-by-side */
  white-space: nowrap;         /* prevent internal wrapping */
}

.carousel-caption .btn {
  flex: 0 0 auto;              /* don’t shrink too much */
  font-weight: bold;
  padding: 10px 16px;
  line-height: 1;
}

/* On very small screens, slightly reduce size but still side-by-side */
@media (max-width: 480px) {
  .carousel-caption .btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}
.btn-warning:hover {
 background-color:#ffc107;
 color:black;
}


 
.hero {
  padding: 3.5rem 1rem;
}

 
.card-ill {
  font-size: 2.25rem;
}

 
.accent-line {
  width: 56px;
  height: 6px;
  border-radius: 6px;
  background: var(--accent);
}

/* ================================
   Mission & Vision Card
   ================================ */
.mission-vision-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mission-vision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.08);
}

/* ================================
   Responsive Adjustments (Mobile)
   ================================ */
@media (max-width: 575.98px) {
  .hero {
    padding: 2rem 0.5rem;
  }

  .card-ill {
    font-size: 1.8rem;
  }
}

.cardx{
    background-color: #07436c;
    border-radius: 10px;;
}

    img {
      width: 100%;
      height: auto;
      display: block;
    }

    h1, h2, h3 {
      color: #1a1a1a;
      font-weight: 700;
    }

    p {
      color: #ffffff;
    }

    /* ---------- CONTAINERS ---------- */
    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    /* ---------- HERO SECTION ---------- */
    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 2rem;
      padding: 4rem 0;
    }

    .hero-text {
      flex: 1 1 500px;
    }

    .hero-text h1 {
      font-size: 1.5rem;
      line-height: 1.3;
      margin-bottom: 1rem;
    }

    .hero-text span {
      color: #0a5180;
    }

    .hero-text p {
      /* font-size: 1rem;
      margin-bottom: 1rem;
      text-align: justify; */
          text-align: justify;
    font-family: Verdana, 'DejaVu Sans', Arial, sans-serif !important;
    line-height: 25px;
    color: black;
    }

    .btn-primary {
      display: inline-block;
      background: #0a5180;
      color: #fff;
      text-decoration: none;
      padding: 12px 24px;
      border-radius: 30px;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .btn-primary:hover {
      background: #0056b3;
    }

    .hero-image {
      flex: 1 1 400px;
      position: relative;
    }

    .hero-image img {
      border-radius: 20px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: #0a5180;
      color: white;
      padding: 8px 18px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    }

    /* ---------- WHY CHOOSE SECTION ---------- */
    .why-choose {
      background: #0f4974;
      padding: 4rem 0;
      text-align: center;
    }

    .why-choose h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .why-choose p {
      max-width: 750px;
      margin: 0 auto 2.5rem;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .feature-box {
      background: #eef5ff;
      border-radius: 20px;
      padding: 2rem 1.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .feature-box img {
      width: 60px;
          margin-left: 85px;
      margin-bottom: 1rem;
    }

    .feature-box h3 {
      font-size: 16px;
      color: #333;
      margin-bottom: 0.5rem;
    }

    .feature-box p {
      font-size: 0.95rem;
      color: #555;
    }

    /* ---------- RESPONSIVE DESIGN ---------- */
    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        padding: 2rem 0;
      }

      .hero-text h1 {
        font-size: 1.8rem;
      }

      .why-choose h2 {
        font-size: 1.6rem;
      }
    }

    @media (max-width: 480px) {
      .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
      }

      .feature-box {
        padding: 1.5rem 1rem;
      }
    }

  .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .feature-card {
      background: white;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      transition: 0.3s ease;
      border-top: 5px solid #0a5180;
      text-align: center;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
    }

    .feature-card i {
      font-size: 40px;
      color: #0a5180;
      margin-bottom: 15px;
      background: #eaf3ff;
      padding: 18px;
      border-radius: 50%;
      transition: 0.3s;
    }

    .feature-card:hover i {
      background: #0a5180;
      color: white;
    }

    .feature-card h3 {
      color: #0a5180;
      margin-bottom: 10px;
      font-size: 1.2rem;
    }

    .feature-card p {
      font-size: 0.95rem;
      color: #555;
    }


      .omg {
      max-width: 1100px;
      margin: 50px auto;
      padding: 0 20px;
    }

    h2 {
      text-align: center;
      color: #0f4974;
      font-size: 2rem;
      margin-bottom: 30px;
      position: relative;
    }

    h2::after {
      content: "";
      width: 60px;
      /* height: 4px;
      background: #0f4974; */
      display: block;
      margin: 10px auto;
      border-radius: 2px;
    }


    

.lightboxpreview {
   transition: all .3s linear;
padding-top:60%;
  cursor:pointer;
  background-size:cover;
}
   
.lightbox-content {
max-height:75svh;
  height:75svh;
}

.lightbox-close { 
  cursor:pointer;
    margin-left: auto;
  position:absolute;
  right:-30px;
  top:-30px;
  color:white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;}

.modalscale {transform:scale(0);
opacity:0;}



.lightbox-container, .lightbox-btn, .lightbox-image-wrapper, .lightbox-enabled{transition:all .4s ease-in-out;}
.lightbox_img_wrap {padding-top:65%;
  position:relative;
  overflow:hidden;
}
.lightbox-enabled:hover {
  transform:scale(1.1)
}
.lightbox-enabled {width:100%;
height:100%;
  position:absolute;
  top:0;
object-fit:cover;
cursor:pointer;}

.lightbox-container {width:100svw;
height:100svh;
position:fixed;
top:0;
left:0;
  display:flex;
  align-items:center;
  justify-content:center;
background-color:rgba(0,0,0,.6);
z-index:9999;
opacity:0;
pointer-events:none;
}

.lightbox-container.active {
  opacity:1;
  pointer-events:all;
}
.lightbox-image-wrapper {
  display:flex;
  transform:scale(0);
  align-items:center;
  justify-content:center;
  max-width:90vw;
  max-height:90vh;
  position:relative;
}
.lightbox-container.active .lightbox-image-wrapper {transform:scale(1);}
.lightbox-btn, #close {
  color:white;
  z-index:9999999;
 cursor:pointer; 
  position:absolute;
  font-size:50px;
}

.left {left:50px;}
.right {right:50px;}
#close {top:50px;
right:50px;}

.lightbox-image {
  width:100%;
  max-height:95vh;
  object-fit:cover;
 }

@keyframes slideleft {
  33% {transform:translateX(-300px);
  opacity:0;
  }
  66% {transform:translateX(300px);
  opacity:0;
  }
}


.slideleft {
   animation-name: slideleft;
 animation-duration: .5s; 
 animation-timing-function: ease; 
}
@keyframes slideright {
  33% {transform:translateX(300px);
  opacity:0;}
  66% {transform:translateX(-300px);
  opacity:0;}
}


.slideright{
   animation-name: slideright;
 animation-duration: .5s; 
 animation-timing-function: ease; 
}
	

	.course-section {
    text-align: center;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.course-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1b3a57;
}

.course-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.course-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 250px;
    padding: 20px;
    transition: transform 0.3s;
}

.course-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.course-card h3 {
    color: #0b5c8c;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.course-card p {
    color: #555;
    font-size: 13px;
    line-height: 1.4;
    font-family: Verdana, sans-serif;
}

.course-card:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
    .course-cards {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .course-card {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .course-card {
        width: 100%;
    }
}




  .faqProSection {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
  }

  .faqProSection h2 {
    text-align: center;
    font-size: 28px;
    color: #222;
    font-weight: 700;
  }

  .faqProSection h2 span {
    color: #005c99;
    /* border-bottom: 3px solid #005c99; */
  }

  .faqProItem {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }

  .faqProItem:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .faqProQuestion {
    padding: 16px 20px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .faqProQuestion i {
    transition: transform 0.3s ease;
  }

  .faqProAnswer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    transition: all 0.4s ease;
  }

  .faqProItem.active .faqProAnswer {
    max-height: 200px;
    padding: 15px 20px 20px;
  }

  .faqProItem.active .faqProQuestion i {
    transform: rotate(180deg);
  }

  @media (max-width: 600px) {
    .faqProSection h2 {
      font-size: 22px;
    }

    .faqProQuestion {
      font-size: 15px;
      padding: 14px 16px;
    }

    .faqProAnswer {
      font-size: 14px;
    }
  }


  .banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-container {
  position: relative;
  width: 100%;
  text-align: center;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Overlay Text */
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  width: 90%;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.4);  
  padding: 15px;
  border-radius: 6px;
}

.banner-text h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.banner-text p {
  font-size: 15px;
}

 
@media (max-width: 992px) {
  .banner-text h1 {
    font-size: 22px;
  }
  .banner-text p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .banner-text {
    top: 60%;
    padding: 10px;
  }
  .banner-text h1 {
    font-size: 18px;
  }
  .banner-text p {
    display: none;  
  }
}



  .responsive-paragraph {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
text-align: justify;
    font-family: Verdana, 'DejaVu Sans', Arial, sans-serif !important;
    line-height: 25px;
    color: black;
  }

  @media (max-width: 992px) {
    .responsive-paragraph {
      font-size: 1.1rem;
      padding: 18px;
    }
  }

  @media (max-width: 768px) {
    .responsive-paragraph {
      font-size: 1rem;
      padding: 15px;
      margin: 20px;
    }
  }

  @media (max-width: 480px) {
    .responsive-paragraph {
      font-size: 0.95rem;
      line-height: 1.6;
      margin-left: 8px;
      /* padding: 12px; */
    }
  }


  .logo-img {
  max-height: 60px;         /* Default height for desktop */
  height: auto;
  width: auto;
}

/* Adjust for smaller mobile screens */
@media (max-width: 768px) {
  .logo-img {
    max-height: 50px;
  }
}

/* Optimize specifically for iPhone screen sizes */
@media only screen 
  and (max-device-width: 430px) 
  and (-webkit-min-device-pixel-ratio: 2) {
  .logo-img {
    max-height: 45px;
  }
}


/* ====== Navbar Dropdown Responsive Fix ====== */

/* General Dropdown Look */
.navbar .dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

/* Dropdown Item Styling */
.navbar .dropdown-item {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 15px;
  color: #333;
  white-space: normal;
  transition: all 0.2s ease;
}

.navbar .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #007bff;
}

/* Desktop View: Show dropdown on hover */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    width:600px;
  }
}

/* Mobile View: Ensure dropdown opens correctly */
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    position: static !important;
    float: none;
    box-shadow: none;
    background: #fff;
    border-radius: 0;
    margin-top: 0;
  }

  .navbar .dropdown-item {
    padding-left: 25px;
    border-bottom: 1px solid #eee;
  }

  .navbar .dropdown-item:last-child {
    border-bottom: none;
  }

  .navbar .dropdown-toggle::after {
    display: none; /* remove extra caret */
  }
}


 
.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 40px 60px;
  justify-items: center;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


