@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/*** Spinner Start ***/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family: "Roboto", sans-serif!important;
    font-weight:400!important;
}
P{
    color: #201d1d;
}
.wrap-slider p{
    color:#fff;
}
.contact-add-item{
    box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
    padding:10px;
    border-left: 5px solid #015fc9;
    min-height:164px;
    border-radius:10px;
}
#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;
}

@media screen and (min-width:1200px){
    .display-4{
        font-size:2.5rem!important;
    }
}
/*** 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);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding:15px 10px;
    font-size:15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.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 .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .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 .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}

/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 600px;
}
.wrap-slider .owl-nav{
    display:none;
}
.slide-title{
    text-shadow: 3px 3px #000;
}
.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}

.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}

/*** Carousel Hero Header End ***/

/* waves */
.ocean {
  height: 80px; /* change the height of the waves here */
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: hidden;
}

.wave {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23015fc9'/%3E%3C/svg%3E");
  position: absolute;
  width: 200%;
  height: 100%;
  -webkit-animation: wave 10s -3s linear infinite;
          animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
}

.wave:nth-of-type(2) {
  bottom: 0;
  animation: wave 18s linear reverse infinite;
  opacity: 0.5;
}

.wave:nth-of-type(3) {
  bottom: 0;
  -webkit-animation: wave 20s -1s linear infinite;
          animation: wave 20s -1s linear infinite;
  opacity: 0.5;
}

@-webkit-keyframes wave {
    0% {transform: translateX(0);}
    50% {transform: translateX(-25%);}
    100% {transform: translateX(-50%);}
}

@keyframes wave {
    0% {transform: translateX(0);}
    50% {transform: translateX(-25%);}
    100% {transform: translateX(-50%);}
}
.master-title{
    text-shadow: 3px 3px #0f52a1;
    text-transform: uppercase;
    font-style:italic;
    font-size:30px!important;
}
/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    /*overflow: hidden;*/
    background:#16243d;
    /* background-color: #015fc9;; */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
    height: 345px;
}
.testimonial-item{
    height:255px;
}
.testimonial-item p{
    text-align:justify;
}

.testimonial-item img{
    height: 120px!important;
    width:150px!important;
    border-radius:50%!important;
    margin:auto;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
    box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
    border:1px solid #787878;
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}

.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
    border: 1px solid #b9c7d7;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
    height: 200px;
    object-fit: cover;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    background: var(--bs-light);
    border-radius:10px;
}
.feature .feature-item p{
    text-align:justify;
}

.min_bx{
    margin-top:-10px;
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
    height: 290px;
    /*overflow-y:scroll;*/
    /*scrollbar-color: #0151ab #f2f5f9;*/
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}
.service .service-item .service-content .service-content-inner p{
    text-align:justify;
    color:#000;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .subttl {
    font-size: 19px;
}
.service .subttl:hover {
   color:#fff!important;
}
.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}

/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}

/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}

/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
    text-align: center;
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}

/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 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-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    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-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;
    }

    50% {
        border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;
    }

    75% {
        border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 25px;
}

.footer .footer-item a:hover {
    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);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/*** copyright end ***/


.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
    /* background: rgb(255, 255, 255); */
    border-radius: 16px;
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(7.4px);
    -webkit-backdrop-filter: blur(7.4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.slider-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: scrolling 20s linear infinite;

}

@keyframes scrolling {

    0% {
        transform: translateX(80%);
    }

    100% {
        transform: translateX(-20%);
    }
}

.slider-items img {
    width: 150px;
}

.feature .feature-item h4 {
    font-size: 20px;
}


.window {
    width: 100%;
    margin: auto;
    /* border: 1px solid #015fc9; */
    box-shadow: 0px 20px 46px 2px #bcc6ff;
    cursor: n-resize;
}

.window img {
    width: 100%;
    object-fit: cover;
    object-position: top;
    height: 200px;
    transition: 2s all linear;
}

.window img:hover {
    object-position: bottom;
}

.college-name {
    background: #015fc9;
    padding: 5px 0;
    box-shadow: 4px 5px #16243d;
}

.college-name h2 {
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.banner-area {
    position: relative;
    background: #015fc9 !important;
}

.banner-area .shape-1 {
    position: absolute;
    width: 140px;
    top: 20px;
    left: 0;
}

.floating {
    animation: floating 6s ease-in-out infinite
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(50px);
    }

    100% {
        transform: translateY(0);
    }
}

.banner-area .shape-2 {
    position: absolute;
    width: 140px;
    bottom: 20px;
    right: 0;
}


.floating1 {
    animation: floating1 6s ease-in-out infinite
}

