
/*** 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;
    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-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
   
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}
/*** Topbar Start ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 56px;
    padding: 35px 0;
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
    font-weight: 600;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: #ffffff;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 150px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 129px;
    position: relative;
    top: 0px;
    z-index: 2000;
}
.navbar{background: #000;}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #000000;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, .08);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: #ffffff;
    }

    .navbar-light .navbar-brand img {
        max-height: 73px;
    }
}

@media (min-width: 992px) {
    .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;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-top: 0;
        border-right: 0;
        /* border-bottom: 1px solid; */
        border-left: 0;
        /* border-style: dotted; */
        z-index: 999;
        BACKGROUND: #000000;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #0000008f;
        border: none;
    }

    .navbar-light .navbar-nav .nav-item::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .sticky-top.navbar-light .navbar-nav .nav-item::before {
        bottom: 0;
    }

    .navbar-light .navbar-nav .nav-item::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid;
        border-color: transparent transparent var(--bs-primary) transparent;
        opacity: 0;
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-item:hover::after,
    .navbar-light .navbar-nav .nav-item.active::after {
        bottom: 1px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-item:hover::before,
    .navbar-light .navbar-nav .nav-item.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}
/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
}

.carousel-indicators {
    display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 25px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    left: 0;
    border-left: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;

}

.carousel .carousel-control-next .carousel-control-next-icon {
    right: 0;
    border-right: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
}

.carousel .carousel-inner .carousel-item {
    position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: end;
/*    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));*/
    background-size: cover;
}

.carousel-caption-1-content {
    text-align: end;
    padding-right: 100px;
}

.carousel-caption-1-content .carousel-caption-1-content-btn {
    display: flex;
    justify-content: end;
}

.carousel .carousel-inner .carousel-item .carousel-caption-2  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    text-align: center;
/*    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));*/
    background-size: cover;
}

.carousel-caption-2-content {
    text-align: start;
    padding-left: 100px;
}

.carousel-caption-2-content .carousel-caption-2-content-btn {
    display: flex;
    justify-content: start;
}


