/********** Template CSS **********/
:root {
    --primary: #2e3192;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#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;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    /* color: #FFFFFF; */
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        /* border-bottom: 1px solid rgba(256, 256, 256, .1); */
        z-index: 999;
        background: white;
        color: #000000 !important; 
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {
        left: 0;
    }

    50% {
        left: 145px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px;
    }

    50% {
        left: 50%;
        margin-left: 45px;
    }

    100% {
        left: 50%;
        margin-left: -75px;
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0;
    }

    50% {
        left: 85px;
    }

    100% {
        left: 0;
    }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header1 {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../NEWIMAGES/pic\ \(25\).jpeg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}


/* New Changes Made By BS */
.logoheader {
    width: 150px;
    border-radius: 50%;
}

.carousel-item img {
    height: 650px;
    object-fit: cover;
}


/*  */

.serviceBox1 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding-top: 10px;
}

.serviceBox1 .service-icon {
    color: #fff;
    background: #fff;
    font-size: 45px;
    line-height: 100px;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    box-shadow: 5px 0 5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.serviceBox1 .service-icon:before,
.serviceBox1 .service-icon:after {
    content: "";
    background: linear-gradient(to right, #2e3192 50%, transparent 50%);
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
    transition: all ease 0.8s;
}

.serviceBox1:hover .service-icon:before,
.serviceBox1:hover .service-icon:after {
    transform: rotateZ(180deg);
}

.serviceBox1:hover .service-icon {
    box-shadow: -5px 1px 5px rgba(0, 0, 0, 0.2);
}

.serviceBox1 .service-icon:after {
    background: #2e3192;
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.3);
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.serviceBox1 {
    border: 1px solid #e5e4e4;
    padding: 40px;
    border-radius: 20px;
    background: #f9f9f9;
    position: relative;
    z-index: 1;
}


.serviceBox1 .title {
    color: #470794;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.serviceBox1 .description {
    color: #777;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 0;
}

.serviceBox1.red .service-icon:before {
    background: linear-gradient(to right, #FF6F0F 50%, transparent 50%);
}

.serviceBox1.red .service-icon:after {
    background: #ffd30f;
}

.serviceBox1.red .title {
    color: #FF6F0F;
}



@media only screen and (max-width:990px) {
    .serviceBox1 {
        margin: 0 0 30px;
    }
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    /* Compensate for excess margin on outer gallery flex items */
    margin: -1rem -1rem;
}

.gallery-item {
    /* Minimum width of 24rem and grow to fit available space */
    flex: 1 0 24rem;
    /* Margin value should be half of grid-gap value as margins on flex items don't collapse */
    margin: 1rem;
    box-shadow: 0.3rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4);
    overflow: hidden;
    height: 300px;
}

.gallery-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease-out;
}

.gallery-image:hover {
    transform: scale(1.15);
}

/*

The following rule will only run if your browser supports CSS grid.

Remove or comment-out the code block below to see how the browser will fall-back to flexbox styling. 

*/

@supports (display: grid) {
    .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
        grid-gap: 2rem;
    }

    .gallery,
    .gallery-item {
        margin: 0;
    }
}


.advertisers-service-sec1 {
    background-color: #f5f5f5;
}

.advertisers-service-sec1 span {
    color: rgb(245 108 15);
}

.advertisers-service-sec1 .col-md-4 {
    padding: 0 1em 1em 1em;
    text-align: center;
}

.advertisers-service-sec1 .service-card1 {
    width: 100%;
    height: 100%;
    padding: 2em 1.5em;
    border-radius: 5px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.5s;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #fff;
}

.advertisers-service-sec1 .service-card1::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(#2f3dd0, rgb(47, 49, 134));
    position: absolute;
    left: 0%;
    top: -98%;
    z-index: -2;
    transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
}

.advertisers-service-sec1 h3 {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    color: #1f194c;
    margin: 1em 0;
    z-index: 3;
}

.advertisers-service-sec1 p {
    color: #575a7b;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    z-index: 3;
}

.advertisers-service-sec1 .icon-wrapper1 {
    background-color: #2c7bfe;
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
    z-index: 3;
}

.advertisers-service-sec1 .service-card1:hover:after {
    top: 0%;
}

.service-card1 .icon-wrapper1 {
    background-color: #000000;
    color: rgb(252, 250, 249);
}

.advertisers-service-sec1 .service-card1:hover .icon-wrapper1 {
    color: #0dcaf0;
}

.advertisers-service-sec1 .service-card1:hover h3 {
    color: #ffffff;
}

.advertisers-service-sec1 .service-card1:hover p {
    color: #f0f0f0;
}