@keyframes floating1 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-50px);
    }

    100% {
        transform: translateY(0);
    }
}

.shape-3 {
    position: absolute;
    background-color: #8bd2bd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    right: 10px;
    top: 10px;
    animation: floating2 10s ease-in-out infinite
    
}
@keyframes floating2 {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translatex(-100px);
    }

    100% {
        transform: translateX(0);
    }
}

.darksoul-fluid-liquid--circle {
    position: absolute;
    margin: auto;
    width: 400px;
    height: 300px;
    left: 15%;
    top: 20%;
    background-image: linear-gradient(120deg, #015fc9 0%, #c2e9fb 100%);
    border-radius: 39% 61% 55% 45% / 44% 37% 63% 56%;
    animation: fluid-anim 5s infinite linear;
    z-index: 1;
}

@keyframes fluid-anim {
    0% {
        border-radius: 39% 61% 55% 45% / 44% 37% 63% 56%;
    }

    25% {
        border-radius: 45% 55% 48% 52% / 60% 36% 64% 40%;
    }

    50% {
        border-radius: 56% 44% 28% 72% / 46% 63% 37% 54%;
    }

    75% {
        border-radius: 62% 38% 37% 63% / 39% 32% 68% 61%;
    }

    100% {
        border-radius: 39% 61% 55% 45% / 44% 37% 63% 56%;
    }
}

.shape-4 {
    position: absolute;
    background-color: #8bd2bd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    left: 10px;
    bottom: 10px;
    animation: floating3 10s ease-in-out infinite
    
}
@keyframes floating3 {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translatex(100px);
    }

    100% {
        transform: translateX(0);
    }
}







.team-title h4{
    font-size: 20px;
}
.team-title p{
    font-size: 14px;
}

.owl-dots {
    display: none;
}

.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    gap: 20px;
    display: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    font-size: 30px;
    color: #000;
}

.sl_box{
    background-color: #302a2a;
    border: 1px solid #302a2a;
}
.sl_box p{
    background-color: #fff;
    color: #000;
    min-height: 49px;
    padding: 5px;
}
.testimonial .inner img{
    width: 110px;
    height:110px;
    margin: auto;
}
.testimonial .inner{
    text-align: center;
    background-color: #fff;
    height:180px;
    padding:10px;
}
.testimonial .inner p{
    font-size: 14px;
    color: #000;
    padding-top: 10px;
}

.all-clients .clients-area img{
    width:100px;

}
.all-clients .clients-area{
    background: #fff;
    width: 100%;
    height: 140px;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow:hidden;
    background:#015fc914;
}
.all-clients p{
    font-size:13px;
    margin-top:10px;
    text-align:center;
    color:#000;
}

.prod-list{
    box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
    padding: 10px;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 10px;
    border-bottom: 3px solid #015fc9;
    height:140px;
    transition: all 0.3s linear;
}
.prod-list:hover{
    transform : translateX(10px)
}

.prod-list p{
    font-size:16px;
    padding-top:10px;
    color: #3c3838;
}
.prod-list i{
    font-size: 30px;
    color: #fff;
    border-radius: 50%;
    background: #015fc9;
    padding: 15px 12px;
}
.feature-home{
    background: #015fc9;
}
.text-white{
    color:#fff;
}


.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiper-container {
    width: 100%;
    height: 100%;
    overflow:hidden;
}
.pro-image a {
    position: relative;
    height: 255px;
    overflow: hidden;
    display: block;
    margin-bottom:10px;
}

.pro-image a .overlay {
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: #015fc9c7;
    position: absolute;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    opacity:0;
}
.pro-image a .overlay p{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    text-align:center;
    font-weight:600;
    width:90%;
}

.pro-image a:hover .overlay {
    height: 100%;
    opacity:1;
}
.pro-image img{
    border:1px solid #bfb7b7;
    padding:5px;
    width:100%;
    border-radius:10px;
    height:255px;
}
.products ul{
    list-style:none;
    margin:0;
    padding:0;
}
.products ul li{
   margin: 10px 0;
    background: #fff;
    color: #000;
    box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
    transition: all 0.3s;
    border: 1px solid #015fc9;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 10px;
}

.products ul li span{
    background: #015fc9;
    color: #fff;
    padding: 6px 8px;
    border-radius:50%;
}
.products ul li span i{
    font-size: 20px;
    display: inline-block;
    animation: spinZoom 2s infinite ease-in-out;
}