@media (max-width: 992px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
        margin-top: -100px;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-1 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-1-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-1-content .carousel-caption-1-content-btn {
        justify-content: center;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-2 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-2-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-2-content .carousel-caption-2-content-btn {
        justify-content: center;
    }



    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon {
        display: none;
    }
}

.modal .modal-header {
    height: 100px;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../img/breadcrumb.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {

    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}
/*** Single Page Hero Header End ***/


/*** Features Start ***/
.feature .feature-item p{color:#fff;}
.feature .feature-item h4{color:#fff;}

.feature .feature-item:hover p{color:#000;}
.feature .feature-item:hover h4{color:#000;}
.feature .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* background: #19409a; */
    border-radius: 10px;
    transition: 0.5s;
    background: #020024;
    background: linear-gradient(6deg, rgba(2, 0, 36, 1) 0%, rgb(17 17 63) 35%, rgb(41 54 137) 100%);
}

.feature .feature-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    background: #fff;
}

.feature .feature-item .feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon i {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon i {
    transform: rotate(360deg);
}

.feature .feature-item a.btn {
    transition: 0.5s;
}

.feature .feature-item:hover a.btn:hover {
    color: var(--bs-primary) !important;
}
/*** Features End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    padding-bottom: 30px;
    margin-top: 16px;
    margin-left: 30px;
}

.about .about-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    top: -30px;
    right: 0;
    border-radius: 10px;
    background: var(--bs-secondary);

}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    left: -30px;
    bottom: 30px;
    border-radius: 10px;
    background: var(--bs-secondary);
}

.about .about-img .about-exp {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1px;
    font-size: 22px;
    font-weight: bold;
    background: var(--bs-secondary);
    color: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 10px;
    padding: 9px 10px;
    font-weight: normal;
}
/*** About End ***/

/*** Service Start ***/
.service-item {
    position: relative;
    box-shadow: 0 0 45px rgb(0 0 0 / 8%);
    background: #000000;
}

.service-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service-item:hover::after {
    width: 100%;
    height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
    position: relative;
    z-index: 2;
}

.service-item .service-content a, .service-item .service-content h4,
.service-item .service-content p {
    transition: 0.5s;
	color: #fff;
	
}

.service-item:hover .service-content a:hover {
    color: var(--bs-secondary);
}

.service-item:hover .service-content p {
    color: var(--bs-white);
} 

.service-item .service-btn {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.service-item .service-btn i {
    transition: 0.5s;
}

.service-item:hover .service-btn {
    background: var(--bs-white);
}

.service-item:hover .service-btn i {
    transform: rotate(360deg);
    color: var(--bs-primary) !important;
}
/*** Service End ***/


/*** Counter Start ***/
.counter {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(25, 64, 154, 0.9), rgba(25, 64, 154, 1)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.counter .counter-item .counter-item-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/*** Counter End ***/


/*** Products Start ***/
.product .product-item {
    border: 1px solid rgba(196, 211, 211, 0.9);
    border-radius: 10px;
}

/*** Products End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(0, 209, 249, 0.2);
}

.blog .blog-item .blog-date {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    background: var(--bs-primary);
    color: var(--bs-white);
    z-index: 2;
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-primary) !important;
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    overflow: hidden;
    background: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.team .team-item .team-inner {
    transition: 0.5s;
}
.team .team-item:hover .team-inner {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.team .team-item .team-inner .team-img {
    position: relative;
    z-index: 2;
}

.team .team-item .team-inner .team-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 209, 249, 0.2);
    transition: 0.5s;
    z-index: 3;
}

.team .team-item:hover .team-inner .team-img::after {
    height: 100%;
}

.team .team-item .team-inner .team-img .team-share {
    position: absolute;
    left: 10px;
    bottom: 10px;
    transition: 0.5s;
    z-index: 2;
}

.team .team-item:hover .team-inner .team-img .team-share {
    opacity: 0;
}

.team .team-item .team-inner .team-img .team-icon {
    position: absolute;
    bottom: 0;
    left: -100%;
    border-bottom-left-radius: 0 !important; 
    border-top-left-radius: 0 !important;
    display: inline-flex;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 4;
}

.team .team-item:hover .team-inner .team-img .team-icon { 
    left: -25px; 
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    border: 1px solid var(--bs-secondary);
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 1px solid var(--bs-primary);
    background: var(--bs-secondary) !important;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

@media (max-width: 992px) {
    .owl-carousel.testimonial-carousel {
        padding-top: 30px;
    }

    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        top: -30px;
    }
}
/*** testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
    /* background: var(--bs-dark); */
}
/*** copyright end ***/


.gradient-text {
    background:#FFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.feature .feature-item .feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Gradient Background */
    background: linear-gradient(45deg, #0072ff, #00c6ff);
    
    transition: all 0.5s ease;
}

/* Hover Effect */
.feature .feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    transform: rotate(10deg) scale(1.05);
}

 .shape {
    position: absolute;
    left: 0px;
    bottom: -141px;
    /* width: 100%; */
    height: 141px;
    /* background-size: 100% 100%; */
    background-repeat: no-repeat;
    background-position: bottom center;
    /* TOP: 97PX; */
    Z-INDEX: 1;
    filter: grayscale(100%) brightness(0%);
    right: 0px;
    overflow: hidden;
    /* opacity: 0.55; */
}


.bg-white-0 {
    background-color: #64d1ff !important;
}

.text-primary-1 {
    color: #1b3b84 !important;
}

.shapeb {
    position: relative;
    left: 0px;
    /* bottom: 42px; */
    width: 100%;
    height: 77px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    TOP: 50PX;
    Z-INDEX: .999999;
    left: 0px;
    filter: grayscale(100%) brightness(0%);
}
.shapec {
    position: relative;
    left: 0px;
    /* bottom: 42px; */
    width: 100%;
    height: 143px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    TOP: -51PX;
    Z-INDEX: .999999;
    left: 0px;
    filter: grayscale(100%) brightness(0%);
}

.water-bgfixed {
    background: #000000 url(../img/water-bg.png) no-repeat center;
    background-attachment: fixed;
    background-size: 100% 100%;
    background-position: top center;
    background-size: cover;
    width: 100%;
}




/** main-footer **/

.main-footer{
  position: relative;
  background-color: #001a56;
}

.main-footer .pattern-layer .pattern-3{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 165px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.main-footer .footer-top{
  position: relative;
  width: 100%;
  padding: 260px 0px 100px 0px;
}

.main-footer .footer-top .text h2{
  font-size: 30px;
  line-height: 60px;
  color: #fff;
  font-weight: 600;
  margin: 0px;
}

.main-footer .footer-top .text h2 span{

}

.main-footer .footer-top .support-box a{
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 18px;
  line-height: 25px;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 17.5px 40px;
  border-radius: 30px;
  z-index: 1;
  transition: all 500ms ease;
}

.main-footer .footer-top .support-box a i{
  margin-right: 18px;
}

.main-footer .footer-top .line-shape{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 22px;
  background-repeat: no-repeat;
}

.main-footer .widget-section{
  position: relative;
  width: 100%;
  padding: 90px 0px 80px 0px;
}

.main-footer .logo-widget{
  position: relative;
  margin-top: -10px;
}

.main-footer .logo-widget .footer-logo{
  position: relative;
  margin-bottom: 37px;
}

.main-footer .logo-widget .text{
  position: relative;
  display: block;
  margin-bottom: 31px;
}

.main-footer .logo-widget .text p{
  color: #fff;
}

.main-footer .logo-widget .schedule-box h6{
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}

.main-footer .logo-widget .schedule-box .list li{
  position: relative;
  display: block;
  font-size: 15px;
  color: #fff;
  line-height: 26px;
  margin-bottom: 4px;
}

.main-footer .logo-widget .schedule-box .list li:last-child{
  margin-bottom: 0px;
}

.main-footer .widget-title{
  position: relative;
  display: block;
  margin-bottom: 43px;
}

.main-footer .widget-title h4{
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
}

.main-footer .contact-widget .info-list li{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 30px;
  color: #fff;
  padding-left: 34px;
  margin-bottom: 20px;
}

.main-footer .contact-widget .info-list li:last-child{
  margin-bottom: 0px;
}

.main-footer .contact-widget .info-list li a{
  display: inline-block;
  color: #fff;
}

.main-footer .contact-widget .info-list li a:hover{

}

.main-footer .contact-widget .info-list li i{
  position: absolute;
  left: 0px;
  top: 4px;
  font-size: 20px;
}

.main-footer .contact-widget .info-list li:first-child i{
  top: 10px;
}

.main-footer .links-widget .links-list li{
  position: relative;
  display: block;
  font-size: 15px;
  color: #fff;
  margin-bottom: 13px;
}

.main-footer .links-widget .links-list li:last-child{
  margin-bottom: 0px;
}

.main-footer .links-widget .links-list li a{
  position: relative;
  display: inline-block;
  color: #fff;
}

.main-footer .links-widget .links-list li a:hover{

}

.main-footer .links-widget .links-list li a:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 1px;
  left: 0px;
  bottom: 4px;
  transition: all 500ms ease;
}

.main-footer .links-widget .links-list li a:hover:before{
  width: 100%;
}

.main-footer .subscribe-widget p{
  font-size: 15px;
  line-height: 26px;
  color: #fff;
  margin-bottom: 43px;
}

.main-footer .subscribe-widget .form-group{
  position: relative;
  margin: 0px;
  border-radius: 30px;
  overflow: hidden;
}

.main-footer .subscribe-widget .form-group input[type="email"]{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 30px;
  font-size: 16px;
  color: #808080;
  padding: 10px 70px 10px 30px;
  transition: all 500ms ease;
}

.main-footer .subscribe-widget .form-group button{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: all 500ms ease;
}

.main-footer .subscribe-widget .form-group input:focus{

}

.main-footer .pattern-layer .pattern-1{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 694px;
  height: 389px;
  background-repeat: no-repeat;
}

.main-footer .pattern-layer .pattern-2{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 384px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.footer-bottom{
  position: relative;
  width: 100%;
  background-color: #0c235a;
  padding: 5px 0px;
}

.footer-bottom .bottom-inner{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom .copyright p{
  font-size: 15px;
  line-height: 85px;
  color: #fff;
}

.footer-bottom .copyright p a{

}

.footer-bottom .copyright p a:hover{
  text-decoration: underline;
}

.footer-bottom .social-links li{
  position: relative;
  display: inline-block;
  margin: 0px 3.5px;
}

.footer-bottom .social-links li a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}

.footer-bottom .social-links li a:hover{

}

.footer-bottom .footer-nav li{
  position: relative;
  display: inline-block;
  margin-right: 30px;
  font-size: 15px;
  line-height: 40px;
  color: #fff;
}

.footer-bottom .footer-nav li:last-child{
  margin: 0px !important;
}

.footer-bottom .footer-nav li a{
  position: relative;
  display: inline-block;
  color: #fff;
}

.footer-bottom .footer-nav li a:hover{

}

.footer-bottom .footer-nav li:before{
  position: absolute;
  content: '';
  background-color: #fff;
  width: 1px;
  height: 15px;
  top: 14px;
  right: -17px;
}

.footer-bottom .footer-nav li:last-child:before{
  display: none;
}

.owl-carousel .owl-nav button,
.owl-carousel .owl-dots button{
  background: transparent;
}

.pull-left {
    float: left;
}
.main-footer .footer-top .support-box a {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 18px;
    line-height: 25px;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 17.5px 40px;
    border-radius: 30px;
    z-index: 1;
    transition: all 500ms ease;
}



.main-footer .footer-top .text h2 span {
    color: #00d1f9;
}
.pull-right {
    float: right;
}

.support-box a {
    background: #25D366;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.support-box a:hover {
    background: #1ebe5d;
}
.about{background:#000;}

.bubble-effect {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    border-radius: 15px;
}

/* multiple small bubbles */
.bubble-effect span {
    position: absolute;
    bottom: -20px;
    background: transparent;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8); /* sharp edge */
    box-shadow: 
        inset 0 0 8px rgba(255,255,255,0.6),
        0 0 10px rgba(255,255,255,0.3);
    animation: rise 8s linear infinite;
}

/* different sizes */
.bubble-effect span:nth-child(1){ left: 10%; width: 10px; height: 10px; animation-duration: 6s; }
.bubble-effect span:nth-child(2){ left: 25%; width: 14px; height: 14px; animation-duration: 8s; }
.bubble-effect span:nth-child(3){ left: 40%; width: 8px; height: 8px; animation-duration: 5s; }
.bubble-effect span:nth-child(4){ left: 60%; width: 12px; height: 12px; animation-duration: 7s; }
.bubble-effect span:nth-child(5){ left: 75%; width: 9px; height: 9px; animation-duration: 6s; }
.bubble-effect span:nth-child(6){ left: 90%; width: 13px; height: 13px; animation-duration: 9s; }

/* bubble movement */
@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateY(-300px) scale(1.1);
        opacity: 0;
    }
}




.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.modal-content-box {
    background: #fff;
    width: 320px;
    padding: 20px;
    border-radius: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    animation: popup 0.4s ease forwards;
    text-align: center;
}

@keyframes popup {
    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

.modal-content-box input,
.modal-content-box textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.shape0 {
 position: absolute;
 left: 0;
 width: 100%;
 line-height: 0;

 /* top: 0px; */
 overflow: hidden;
 bottom: 0px;
}

/* Track ko wide bana ke loop smooth karenge */
.wave-track {
    display: flex;
    width: 200%; /* 2 images = 200% */
    animation: waveMove 8s linear infinite;
}

/* Image full width */
.wave-track img {
    width: 50%; /* 2 images = each 50% */
    height: auto;
}

/* Main animation */
@keyframes waveMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.shape img{
width: 100%;
    overflow: hidden;
}



/* Tablet */
@media (max-width: 992px) {
    .wave-track {
        animation: waveMove 10s linear infinite; /* thoda slow */
    }

    .wave-track img {
        width: 50%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .shape0 {
        bottom: -20px; /* thoda adjust */
    }

    .wave-track {
        width: 200%;
        animation: waveMove 12s linear infinite; /* aur smooth slow */
    }

    .wave-track img {
        width: 50%;
        height: 80px; /* wave height control */
        object-fit: cover;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .wave-track {
        animation: waveMove 14s linear infinite;
    }

    .wave-track img {
        height: 60px;
    }
}

.shapeF {
    position: absolute;
    left: 0px;
    bottom: 0px;
    /* width: 100%; */
    height: 141px;
    /* background-size: 100% 100%; */
    background-repeat: no-repeat;
    background-position: bottom center;
    /* TOP: 97PX; */
    Z-INDEX: 1;
    filter: grayscale(100%) brightness(0%);
    right: 0px;
    overflow: hidden;
    transform: rotate(-180deg);
}

/* Tablet */
@media (max-width: 992px) {
    .carousel-caption-2-content {
        max-width: 700px;
        padding: 15px;
    }

    .carousel-caption-2-content h1 {
        font-size: 40px;
    }

    .carousel-caption-2-content h4 {
        font-size: 18px;
    }

    .carousel-caption-2-content p {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .carousel-caption-2-content {
        max-width: 100%;
        padding: 10px;
        text-align: center;
    }

    .carousel-caption-2-content h1 {
        font-size: 26px;
        line-height: 1.3;
    }
 .carousel-caption-1-content h4 {
        font-size: 14px;
    }
    .carousel-caption-2-content h4 {
        font-size: 14px;
    }
  .carousel-caption-1-content p {
        font-size: 13px !important;
        line-height: 1.5;
    }

    .carousel-caption-2-content p {
        font-size: 13px !important;
        line-height: 1.5;
    }

 
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .carousel-caption-2-content h1 {
        font-size: 22px;
    }
	.carousel-caption-1-content h1 {
        font-size: 22px;
    }
 .carousel-caption-1-content p {
        font-size: 12px !important;
    }
    .carousel-caption-2-content p {
        font-size: 12px !important;
    }


}

.sticky-top .shape img {
    width: 100%;
    overflow: hidden;
    opacity: 0.55 !important;
	
}

.float-icons {
    position: fixed;
    right: 20px;
    bottom: 95px;
    z-index: 9999;
}

/* Main Button */
.float-btn {
    width: 55px;
    height: 55px;
    background: #09f186;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.float-btn:hover {
    transform: rotate(180deg);
}

/* Social Icons List */
.social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 70px;
    right: 0;
}

/* Hide by default */
.social-list li {
    margin: 10px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
}

/* Show Animation */
.float-icons.active .social-list li {
    opacity: 1;
    transform: translateY(0);
}

/* Delay effect */
.social-list li:nth-child(1) { transition-delay: 0.1s; }
.social-list li:nth-child(2) { transition-delay: 0.2s; }
.social-list li:nth-child(3) { transition-delay: 0.3s; }
.social-list li:nth-child(4) { transition-delay: 0.4s; }
.social-list li:nth-child(5) { transition-delay: 0.5s; }

/* Icons Style */
.social-list li a {
    width: 45px;
    height: 45px;
   
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

/* Hover Effect */
.social-list li a:hover {
    transform: scale(1.2);
}

/* Brand Colors */
/* Common Style */
.social-list li a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

/* Facebook */
.fb {
    background: #1877f2;
}

/* YouTube */
.yt {
    background: #ff0000;
}

/* Instagram (Gradient) */
.insta {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

/* Hover Effect */
.social-list li a:hover {
    transform: scale(1.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


.info-list, .links-list{padding:0px;
}

.shapec img{width:100%;}



/* ===== RESET WORDPRESS DEFAULT GALLERY ===== */
.gallery {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 0;
    padding: 0;
}

.gallery-item {
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
}

/* remove unwanted spacing */
.gallery br {
    display: none !important;
}

/* ===== IMAGE STYLE ===== */
.gallery-icon {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* ===== HOVER EFFECT ===== */
.gallery a {
    display: block;
    position: relative;
}

.gallery a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    transition: 0.3s;
    border-radius: 8px;
}

.gallery a:hover::after {
    opacity: 1;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* ===== TABLET VIEW ===== */
@media (max-width: 992px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 576px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr);
    }

    .gallery img {
        height: auto;
    }
}