.advertisers-service-sec1 .service-card1:hover li {
    color: #f0f0f0;
}


mvv-section {
    padding: 60px 0;
    background-color: #fff;
}

.babh {
    color: #004aad;
}

.babp {
    color: #0aa81f;
}

.mvv-section .section-title {
    text-align: center;
    /* font-size: 2.4rem; */
    font-weight: 700;
    color: #16b3b4;
    margin-bottom: 10px;
}

.mvv-section .section-subheading {
    text-align: center;
    /* font-size: 1.3rem; */
    color: #0b0b0b;
    margin-bottom: 40px;
}

.mvv-box {
    background: linear-gradient(135deg, #c1e6e9, #9eced6);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.mvv-box img {
    width: 100%;
    max-width: 250px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    padding: 10px;
}

.mvv-box h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #16b3b4;
}

.mvv-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
    hyphens: auto;
}

.whyus .why-underline {
    width: 60px;
    height: 4px;
    background-color: #00a3dd;
    border-radius: 5px;
}

.why-card {
    background-color: #f0f9ff;
    border-radius: 10px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    min-height: 300px;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.why-icon {
    background-color: #2e3192;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(45deg);
}

.why-icon i {
    color: white;
    font-size: 24px;
    transform: rotate(-45deg);
}

.info-card {
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    background-color: #f8f9fa;
    color: #333;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-top: 10px solid rgb(30, 15, 245);
    border-left: 10px solid rgb(15, 26, 245);
    width: 40px;
    height: 40px;
    border-radius: 20px 0 0 0;
    transition: all 0.4s ease;
}

.info-card:hover {
    background-color: rgb(13, 20, 96);
    color: #fff;
}

.info-card:hover h3 {
    /* background-color: rgb(42, 56, 214); */
    color: #fff;
}

.info-card:hover::before {
    border-top: 10px solid #fff;
    border-left: 10px solid #fff;
}

.info-image {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* whatsapp */
.whatsapp-float img {
    width: 50px;
    position: fixed;
    bottom: 40px;
    left: 20px;
    border-radius: 10px;
    z-index: 1;
}

/* contact */
.coni {
    /* max-width: 203px !important;
    max-height: 61px !important; */
    margin-bottom: auto !important;

}

/* partner */
.client-section .client-card {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background-color: #aec5e3;
}

.client-section .client-card .client-logo-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 200px;
}

.client-section .client-card .client-logo {
    transition: 0.5s;
    /* height: 100px !important; */
    width: 68% !important;
    /* margin-left: 70px; */
    /* margin-top: 20px; */
}
.client-logo-wrapper {
    display: flex;
    justify-content: center;
}
.client-section .client-card .client-logo-wrapper::before {
    width: 100%;
    height: 0;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
    z-index: 5;
}

.client-section .client-content {
        height: 145px;
    position: relative;
    z-index: 2;
}

.client-section .client-card:hover .client-logo-wrapper::before {
    height: 100%;
}

.client-section .client-card .client-logo-wrapper:hover img {
    transform: scale(1.3);
}

.client-section .client-content::before {
    width: 100%;
    height: 0px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgba(21, 185, 217, 0.5);
    transition: 0.5s;
    z-index: 3;
}

.client-section .client-card:hover .client-content::before {
    background: transparent;
    height: 100%;
}

.client-section .client-content .client-content-inner {
    transition: 0.5s;
}

.client-section .client-card:hover .client-content .client-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}

.client-section .client-card:hover .client-content .client-content-inner h5 {
    color: var(--bs-secondary);
}

.bgc{
    background-color: #004aad;
}
.bgc1{
    background-color: #0d166b;
}
.txc{
    color: #2e3192 !important;
}
.txc1{
    color: #0c0f52 !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgb(0 0 0);
}

/* coreteam */

.fe-team-section {
  background-color: #f4f6fc;
}

.fe-team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fe-team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fe-team-img-wrap {
  flex-shrink: 0;
}

.fe-team-img {
  max-width: 367px;
 width: 367px;
  object-fit: cover;
  /* border-radius: 50%; */
}

.fe-social-icons a {
  font-size: 16px;
  background-color: #eff2f8;
  padding: 11px;
  border-radius: 22%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.fe-social-icons a:hover {
  background-color: #47b2e4;
  color: #fff !important;
}

@media (max-width: 767.98px) {
  .fe-team-card {
    flex-direction: column;
    text-align: center;
  }

  .fe-team-img-wrap {
    margin: 0 0 1rem 0 !important;
  }
  .fe-team-img {
    width: 100%;
  }
}

.fetxt{
    text-align: justify;
}