@keyframes spinZoom {
  0% {
    transform: rotate(0deg) scale(1);
  }
  40% {
    transform: rotate(144deg) scale(1.1); /* small zoom */
  }
  50% {
    transform: rotate(180deg) scale(1);
  }
  90% {
    transform: rotate(324deg) scale(1.15); /* bigger zoom */
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.service-slider {
  width: 100%;
  margin: auto;
}


.service-slider .item {
  position: relative; /* so ::after positions relative to the card */
  overflow: hidden; /* prevents the pseudo-element from spilling out */
}

.service-slider .item::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px); /* inset from sides for padding effect */
  height: 6px; /* border thickness */
  background-color: transparent; /* default no color */
  border-radius: 50%;
}

.service-slider .item.active::after {
  background-color: #000; /* active border color */
}

.slick-slide {
  padding: 10px;
}
.clients-home{
    background:#0151ab;
}



.achievements {
  text-align:center;
}
.achievement-item{
    background:#fff;
    padding:10px;
    border-radius:10px;
}
.achievement-item h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  color: #444;
}

.achievement-item strong {
  display: block;
  font-size: 1.1rem;
  color: #333;
}

.achievement-item p {
  margin: 0;
  color: #777;
  font-size: 0.9rem;
}

@keyframes floating2 {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }    
}

.floating123 {  
    animation-name: floating2;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}



.swiper-button-next, .swiper-button-prev{
    display:none!important;
}

/*.gallery*/
.gallery{
    width: 100%;
}
.gallery .gallery-filter{
    padding: 10px;
    width: 55%;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
    margin: 0 auto 30px auto;
    border-radius: 30px;
}
.gallery .gallery-filter .filter-item{
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    /* border-bottom: 2px solid transparent; */
    line-height: 1.2;
    transition: all 0.3s ease;
    padding: 10px 20px;
    background: #015fd9;
    border-radius: 30px;
}
.gallery .gallery-filter .filter-item.active{
    color: #fff;
    /* border-color: #014ca1; */
    background: #015fd9;
    box-shadow: 3px 3px #16243d;
}
.gallery .gallery-item{
    width: 100%;
}
.gallery .gallery-item-inner img{
    width: 100%;
}
.gallery .gallery-item.show{
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.gallery .gallery-item.hide{
    display: none;
}

/*responsive*/
@media(max-width: 991px){
    .gallery .gallery-item{
        width: 50%;
    }
}
@media(max-width: 767px){
    .gallery .gallery-item{
        width: 100%;
    }   
    .gallery .gallery-filter .filter-item{
        margin-bottom: 10px;
    }
}

.principal-image-testi{
    padding:10px;
}
.about-us-left{
    position:relative;
}
.abt2{
    position: absolute;
    right: 0;
    bottom: 12%;
    width: 400px;
    border: 3px solid #015fc9;
    height: 300px;
    object-fit: cover;
}

.abt-1{
       border: 5px solid #015fc9;
    /* padding-right: 33px; */
    border-radius: 30px 0;
    /* width: 480px; */
    height: 565px;
    object-fit: cover;
}
.gallery-listings{
    box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
    padding:10px;
    background:#fff;
}
.clients-list{
    box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
    padding:10px;
    background:#fff;
}



.banner-area{
    position:relative;
    z-index:1;
}


.wrap-slider {
  background-image: linear-gradient(120deg, rgb(1 95 201) 16%, rgb(5 10 16) 96%);
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  z-index: -1;
}
.common__space{
    padding:30px 0;
}





@media screen and (max-width:375px){
    .darksoul-fluid-liquid--circle{
        width: 300px;
        height: 300px;
        top: 14%;
    }
    .abt-1 {
        width:100%;
        height: auto;
    }
    .display-4{
        font-size:27px;
    }
    .service .service-item .service-content .service-content-inner {
        height: 290px;
    }
    .common__space {
        padding: 10px 0;
    }
    .mt-5 {
        margin-top: 1rem !important;
    }
    .feature .feature-item {
        height: auto;
    }
    .testimonial-item{
        height:auto;
    }
    .mb-4{
        margin-bottom:10px!important;
    }
    .testimonial-item img {
        height: auto!important; 
        width: 120px !important;
        border-radius: 50% !important;
        margin: auto;
    }
    .gallery .gallery-filter{
        width:100%;
    }
    .gallery .gallery-filter .filter-item{
        font-size:14px;
    }
    .achievement-item{
        margin-bottom:10px;
    }
}



@media screen and (min-width:377px) and (max-width:426px){
    .achievement-item{
        margin-bottom:10px;
    }
    .darksoul-fluid-liquid--circle{
        width: 300px;
        height: 300px;
        top: 14%;
    }
    .abt-1 {
        width:100%;
        height: auto;
    }
    .display-4{
        font-size:27px;
    }
    .service .service-item .service-content .service-content-inner {
        height: 250px;
    }
    .common__space {
        padding: 10px 0;
    }
    .mt-5 {
        margin-top: 1rem !important;
    }
    .feature .feature-item {
        height: auto;
    }
    .testimonial-item{
        height:auto;
    }
    .mb-4{
        margin-bottom:10px!important;
    }
    .testimonial-item img {
        height: auto!important; 
        width: 120px !important;
        border-radius: 50% !important;
        margin: auto;
    }
    .gallery .gallery-filter{
        width:100%;
    }
    .gallery .gallery-filter .filter-item{
        font-size:14px;
    }
    .abb_ttl{
        margin-top:10px;
    }
}

@media screen and (min-width:427px) and (max-width:431px){
    .darksoul-fluid-liquid--circle{
        width: 300px;
        height: 300px;
        top: 14%;
    }
    .abt-1 {
        width:100%;
        height: auto;
    }
    .display-4{
        font-size:27px;
    }
    .service .service-item .service-content .service-content-inner {
        height: 255px;
    }
    .common__space {
        padding: 10px 0;
    }
    .mt-5 {
        margin-top: 1rem !important;
    }
    .feature .feature-item {
        height: auto;
    }
    .testimonial-item{
        height:auto;
    }
    .mb-4{
        margin-bottom:10px!important;
    }
    .testimonial-item img {
        height: auto!important; 
        width: 120px !important;
        border-radius: 50% !important;
        margin: auto;
    }
    .gallery .gallery-filter{
        width:100%;
    }
    .gallery .gallery-filter .filter-item{
        font-size:14px;
    }
    .abb_ttl{
        margin-top:10px;
    }
    .achievement-item{
        margin-bottom:10px;
    }
}


@media screen and (min-width:432px) and (max-width:601px){
    .darksoul-fluid-liquid--circle{
        width: 300px;
        height: 300px;
        top: 14%;
    }
    .abt-1 {
        width:100%;
        height: auto;
    }
    .display-4{
        font-size:27px;
    }
    .service .service-item .service-content .service-content-inner {
        height: 290px;
    }
    .common__space {
        padding: 10px 0;
    }
    .mt-5 {
        margin-top: 1rem !important;
    }
    .feature .feature-item {
        height: auto;
    }
    .testimonial-item{
        height:auto;
    }
    .mb-4{
        margin-bottom:10px!important;
    }
    .testimonial-item img {
        height: auto!important; 
        width: 120px !important;
        border-radius: 50% !important;
        margin: auto;
    }
    .gallery .gallery-filter{
        width:100%;
    }
    .gallery .gallery-filter .filter-item{
        font-size:14px;
    }
    .abb_ttl{
        margin-top:10px;
    }
    .achievement-item{
        margin-bottom:10px;
    }
}


.blog_card{
  background: rgba(255,255,255,0.1);
  border-radius: 0;
  text-align: left;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: all 0.4s ease-in-out;
}
.blog_card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}
.blog_card p{
    text-align:justify;
    color:#fff;
}
.blog_area .card-body{
    background: linear-gradient(135deg, #16243d, #015fc9);
}
.blog__title{
    color:#fff;
}
.blog_area .readmore{
    color:#fff;
    transition: all 0.3s;
    padding:0;
}
.blog_area .readmore:hover{
    margin-left: 5px;
}

.blog-page {
  margin: 0;
  background: #f9fbff;
  color: #333;
}
.blog-page header {
  background: linear-gradient(135deg, #0052cc, #00aaff);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.blog-page header h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #fff;
  font-weight:bold;
}
.blog-page header p {
  font-size: 25px;
  opacity: 0.9;
  color:#fff!important;
  font-weight:bold;
}
.blog-page .container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}
.blog-page h2 {
  color: #0052cc;
  margin-top: 40px;
  font-size: 24px;
  font-weight: bold;
}
.blog-page p {
  line-height: 1.7;
  margin: 15px 0;
}
.blog-page ul {
  margin: 15px 0 20px 20px;
}
.blog-page ul li {
  margin-bottom: 8px;
}
.blog-page .highlight {
  background: #e6f3ff;
  padding: 15px;
  border-left: 4px solid #0052cc;
  border-radius: 6px;
  margin: 20px 0;
}
.blog-page .cta-box {
  background: linear-gradient(135deg, #0052cc, #00aaff);
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin: 50px 0;
}
.blog-page .cta-box h3 {
  margin-bottom: 15px;
  color: #fff;
}
.blog-page .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #fff;
  color: #0052cc;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.blog-page .btn:hover {
  background: #003f99;
  color: #fff;
}
/*.blog_area{
    padding:10px;
    box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
}*/

